diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..9b326dc --- /dev/null +++ b/css/styles.css @@ -0,0 +1,292 @@ +html { + font-family: "Rubik", sans-serif; +} + +body { + margin: 0; + padding: 0; +} + +.map-section { + display: flex; + height: 100vh; /* Full viewport height */ + width: 100vw; + color: #ffffff; + overflow: hidden; /* Prevent overflow */ +} + +.whole-map-part { + flex: 1; + display: flex; + flex-direction: column; + height: 100%; + overflow: hidden; /* Ensure content doesn't overflow */ +} + +#resource-map { + flex: 1; + background-color: lightgrey; + min-height: 0; +} + +.resource-filter { + width: 25%; /* Fixed width for filter section */ + background-color: #002d9f; /* Background color */ + padding: 1rem; /* Padding */ + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Optional shadow */ + font-size: 15px; + display: flex; + flex-direction: column; /* Stack items vertically */ + height: 100%; +} + +.resource-filter h2 { + text-align: center; /* Center the title */ + margin-bottom: 1rem; /* Add some space below the title */ + font-size: 2em; /* Increase font size */ + color: #ffffff; /* Set a color */; +} + +.resource-filter { + width: 25%; /* Fixed width for filter section */ + background-color: #002d9f; /* Background for visibility */ + padding: 1rem; /* Padding for better appearance */ + box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Optional shadow */; + font-size: 15px; +} + +.resource-filter ul { + list-style-type: none; + padding: 0; + margin: 0; +} + +.resource-filter li { + margin-bottom: 10px; +} + +.resource-filter label { + display: flex; + align-items: center; +} + +.resource-filter input[type="checkbox"] { + margin-right: 10px; +} + +.map-search-controls { + display: flex; + flex-direction: column; /* Stack input and choices vertically */ + padding: 0.5rem; + background-color: #f0f0f0; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + width: 100%; /* Ensure it takes full width */ +} + +.map-search-controls input[type="text"] { + width: 35%; /* Consistent width for input */ + padding: 0.5rem; + font-size: 1rem; /* Adjust font size as needed */ + border: 1px solid #ccc; + border-radius: 4px; + margin-bottom: .5rem; + box-sizing: border-box; +} + +#address-search { + flex-grow: 1; +} + +#address-choices { + width: 35%; /* Consistent width for address choices */ + list-style-type: none; + padding: 0; + margin: 0; + background-color: white; + border: 1px solid #ccc; +} + +#address-choices li { + padding: 10px; + cursor: pointer; + color: #333; /* Darker text color for better contrast */ + word-wrap: break-word; /* Ensure long text wraps */ +} + +#address-choices li:hover { + background-color: #e0e0e0; /* Slightly darker hover background for visibility */ +} + +.hidden { + display: none; +} + +/* Custom styles for Leaflet popups */ +.leaflet-popup-content-wrapper { + background-color: #f5f5dc; /* Change background color */ + color: #333; /* Change text color */ + border-radius: 8px; /* Rounded corners */ + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Add shadow */ +} + +.leaflet-popup-tip { + background-color: #f5f5dc; /* Match tip color with popup */ +} + +/* Style for the zoomed-in popup */ +.zoomed-popup .leaflet-popup-content-wrapper { + background-color: #555555; /* Change background color */ + color: white; /* Change text color */ + border-radius: 16px; /* Rounder corners */ + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Add shadow */ + + /* Reduce padding to make the box smaller */ + padding: 10px 15px; /* Adjust padding: top-bottom, left-right */ + + /* Optional: Adjust the line height to fit the text more snugly */ + line-height: 1.2; /* Reduce line height */ + + border: none; /* Remove border */ +} + +/* Style the popup pointer for the zoomed-in popup */ +.zoomed-popup .leaflet-popup-tip { + background-color: #555555; +} + +/* Ensure that the text inside the popup is sized appropriately */ +.zoomed-popup .leaflet-popup-content { + font-size: 14px; /* Adjust text size */ + margin: 0; /* Remove default margin */ +} + +.custom-checkbox { + appearance: none; + -webkit-appearance: none; + width: 20px; + height: 20px; + border: 2px solid #333; + border-radius: 4px; + outline: none; + cursor: pointer; + position: relative; + margin-right: 10px; +} + +.custom-checkbox:checked::before { + content: '\2714'; + font-size: 16px; + color: white; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +/* Food checkbox */ +.food-checkbox:checked { + background-color: #ffaf01; + border-color: #ffaf01; +} + +/* Clothing checkbox */ +.clothing-checkbox:checked { + background-color: #047a01; + border-color: #047a01; +} + +/* Showers checkbox */ +.showers-checkbox:checked { + background-color: #ff4d4d; + border-color: #ff4d4d; +} + +/* Toilets checkbox */ +.toilets-checkbox:checked { + background-color: #4d73ff; + border-color: #4d73ff; +} + +/* Intake Centers checkbox */ +.intakeCenters-checkbox:checked { + background-color: #d46aff; + border-color: #d46aff; +} + +.nearby-resources { + flex-grow: 1; /* Take up remaining space */ + overflow-y: auto; /* Enable scrolling when content overflows */ + margin-top: 15px; + padding: 0.5rem; + background-color: #f9f9f9; + border-top: 1px solid #ccc; + border-radius: 10px; + margin-bottom: 40px; /* Add margin at the bottom */ +} + + + +.nearby-resources h3 { + text-align: left; + margin-top: 0.25rem; + margin-bottom: 0.25rem; + margin-left: 0.2rem; + font-size: 1em; + color: black; +} + +.nearby-resources h4 { + text-align: left; + margin-top: 0; /* Remove space above h4 */ + margin-left: 0.2rem; + font-size: 0.8em; /* Smaller font size for h4 */ + font-style: italic; /* Italicize the text */ + color: darkgrey; /* Set text to dark grey */ + margin-bottom: 0.25rem; /* Reduce the space below h4 */ +} + +#nearby-resources-list { + list-style-type: none; + padding: 0; + padding-bottom: 5px; /* Ensure some space at the bottom of the list */ +} + +#nearby-resources-list li { + margin-bottom: 10px; + padding: 5px; + border-bottom: 1px solid #ddd; + color: black +} + +#nearby-resources-list li { + padding: 10px; + cursor: pointer; + color: #333; + transition: background-color 0.3s, transform 0.3s; /* Smooth transition */ +} + +#nearby-resources-list li:hover { + background-color: #e0e0e0; /* Change background on hover */ + transform: scale(1.02); /* Slightly increase size for emphasis */ +} + +.highlighted-icon { + border: 2px solid yellow; + border-radius: 50%; + width: 40px; + height: 40px; +} + +.hidden { + display: none; +} + +@media (max-width: 768px) { + .map-search-controls { + max-width: 100%; + padding: 0.25rem; + flex-direction: column; /* Ensure it stacks correctly on smaller screens */ + } + + +} \ No newline at end of file diff --git a/data/FreeClothingAll.geojson b/data/FreeClothingAll.geojson new file mode 100644 index 0000000..4bc24cd --- /dev/null +++ b/data/FreeClothingAll.geojson @@ -0,0 +1,245 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1660838,39.9494509 ] + }, + "properties": { + "site_name":"MenzFit", + "Subheader":"Philadelphia - Interview Preparation and Clothing", + "Description":"Offers 45-minute sessions on successful interviewing techniques. Provides each client with one suit when he has an interview scheduled and a second suit when he gets the job. Clients also receive free tailoring and haircut services when necessary.", + "Eligibility":" A) Adult men age 18 and older, B) Residents of Philadelphia County, C) Low-income and/or from a disadvantaged background", + "phone_number":"215-845-5904", + "Address":"1500 Walnut Street, Suite 1306, Phildalephia, PA 19102" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.16469833,39.94643683333334 ] + }, + "properties": { + "site_name":"Broad Street Ministry", + "Subheader":"Philadelphia - Clothing Boutique", + "Description":"Offers clothing, including jackets and shoes. Personal care items are available Tuesdays and Thursdays during Clothing Closet hours.", + "Eligibility":"No restrictions.", + "phone_number":"215-735-4847", + "Address":"315 South Broad Street, Philadelphia, PA 19107" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.146429,39.95363566666667 ] + }, + "properties": { + "site_name":"Old First Reformed United Church of Christ", + "Subheader":"Philadelphia - Saturday Morning Breakfast and Clothing Cupboard", + "Description":"Serves a to-go breakfast for up to 50 people. To-go breakfast includes a hot breakfast item, coffee, drink, and various snack items. Also hands out seasonal clothing, and toiletries such as shampoo, lotion, deodorant, and more.", + "Eligibility":"No limitations or restrictions", + "phone_number":"215-922-4566", + "Address":"151 North Fourth Street, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1594531,39.96787297799691 ] + }, + "properties": { + "site_name":"Salvation Army - Greater Philadelphia Area", + "Subheader":"Temple Corps - Clothing Assistance", + "Description":"Provide new or secondhand clothing for people who cannot afford to purchase these items at retail prices.", + "Eligibility":"Low income individuals in West Philadelphia", + "phone_number":"215-787-2962", + "Address":"1340 Brown Street, Philadelphia, PA 19123" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.14553918,39.95785287755102 ] + }, + "properties": { + "site_name":"The Wardrobe", + "Subheader":"Philadelphia County - Dressing Program", + "Description":"Provides clothing at no cost to those in need.", + "Eligibility":"No limitations or restrictions.", + "phone_number":"215-568-6693", + "Address":"413 North 4th Street, Philadelphia, PA 19123" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.17412513,39.925028447368426 ] + }, + "properties": { + "site_name":"Church of Philadelphia", + "Subheader":"Philadelphia - Community Resource Center", + "Description":"Distributes food and clothes to those in need.", + "Eligibility":"Individuals experiencing homelessness, Residents of Philadelphia County", + "phone_number":"215-467-8500", + "Address":"1629 Snyder Avenue, Philadelphia, PA 19145" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.19735312,39.936800530612246 ] + }, + "properties": { + "site_name":"Salvation Army - Greater Philadelphia Area", + "Subheader":"Central Corps - Clothing Assistance", + "Description":"Provide new or secondhand clothing for people who cannot afford to purchase these items at retail prices.", + "Eligibility":"Low income individuals in West Philadelphia", + "phone_number":"215-465-0300", + "Address":"3225 Reed Street, Philadelphia, PA 19146" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.148843,39.980754 ] + }, + "properties": { + "site_name":"Asociacion Puertorriquenos en Marcha", + "Subheader":"CUA Prevention", + "Description":"Early Intervention program is designed to help children between the ages of 3 and 5 overcome areas of delayed development. The program advocates on behalf of these youngsters, ensuring they receive appropriate special educational services. Children can receive speech therapy, occupational and physical therapy and other special instruction.", + "Eligibility":" Serves residents in the zip codes provided below.", + "phone_number":"267-296-7200", + "Address":"1900 North Ninth Street, Philadelphia, PA 19122" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.16315279,39.9854865 ] + }, + "properties": { + "site_name":"Church of the Advocate", + "Subheader":"Philadelphia - Grab'n Go Food & Clothing", + "Description":"Provides packed lunches and clothing once a month.", + "Eligibility":"No limitations or restrictions", + "phone_number":"215-978-8000", + "Address":"1801 West Diamond Street, Philadelphia, PA 19121" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.130863,39.986789 ] + }, + "properties": { + "site_name":"Saint Francis Inn Ministries", + "Subheader":"Marie's Closet - Clothing Provision", + "Description":"Provides clothing and shoes for men, women, and children. Also accepts donations of clean men’s, women’s and children’s clothing and shoes, and linens.", + "Eligibility":"Guests of Saint Francis Inn", + "phone_number":"215-634-1510", + "Address":"2439 Kensington Avenue, Philadelphia, PA 19125" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.12383688,39.990645791666665 ] + }, + "properties": { + "site_name":"Blessed Sarnelli Community", + "Subheader":"Soup Kitchen and Clothing Room - The Clothing Room", + "Description":"Provides clothing to those in need. Offers volunteer opportunities. Accepts monetary donations and donations of toiletries and clothing for men and women.", + "Eligibility":"No limitations or restrictions", + "phone_number":"571-314-3428", + "Address":"2739 Kensington Avenue, Philadelphia, PA 19134" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1314205,39.997529 ] + }, + "properties": { + "site_name":"Salvation Army - Greater Philadelphia Area", + "Subheader":"Tabernacle Corps - Clothing Assistance", + "Description":"Provide new or secondhand clothing for people who cannot afford to purchase these items at retail prices.", + "Eligibility":"Low income individuals in West Philadelphia", + "phone_number":"215-423-9300", + "Address":"3150 North Mascher Street, Philadelphia, PA 19133" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1520312,40.0079514 ] + }, + "properties": { + "site_name":"Zion Baptist Church", + "Subheader":"Philadelphia - Resource Center", + "Description":"Provides food baskets and clothing distribution to those in need.", + "Eligibility":"Applicants must be low-income.", + "phone_number":"215-223-5460", + "Address":"3600 North Broad Street, Philadelphia, PA 19140" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.19274932,40.008154416003144 ] + }, + "properties": { + "site_name":"Center for Leadership, Development and Advocacy (CLDA)", + "Subheader":"Philadelphia - Basic Needs Bank", + "Description":"Provides basic needs resources for children, families, and older adults, including clothing, diapers for children and adults, menstruation/period supplies, personal hygiene items, and bookbags and toys for children.", + "Eligibility":"Persons and families in need of basic needs assistance in Philadelphia County", + "phone_number":"215-999-8373", + "Address":"4130 Ridge Avenue,Philadelphia, PA 19129" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.173836,40.036824 ] + }, + "properties": { + "site_name":"Whosoever Gospel Mission and Rescue Home Association of Germantown", + "Subheader":"Philadelphia - Germantown Thrift Shop", + "Description":"Offers a variety of clothing, furniture and household items at very reasonable prices to families struggling to make ends meet.", + "Eligibility":"No limitations or restrictions", + "phone_number":"215-438-3094", + "Address":"101 East Chelten Avenue, Philadelphia, PA 19144" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.17558992,40.03978623076923 ] + }, + "properties": { + "site_name":"United Methodist Neighborhood Services", + "Subheader":"Janes Memorial United Methodist Church - Clothing Pantry", + "Description":"Provides clothing to those in need.", + "Eligibility":"No limitations or restrictions", + "phone_number":"215-236-0304", + "Address":"47 East Haines Street, 3rd Floor, Philadelphia, PA 19144" + } + } +] +} \ No newline at end of file diff --git a/data/FreeFood.geojson b/data/FreeFood.geojson new file mode 100644 index 0000000..90ab0da --- /dev/null +++ b/data/FreeFood.geojson @@ -0,0 +1,17049 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "objectid": 1, + "site_name": "Nativity Satellite Program", + "address": "3255 Belgrade St", + "phone_number": "215-423-2772", + "category": "PCA", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "1.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1027830258919, + "y": 39.9869100071108, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 104, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1027830258919, + 39.986910007110794 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2, + "site_name": "King Older Adult Center", + "address": "2100 W. Cecil B. Moore Ave.", + "phone_number": "215-685-2715", + "category": "PPR_Senior", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "2.0", + "status": "Active", + "website": "https://www.phila.gov/programs/programs-for-older-adults/", + "x": -75.1696037016514, + "y": 39.9799845526985, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 118, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1696037016514, + 39.979984552698504 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 230, + "site_name": "Bethel Worship Center", + "address": "169 W. Wyoming Ave.", + "phone_number": "267-979-3718", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "227.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1270198272313, + "y": 40.0220402850977, + "hours_mon_start1": "09:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 219, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12701982723128, + 40.0220402850977 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 234, + "site_name": "New Life Community Center", + "address": "4726 N Broad St", + "phone_number": "267-766-2945", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "211.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1479072566934, + "y": 40.0254420630128, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 223, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14790725669339, + 40.02544206301279 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 237, + "site_name": "Family Support Circle", + "address": "2059 E Chelten Ave", + "phone_number": "267-335-5857", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "205.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1540589775297, + "y": 40.0518853585732, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on second and fourth Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 226, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1540589775297, + 40.0518853585732 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 238, + "site_name": "Second Antioch Baptist Church", + "address": "912 N 41st St", + "phone_number": "215-387-6774", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "203.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2060791354852, + "y": 39.9708019190448, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "11:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 227, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2060791354852, + 39.9708019190448 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 239, + "site_name": "Resurrection Community Church", + "address": "6200 Dicks Ave", + "phone_number": "215-724-0822", + "category": "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "212.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2239188884506, + "y": 39.9222424422221, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 228, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22391888845058, + 39.92224244222211 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 243, + "site_name": "St. Benedict Food Bank", + "address": "1940 E Chelten Ave", + "phone_number": "215-548-2700", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "213.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1516570287425, + "y": 40.0515648970568, + "hours_mon_start1": "10:00", + "hours_mon_end1": "11:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "11:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 230, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1516570287425, + 40.0515648970568 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 261, + "site_name": "George Washington High School Pantry", + "address": "10175 Bustleton Ave", + "phone_number": "267-432-3625", + "category": "PHILABUNDANCE", + "zip_code": "19116", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "243.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.0260176838819, + "y": 40.1059155185218, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 247, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.02601768388189, + 40.1059155185218 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 281, + "site_name": "The Reid Foundation, Inc. at Always Independent", + "address": "9150 Marshall Street", + "phone_number": "484-684-9867", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19114", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0313359784294, + "y": 40.0724097928534, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:00", + "hours_wed_end1": "11:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 266, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.03133597842938, + 40.0724097928534 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 285, + "site_name": "Church of Pentecost", + "address": "2530 Wharton St", + "phone_number": "215-372-7307", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19146", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1869238756805, + "y": 39.9364947795582, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 269, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1869238756805, + 39.9364947795582 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 286, + "site_name": "Friends Rehabilitation Program", + "address": "704 W Girard Ave", + "phone_number": "215-825-8800", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1484801182196, + "y": 39.9702161810685, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 270, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1484801182196, + 39.970216181068494 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 288, + "site_name": "North Philadelphia SDA Church", + "address": "1510 W Oxford St", + "phone_number": "215-235-1001", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1611370434714, + "y": 39.9775135940884, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "08:00", + "hours_tues_end1": "11:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 272, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16113704347138, + 39.9775135940884 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 291, + "site_name": "Revelation Philadelphia Ministry Inc", + "address": "7047 Buist Ave", + "phone_number": "267-901-5293", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2374023040843, + "y": 39.915258763847, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 275, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2374023040843, + 39.915258763847 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 297, + "site_name": "Brand New Life Christian Center", + "address": "6301 Germantown Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.180665704404, + "y": 40.0437385805313, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 279, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.180665704404, + 40.043738580531304 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 298, + "site_name": "Brewerytown Sharswood Coalition", + "address": "3000 W Master St", + "phone_number": "267-858-4246", + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1853768369027, + "y": 39.9773674271891, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": "Open every other Friday of the month", + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 280, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18537683690269, + 39.977367427189094 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 299, + "site_name": "Eastwick United Methodist Church", + "address": "8325 Lindbergh Blvd", + "phone_number": "215-365-6352", + "category": "PHILABUNDANCE", + "zip_code": "19153", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2522683004483, + "y": 39.8985064296034, + "hours_mon_start1": "09:00", + "hours_mon_end1": "13:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 281, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.25226830044829, + 39.898506429603394 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 300, + "site_name": "Ezekiel Baptist Church", + "address": "5701 Grays Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2216311665265, + "y": 39.9309614246931, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "08:30", + "hours_thurs_end1": "11:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 282, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22163116652649, + 39.9309614246931 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 301, + "site_name": "Good Samaritan Baptist Church", + "address": "6148-6150 Lansdowne Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2434036629389, + "y": 39.9753951033089, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:30", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 283, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2434036629389, + 39.975395103308905 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 302, + "site_name": "Kitchen of Love", + "address": "8500 Pickering Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19150", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1746241124142, + "y": 40.0813415704501, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:30", + "hours_wed_end1": "10:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "08:30", + "hours_thurs_end1": "10:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "08:30", + "hours_fri_end1": "10:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 284, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17462411241418, + 40.0813415704501 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 304, + "site_name": "New Testament Church of God", + "address": "935 S 53rd St", + "phone_number": "(215) 472-6630", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2270401762836, + "y": 39.9456064978479, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "12:00", + "hours_sat_end1": "14:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on first and third Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 285, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2270401762836, + 39.94560649784789 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 306, + "site_name": "The Simple Way", + "address": "3234 Potter St", + "phone_number": "215.423.3598", + "category": "PHILABUNDANCE", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1121830408897, + "y": 39.997865098786, + "hours_mon_start1": "09:30", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:30", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:30", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 287, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1121830408897, + 39.997865098786 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 315, + "site_name": "Gather the People House of Prayer", + "address": "1429 W Clearfield St", + "phone_number": "267-300-2397", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.15419265961, + "y": 40.0002645330222, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 294, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15419265961, + 40.0002645330222 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 317, + "site_name": "Interfaith Food Cupboard", + "address": "3600 Baring St", + "phone_number": null, + "category": "SHARE FOOD PROGRAM", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1941797561967, + "y": 39.9608808580969, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:30", + "hours_sat_end1": "11:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 296, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1941797561967, + 39.96088085809689 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 320, + "site_name": "Kingdom Life Christian Center", + "address": "6325 Frankford Ave.", + "phone_number": "267-351-7942", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19135", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0587642930532, + "y": 40.0279670767714, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": "Open on second and fourth Wednesdays of the month", + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 297, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0587642930532, + 40.0279670767714 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 321, + "site_name": "MAP Holistic CDC (Mankind Against Poverty)", + "address": "1510 W Stiles St", + "phone_number": "215-235-2500", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1614993322461, + "y": 39.9725544043368, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 298, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1614993322461, + 39.97255440433681 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 323, + "site_name": "St Paul A.M.E. Church", + "address": "8398 Lindbergh Blvd", + "phone_number": "267-593-9631", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19153", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2516236941386, + "y": 39.8976676859333, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:30", + "hours_thurs_end1": "11:45", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 300, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2516236941386, + 39.89766768593329 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1671, + "site_name": "Grace Tabernacle Christian Church", + "address": "1519 S 52nd St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2166426671927, + "y": 39.9388686331097, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 324, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21664266719269, + 39.93886863310969 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1681, + "site_name": "Norris Homes/North Central Community Center", + "address": "2000 N 11th St", + "phone_number": "267-456-4236", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19122", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1517041284639, + "y": 39.9829399753166, + "hours_mon_start1": "13:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": "Open on second and fourth Mondays of the month", + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 332, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1517041284639, + 39.9829399753166 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1729, + "site_name": "Centre d'Adoration Chretienne", + "address": "4520 Benner St", + "phone_number": "215-543-2589", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19135", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0590504573232, + "y": 40.0198757913626, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "19:30", + "hours_tues_end1": "20:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 376, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0590504573232, + 40.01987579136261 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1730, + "site_name": "Consortium Community Mental Health Center", + "address": "137 S. 58th St.", + "phone_number": "267-259-0648", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19153", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2371548094028, + "y": 39.9585887010502, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on second and fourth Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 377, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23715480940278, + 39.9585887010502 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1731, + "site_name": "Courtyard Apartments at Riverview", + "address": "1021 South 4th St", + "phone_number": "215-551-7091", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1501806632426, + "y": 39.9348904039844, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "15:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": "Open on first and third Wednesdays of the month", + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 378, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1501806632426, + 39.9348904039844 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1733, + "site_name": "Haddington Overbrook Resident Council", + "address": "648 N 57th St", + "phone_number": "267-319-2223", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2343484644007, + "y": 39.9698990457032, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 380, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2343484644007, + 39.969899045703194 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1734, + "site_name": "Katie's Cupboard at Tabor", + "address": "4860 N Howard St", + "phone_number": "215-455-1706", + "category": "SHARE FOOD PROGRAM", + "zip_code": "", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1250504961452, + "y": 40.0245861926688, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 381, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1250504961452, + 40.0245861926688 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1736, + "site_name": "Mantua Haverford Community Center/Mt. Vernon Manor CDC", + "address": "1103 N. 40th St.", + "phone_number": "215-475-9492", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1996174083507, + "y": 39.9640703294391, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "11:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 383, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1996174083507, + 39.9640703294391 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1737, + "site_name": "Men Who Care of Germantown Inc", + "address": "180 E Tulpehocken St", + "phone_number": "267-335-4786", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1766029550634, + "y": 40.0450599190972, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 384, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17660295506339, + 40.0450599190972 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1739, + "site_name": "Mount Hebron Baptist Church", + "address": "1419 Wharton St", + "phone_number": "267-441-6680", + "category": "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code": "19146", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1686044442241, + "y": 39.9344127119299, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:30", + "hours_thurs_end1": "12:45", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on first and third Thursdays of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 385, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1686044442241, + 39.93441271192991 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1740, + "site_name": "New Bethany Baptist Church", + "address": "1415 S 23rd St", + "phone_number": "215-336-4166", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19146", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1825016993948, + "y": 39.934304096031, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "12:00", + "hours_sat_end1": "14:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on second and fourth Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 386, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18250169939479, + 39.934304096031 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1742, + "site_name": "Reconciliation And Liberty Bible Church", + "address": "6027 Chestnut St", + "phone_number": "267-237-1763", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2419880662309, + "y": 39.9607550185371, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 387, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24198806623089, + 39.9607550185371 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1743, + "site_name": "The Charles Foundation", + "address": "605 N 52nd St", + "phone_number": "215-868-9543", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2251208271949, + "y": 39.9697008108173, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": "Open on first and third Mondays of the month", + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 388, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22512082719489, + 39.969700810817294 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1745, + "site_name": "Women Walking in Victory", + "address": "2441 N 29th St", + "phone_number": "215-908-5286", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1791946194969, + "y": 39.9933821651265, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 390, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1791946194969, + 39.9933821651265 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1751, + "site_name": "Jerusalem French Church", + "address": "537 E. Wyoming Ave.", + "phone_number": "267-439-1246", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "194.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1148399594775, + "y": 40.0205592394572, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 396, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1148399594775, + 40.02055923945721 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1753, + "site_name": "Philly House", + "address": "302 N 13th St.", + "phone_number": "215-922-6400", + "category": "Office of Homeless Services", + "zip_code": "19107", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1602727245355, + "y": 39.9581014715558, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": "17:00", + "hours_mon_end2": "18:00", + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": "17:00", + "hours_tues_end2": "18:00", + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": "17:00", + "hours_wed_end2": "18:00", + "hours_wed_exceptions": null, + "hours_thurs_start1": "12:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": "17:00", + "hours_thurs_end2": "18:00", + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": "17:00", + "hours_fri_end2": "18:00", + "hours_fri_exceptions": null, + "hours_sat_start1": "12:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": "17:00", + "hours_sat_end2": "18:00", + "hours_sat_exceptions": null, + "hours_sun_start1": "12:00", + "hours_sun_end1": "13:00", + "hours_sun_start2": "17:00", + "hours_sun_end2": "18:00", + "hours_sun_exceptions": null, + "ObjectId2": 398, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1602727245355, + 39.95810147155579 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1754, + "site_name": "The Perimeter", + "address": "213-217 N 4th St", + "phone_number": "215-923-2600", + "category": "Office of Homeless Services", + "zip_code": "19106", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1461239043371, + "y": 39.9546974592809, + "hours_mon_start1": "09:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 399, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1461239043371, + 39.954697459280894 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1755, + "site_name": "St. Francis Inn", + "address": "2441 Kensington Ave", + "phone_number": "215-423-5845", + "category": "Office of Homeless Services", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1305798325364, + "y": 39.9868761814555, + "hours_mon_start1": "16:30", + "hours_mon_end1": "18:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "11:00", + "hours_tues_start2": "16:30", + "hours_tues_end2": "18:00", + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "11:00", + "hours_wed_start2": "16:30", + "hours_wed_end2": "18:00", + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "11:00", + "hours_thurs_start2": "16:30", + "hours_thurs_end2": "18:00", + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:30", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:30", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "11:30", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 400, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1305798325364, + 39.9868761814555 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1756, + "site_name": "Living Word Community", + "address": "142 N. 17th St", + "phone_number": "215-563-1322", + "category": "Office of Homeless Services", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.167905369386, + "y": 39.9564938830237, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "11:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 401, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.167905369386, + 39.95649388302369 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1757, + "site_name": "Church of the Holy Trinity, Open Hearts Cafe", + "address": "1904 Walnut St", + "phone_number": "215-567-1267", + "category": "Office of Homeless Services", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1732410374904, + "y": 39.9503297053409, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "16:30", + "hours_tues_end1": "18:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "16:30", + "hours_sun_end1": "18:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 402, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17324103749038, + 39.95032970534089 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 3, + "site_name": "Lutheran Settlement House", + "address": "1340 Frankford Ave.", + "phone_number": "215-426-8610", + "category": "PCA", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "3.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1346696845059, + "y": 39.9714143441932, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 403, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1346696845059, + 39.9714143441932 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 4, + "site_name": "Mann Older Adult Center", + "address": "3201 N. 5th St.", + "phone_number": "215-685-9844", + "category": "PCA", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "4.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1381035710362, + "y": 40.0003955003318, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 404, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1381035710362, + 40.00039550033181 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 5, + "site_name": "Northern Living Center", + "address": "827 N Franklin St.", + "phone_number": "215-978-1300", + "category": "PCA", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "5.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.149842743491, + "y": 39.9663456940248, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 405, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.149842743491, + 39.9663456940248 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 6, + "site_name": "On Lok House Satellite", + "address": "219 N. 10th St.", + "phone_number": "215-599-3016", + "category": "PCA", + "zip_code": "19107", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "6.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1556468492715, + "y": 39.9558477411142, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 406, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1556468492715, + 39.955847741114184 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 7, + "site_name": "Philadelphia Senior Center - Allegheny Branch", + "address": "1900 W. Allegheny Ave.", + "phone_number": "267-286-1455", + "category": "PCA", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "7.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1607511503777, + "y": 40.0021516214852, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 407, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1607511503777, + 40.00215162148519 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 8, + "site_name": "Center in the Park", + "address": "5818 Germantown Ave.", + "phone_number": "215-848-7722", + "category": "PCA", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "8.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1763186048069, + "y": 40.0371367180718, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 408, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1763186048069, + 40.0371367180718 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 9, + "site_name": "Philadelphia Housing Authority Emlen Arms", + "address": "6733 Emlen St.", + "phone_number": "215-684-5893", + "category": "PCA", + "zip_code": "19119", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "9.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1897048024025, + "y": 40.0495524495191, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 409, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18970480240249, + 40.04955244951909 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 10, + "site_name": "Northeast Older Adult Center", + "address": "8101 Bustleton Ave.", + "phone_number": "215-685-0576", + "category": "PPR_Senior", + "zip_code": "19152", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "10.0", + "status": "Active", + "website": "https://www.phila.gov/programs/programs-for-older-adults/", + "x": -75.0512927167003, + "y": 40.0626388703767, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 410, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0512927167003, + 40.0626388703767 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 11, + "site_name": "Peter Brassi NE Senior Center", + "address": "4744-46 Frankford Ave.", + "phone_number": "215-831-2926", + "category": "PCA", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "11.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.0832659675177, + "y": 40.0179806232626, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 411, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0832659675177, + 40.01798062326261 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 12, + "site_name": "Firehouse Active Adult Center", + "address": "5331 Haverford Ave.", + "phone_number": "215-472-6188", + "category": "PCA", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "12.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.2275302718687, + "y": 39.9663034111803, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 412, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2275302718687, + 39.9663034111803 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 13, + "site_name": "West Philadelphia Senior Community Center", + "address": "1016-26 N. 41st St.", + "phone_number": "215-386-0379", + "category": "PCA", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "13.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.2065871245062, + "y": 39.9722447013998, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 413, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2065871245062, + 39.9722447013998 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 14, + "site_name": "St. Edmonds Senior Community Center Catholic Housing and Community Services", + "address": "2130 S 21st St.", + "phone_number": "215-790-9530", + "category": "PCA", + "zip_code": "19145", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "14.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1814047320966, + "y": 39.924705033699, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 414, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1814047320966, + 39.92470503369901 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 15, + "site_name": "Marconi Older Adult Program", + "address": "2433 S. 15th St.", + "phone_number": "215-218-0800", + "category": "PCA", + "zip_code": "19145", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "15.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1722218478351, + "y": 39.9198234694442, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 415, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1722218478351, + 39.91982346944419 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 16, + "site_name": "Philadelphia Housing Authority Cassie L. Holly Apts. Satelite", + "address": "2100 Dickinson St.", + "phone_number": "215-684-3959", + "category": "PCA", + "zip_code": "19146", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "16.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1802037142061, + "y": 39.9329219406382, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 416, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1802037142061, + 39.93292194063819 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 17, + "site_name": "Philadelphia Housing Authority Wilson Park", + "address": "2500 Jackson St.", + "phone_number": "215-684-3959", + "category": "PCA", + "zip_code": "19145", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "17.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1895745925004, + "y": 39.9256829325143, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 417, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1895745925004, + 39.925682932514306 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 18, + "site_name": "Philadelphia Senior Center - Avenue of the Arts and Asia-Pacific Senior Resource Center", + "address": "509 S. Broad St.", + "phone_number": "215-546-5879", + "category": "PCA", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "18.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1650768349148, + "y": 39.9442374074862, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 418, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16507683491479, + 39.94423740748621 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 19, + "site_name": "Catholic Housing and Community Services Star Harbor Senior Center Satellite", + "address": "4700 Springfield Ave.", + "phone_number": "215-726-7468", + "category": "PCA", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "19.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.215080705399, + "y": 39.9467301704226, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 419, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21508070539899, + 39.9467301704226 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 20, + "site_name": "Southwest Senior Center", + "address": "6916 Elmwood Ave.", + "phone_number": "215-937-1880", + "category": "PCA", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "20.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.2363973399173, + "y": 39.917636507278, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 420, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2363973399173, + 39.91763650727799 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 21, + "site_name": "CHCS Norris Square Center", + "address": "2121 N. Howard St", + "phone_number": "215-423-7241", + "category": "PCA", + "zip_code": "19122", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "21.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.1334303130443, + "y": 39.9825794487322, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 421, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1334303130443, + 39.9825794487322 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 22, + "site_name": "The Center at Journey\u2019s Way", + "address": "403 Rector St.", + "phone_number": "215-487-1750", + "category": "PCA", + "zip_code": "19128", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "22.0", + "status": "Active", + "website": "https://www.pcacares.org/", + "x": -75.2140271953698, + "y": 40.0276301147186, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 422, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21402719536978, + 40.0276301147186 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 29, + "site_name": "Mizpah SDA", + "address": "4355 Paul St", + "phone_number": "215-535-5995", + "category": "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "29.0", + "status": "Active", + "website": null, + "x": -75.0862700128796, + "y": 40.0115614247471, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:30", + "hours_tues_end1": "12:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 429, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0862700128796, + 40.01156142474711 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 31, + "site_name": "Parkside Association of Philadelphia", + "address": "1719 N 52nd St, Suite G", + "phone_number": null, + "category": "SHARE FOOD PROGRAM", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "31.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2240700000219, + "y": 39.9815280001684, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "08:00", + "hours_thurs_end1": "11:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 431, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22407000002188, + 39.9815280001684 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 32, + "site_name": "Upper Room Missionary Baptist Church", + "address": "7236 Ogontz Ave", + "phone_number": "(215)549-7311/ 267-593-4989 (Deacon Michael Bennett)", + "category": "PHILABUNDANCE", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "32.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1550984996558, + "y": 40.064742000079, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "11:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:30", + "hours_wed_end1": "10:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:30", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "11:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 432, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1550984996558, + 40.064742000078994 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 39, + "site_name": "SEAMAAC", + "address": "1711 S Broad St", + "phone_number": "215-467-0690", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "39.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1683329996477, + "y": 39.9287159997525, + "hours_mon_start1": "10:00", + "hours_mon_end1": "14:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 438, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1683329996477, + 39.92871599975249 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 40, + "site_name": "Keep It Real CDC", + "address": "5900 Lansdowne Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "40.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2386679997829, + "y": 39.9759120002766, + "hours_mon_start1": "07:30", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:30", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:30", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:30", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 439, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2386679997829, + 39.9759120002766 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 52, + "site_name": "Salvation Army Temple", + "address": "1340 Brown St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "52.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1594046143944, + "y": 39.9678598706593, + "hours_mon_start1": "08:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "08:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "08:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "08:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 451, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1594046143944, + 39.9678598706593 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 55, + "site_name": "Roxborough Presbyterian Church", + "address": "8232 Ridge Ave", + "phone_number": "(215) 483-2762", + "category": "PHILABUNDANCE", + "zip_code": "19128", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "55.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.237795308044, + "y": 40.0591609999051, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 454, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.237795308044, + 40.0591609999051 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 59, + "site_name": "Young Chances Foundation", + "address": "2703 Tasker St", + "phone_number": "267-585-2923", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19145", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "59.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1898384995645, + "y": 39.9333960000519, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "14:00", + "hours_thurs_end1": "18:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on the second and fourth Thursday of the month", + "hours_fri_start1": "14:00", + "hours_fri_end1": "18:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": "Open on the second and fourth Friday of the month", + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 458, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1898384995645, + 39.93339600005191 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 60, + "site_name": "Feast of Justice (Tyson Ave)", + "address": "3101 Tyson Ave", + "phone_number": "215-268-3510; registration@feastofjustice.org", + "category": "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code": "19149", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "60.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0529172659927, + "y": 40.0372372507607, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "11:00", + "hours_tues_start2": "11:00", + "hours_tues_end2": "12:00", + "hours_tues_exceptions": "Some hours are by appointment only. Contact the site for more information.", + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": "16:00", + "hours_wed_end2": "19:00", + "hours_wed_exceptions": "Some hours are by appointment only. Contact the site for more information.", + "hours_thurs_start1": "17:30", + "hours_thurs_end1": "19:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": "13:00", + "hours_sat_end2": "16:00", + "hours_sat_exceptions": "Some hours are by appointment only. Contact the site for more information.", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 459, + "email": "registration@feastofjustice.org" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0529172659927, + 40.037237250760704 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1583, + "site_name": "Mighty Writers North", + "address": "Vaux Building, W. Seybert St & N. 23rd St", + "phone_number": "610-263-5379", + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.174260000349, + "y": 39.9762819997186, + "hours_mon_start1": "12:00", + "hours_mon_end1": "14:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "12:00", + "hours_thurs_end1": "14:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 734, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17426000034898, + 39.976281999718594 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1625, + "site_name": "Mighty Writers El Futuro", + "address": "1025 S. 9th St.", + "phone_number": "215-602-0236", + "category": "PHILABUNDANCE", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1582622996111, + "y": 39.9369036002963, + "hours_mon_start1": "11:30", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:30", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:30", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:30", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:30", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 776, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1582622996111, + 39.93690360029628 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 151, + "site_name": "Broad Street Love", + "address": "315 S Broad Street", + "phone_number": null, + "category": "Office of Homeless Services", + "zip_code": "19107", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": "151.0", + "status": "Active", + "website": null, + "x": -75.1649107348479, + "y": 39.9463593305455, + "hours_mon_start1": "11:30", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:30", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:30", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:30", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:30", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 849, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1649107348479, + 39.946359330545505 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 152, + "site_name": "Hub of Hope", + "address": "1401 JFK Pkway, Suburban Station Concourse (lower level)", + "phone_number": null, + "category": "Office of Homeless Services", + "zip_code": "19102", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": "152.0", + "status": "Active", + "website": null, + "x": -75.1644451017913, + "y": 39.9542082054843, + "hours_mon_start1": "13:00", + "hours_mon_end1": "14:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "13:00", + "hours_tues_end1": "14:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "13:00", + "hours_wed_end1": "14:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:00", + "hours_thurs_end1": "14:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "13:00", + "hours_fri_end1": "14:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "13:00", + "hours_sat_end1": "14:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "13:00", + "hours_sun_end1": "14:30", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 850, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16444510179129, + 39.9542082054843 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 158, + "site_name": "Juniata Park Older Adult Center", + "address": "1251 E. Sedgley Avenue", + "phone_number": "215-685-1490", + "category": "PPR_Senior", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "154.0", + "status": "Active", + "website": "https://www.phila.gov/programs/programs-for-older-adults/", + "x": -75.1044433256204, + "y": 40.0036572029384, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 852, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1044433256204, + 40.0036572029384 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 159, + "site_name": "West Oak Lane Senior Center", + "address": "7210 Ogontz Avenue", + "phone_number": null, + "category": "PPR_Senior", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "155.0", + "status": "Active", + "website": "https://www.phila.gov/programs/programs-for-older-adults/", + "x": -75.1542445423279, + "y": 40.0643925853223, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 853, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1542445423279, + 40.0643925853223 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 160, + "site_name": "South Philly Older Adult Center", + "address": "1430 E. Passyunk Avenue", + "phone_number": "215-685-1697", + "category": "PPR_Senior", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Senior Meal Site", + "site_key": "156.0", + "status": "Active", + "website": "https://www.phila.gov/programs/programs-for-older-adults/", + "x": -75.1624560997666, + "y": 39.9315061772274, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 854, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1624560997666, + 39.9315061772274 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 162, + "site_name": "Iglesia Christiana Avivamiento", + "address": "5500 Tabor Rd", + "phone_number": "215-856-3932", + "category": "PHILABUNDANCE", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "158.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1040875783119, + "y": 40.0364108953804, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 856, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.10408757831192, + 40.036410895380406 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 164, + "site_name": "Richard & Friends", + "address": "1916 E Venango", + "phone_number": null, + "category": "SHARE FOOD PROGRAM", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "160.0", + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1027403134918, + "y": 39.9996917304216, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 858, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.10274031349178, + 39.9996917304216 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 200, + "site_name": "Faith Chapel Church FCDC", + "address": "108 E. Price St.", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "195.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1738733808022, + "y": 40.0377994804202, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 892, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1738733808022, + 40.0377994804202 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 201, + "site_name": "New Era Baptist Church", + "address": "6618 Wyncote Ave.", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "196.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1539733052039, + "y": 40.0555689272364, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "10:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 893, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15397330520389, + 40.05556892723641 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 205, + "site_name": "10th St. Market (North 10)", + "address": "3890 N. 10th St., 2nd Fl", + "phone_number": "267-908-9000 ext 232", + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": "200.0", + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1442911997158, + "y": 40.011658490177, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 897, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1442911997158, + 40.011658490177005 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1758, + "site_name": "Grace Cafe", + "address": "55 N Broad St", + "phone_number": "215-568-6250", + "category": "Office of Homeless Services", + "zip_code": "19107", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1629413548718, + "y": 39.9541376542775, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "17:00", + "hours_sun_end1": "18:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 901, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1629413548718, + 39.9541376542775 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1759, + "site_name": "Chosen 300", + "address": "1116 Spring Garden St.", + "phone_number": "215-765-9806", + "category": "Office of Homeless Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1568948175558, + "y": 39.9615472602088, + "hours_mon_start1": "18:00", + "hours_mon_end1": "19:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "18:00", + "hours_wed_end1": "19:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "18:00", + "hours_fri_end1": "19:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "17:00", + "hours_sat_end1": "18:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 902, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15689481755578, + 39.96154726020879 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1760, + "site_name": "Chosen 300 West", + "address": "3959 Lancaster Ave", + "phone_number": "215-765-9806", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.2020146023491, + "y": 39.963143570813, + "hours_mon_start1": "18:00", + "hours_mon_end1": "19:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "18:00", + "hours_fri_end1": "19:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 903, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2020146023491, + 39.96314357081301 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1761, + "site_name": "UC Hospitality Coalition", + "address": "3637 Chestnut St", + "phone_number": "610-639-4395", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1962020877731, + "y": 39.9552201369182, + "hours_mon_start1": "18:00", + "hours_mon_end1": "19:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 904, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1962020877731, + 39.9552201369182 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1763, + "site_name": "UC Hospitality Coalition", + "address": "38th and Ludlow St", + "phone_number": "610-639-4395", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1980295659639, + "y": 39.9557889716924, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "18:00", + "hours_wed_end1": "19:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 905, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1980295659639, + 39.9557889716924 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1764, + "site_name": "UC Hospitality Coalition", + "address": "3619 Locust Walk", + "phone_number": "610-639-4395", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1958238959745, + "y": 39.9522669169356, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "18:00", + "hours_thurs_end1": "19:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 906, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1958238959745, + 39.9522669169356 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1765, + "site_name": "UC Hospitality Coalition", + "address": "401 S 42nd St", + "phone_number": "610-639-4395", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.2068928699972, + "y": 39.9509410940945, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "18:00", + "hours_fri_end1": "19:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 907, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.20689286999719, + 39.950941094094496 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1767, + "site_name": "Face to Face", + "address": "123 E. Price St", + "phone_number": "215-438-7939", + "category": "Office of Homeless Services", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1740966621666, + "y": 40.0383687103843, + "hours_mon_start1": "09:00", + "hours_mon_end1": "14:45", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "14:45", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "14:45", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "14:45", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "09:00", + "hours_sun_end1": "14:45", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 909, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1740966621666, + 40.03836871038429 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1768, + "site_name": "Salvation Army", + "address": "1920 E Allegheny Ave", + "phone_number": "215-739-2365", + "category": "Office of Homeless Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1121546387226, + "y": 39.9946369543148, + "hours_mon_start1": "11:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "18:00", + "hours_thurs_end1": "21:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 910, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1121546387226, + 39.9946369543148 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1769, + "site_name": "Our Brothers Place", + "address": "907 Hamilton St", + "phone_number": "215-985-1600", + "category": "Office of Homeless Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1537807497446, + "y": 39.9602284858481, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "12:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 911, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1537807497446, + 39.9602284858481 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1770, + "site_name": "Church of the Advocate", + "address": "1801 Diamond St", + "phone_number": "215-978-8000", + "category": "Office of Homeless Services", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1633430156685, + "y": 39.9858410546873, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 912, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16334301566849, + 39.98584105468731 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1771, + "site_name": "Mt. Tabor AME Church", + "address": "961 N. 7th St", + "phone_number": "215-574-1310", + "category": "Office of Homeless Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1482305280623, + "y": 39.9690817750412, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 913, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14823052806229, + 39.969081775041204 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1772, + "site_name": "Bethel Presbyterian Church", + "address": "1900 W York St", + "phone_number": "215-228-0328", + "category": "Office of Homeless Services", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1638490311633, + "y": 39.9903258701712, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "14:00", + "hours_sat_end1": "16:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 914, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1638490311633, + 39.99032587017119 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1773, + "site_name": "St. John's Hospice", + "address": "1221 Race St", + "phone_number": "215-563-7763", + "category": "Office of Homeless Services", + "zip_code": "19107", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1599856443517, + "y": 39.9559930011262, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": "16:00", + "hours_mon_end2": "16:30", + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": "16:00", + "hours_wed_end2": "16:30", + "hours_wed_exceptions": null, + "hours_thurs_start1": "12:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": "16:00", + "hours_thurs_end2": "17:00", + "hours_thurs_exceptions": "Open on third Thursday of the month from 4-5 pm", + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": "16:00", + "hours_fri_end2": "16:30", + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 915, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1599856443517, + 39.9559930011262 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1779, + "site_name": "FAWN Food Pantry at Tilden Middle School", + "address": "6601 Elmwood Ave (enter by parking lot on 66th St.)", + "phone_number": "445-216-9766", + "category": "PHILABUNDANCE", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2323380649246, + "y": 39.9216153588454, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 921, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2323380649246, + 39.9216153588454 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1781, + "site_name": "Community Center at Visitation", + "address": "2646 Kensington Ave", + "phone_number": "215-426-9422", + "category": "PHILABUNDANCE", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1262197898038, + "y": 39.9897495856365, + "hours_mon_start1": "09:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 923, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12621978980381, + 39.989749585636496 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1782, + "site_name": "5th District and Friends at John F. Street Community Center", + "address": "1100 Poplar St.", + "phone_number": "215-645-2833", + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1529737318182, + "y": 39.9685130387533, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "14:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 924, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1529737318182, + 39.9685130387533 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1784, + "site_name": "Catholic Social Services Southwest Family Service Center", + "address": "6214 Grays Ave", + "phone_number": "215-724-8550", + "category": "Nutritional Development Services", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.2282328616182, + "y": 39.9256578737702, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 926, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22823286161818, + 39.9256578737702 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1785, + "site_name": "Catholic Social Services Northeast Family Service Center", + "address": "7340 Jackson St", + "phone_number": null, + "category": "Nutritional Development Services", + "zip_code": "19136", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.0353879551563, + "y": 40.0332363771882, + "hours_mon_start1": "09:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 927, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0353879551563, + 40.0332363771882 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1786, + "site_name": "Dreuding Center", + "address": "1321 N. Lawrence St. Door Number 10", + "phone_number": "215-787-3263", + "category": "Nutritional Development Services", + "zip_code": "19122", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1434718701725, + "y": 39.9720257786128, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "15:00", + "hours_thurs_end1": "17:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 928, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1434718701725, + 39.9720257786128 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1787, + "site_name": "Lutheran Settlement Food Cupboard", + "address": "1340 Frankford Ave", + "phone_number": "215-426-8610", + "category": "Nutritional Development Services", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1345928643168, + "y": 39.9713738289625, + "hours_mon_start1": "09:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 929, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13459286431679, + 39.9713738289625 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1788, + "site_name": "Mission of St. Joan of Arc Food Cupboard", + "address": "3550 Frankford Ave", + "phone_number": "215-535-4641", + "category": "Nutritional Development Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1023081023546, + "y": 39.9978300871201, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 930, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.10230810235458, + 39.99783008712011 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1789, + "site_name": "Our Lady of Hope", + "address": "5200 N. Broad St", + "phone_number": "215-868-1390", + "category": "Nutritional Development Services", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1465094718835, + "y": 40.0324039164571, + "hours_mon_start1": "14:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 931, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1465094718835, + 40.032403916457106 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1790, + "site_name": "Rodeph Shalom", + "address": "1339 Green St.", + "phone_number": "215-627-6747", + "category": "Nutritional Development Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.160800772828, + "y": 39.9636294160772, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:15", + "hours_wed_end1": "10:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 932, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.160800772828, + 39.963629416077204 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1791, + "site_name": "St. Barbara", + "address": "5359 Lebanon Ave (side entrance)", + "phone_number": "215-473-1044", + "category": "Nutritional Development Services", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.2318588950946, + "y": 39.9876916813117, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "12:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 933, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2318588950946, + 39.9876916813117 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1792, + "site_name": "Padre Pio Prayer Center Food Distribution (St. Joachim)", + "address": "1527 Church St", + "phone_number": "215-288-3081", + "category": "Nutritional Development Services", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.0897109299385, + "y": 40.0118811000791, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "11:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 934, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0897109299385, + 40.011881100079094 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1799, + "site_name": "McClure Elementary School", + "address": "600 W Hunting Park Ave", + "phone_number": "215-900-4286", + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1375770135384, + "y": 40.0151658377538, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "14:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 939, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1375770135384, + 40.01516583775379 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1802, + "site_name": "Bebashi", + "address": "1235 Spring Garden St", + "phone_number": "215-769-3561", + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1588581801891, + "y": 39.9621503368767, + "hours_mon_start1": "10:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 942, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1588581801891, + 39.9621503368767 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1806, + "site_name": "Better Tomorrows - West Poplar Apartments", + "address": "637 N. 13th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1585105970308, + "y": 39.9646325480805, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 946, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15851059703081, + 39.964632548080495 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1990, + "site_name": "Gompers School", + "address": "5701 Wynnefield Ave", + "phone_number": "267-593-5590", + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2379696330734, + "y": 39.9923548397912, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:30", + "hours_wed_end1": "12:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1004, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23796963307339, + 39.99235483979119 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1952, + "site_name": "Dobbins Technical High School", + "address": "2150 W Lehigh Ave.", + "phone_number": "215-301-2667; 267-312-5229", + "category": "PHILABUNDANCE", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.166715537836, + "y": 39.9951816474292, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:30", + "hours_wed_end1": "13:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1101, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.166715537836, + 39.9951816474292 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 1958, + "site_name": "Gideon School", + "address": "2817 W Glenwood Ave.", + "phone_number": "215-301-5384", + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1805905188846, + "y": 39.9843399898756, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "13:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1107, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1805905188846, + 39.98433998987561 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2032, + "site_name": "Temple University Hospital, Episcopal Campus", + "address": "100 E. Lehigh Ave.", + "phone_number": "215-707-0305", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1292128279476, + "y": 39.9900143859633, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "14:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1225, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1292128279476, + 39.99001438596329 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2033, + "site_name": "New Hope AME Zion Church", + "address": "5802 Musgrave St.", + "phone_number": "215-668-9703", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1689202502226, + "y": 40.0440040815861, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on first and third Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1227, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16892025022261, + 40.0440040815861 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2035, + "site_name": "New Disciples Ministries", + "address": "6301 Kingsessing Ave.", + "phone_number": "267-593-1158", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2358147107232, + "y": 39.9288476468292, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "14:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on second and fourth Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1231, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23581471072319, + 39.9288476468292 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2037, + "site_name": "Feed Philly Now", + "address": "2819 N Mascher St", + "phone_number": "267-702-0134", + "category": "Small Things Philly", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": -75.1321818378598, + "y": 39.9932267337329, + "hours_mon_start1": "16:00", + "hours_mon_end1": "18:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "16:00", + "hours_tues_end1": "18:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "16:00", + "hours_wed_end1": "18:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "16:00", + "hours_thurs_end1": "18:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "16:00", + "hours_fri_end1": "18:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1235, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13218183785982, + 39.9932267337329 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2174, + "site_name": "Philly Dream Center", + "address": "Kensington Ave. and E. Allegheny Ave.", + "phone_number": "215-856-3250", + "category": "Office of Homeless Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1135473956019, + "y": 39.996578551812, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1236, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11354739560188, + 39.996578551812 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2038, + "site_name": "Philadelphia Masjid", + "address": "4700 Wyalusing Ave.", + "phone_number": "215-475-7597", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.2162266220973, + "y": 39.9698682723065, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1237, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2162266220973, + 39.9698682723065 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2041, + "site_name": "CDA Philadelphia Ministry", + "address": "301 Saint Vincent St", + "phone_number": "215-888-0272", + "category": "Small Things Philly", + "zip_code": "19111", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": -75.0877134385927, + "y": 40.0607884572586, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "14:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1243, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.08771343859269, + 40.0607884572586 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2042, + "site_name": "Concilio", + "address": "141 E Hunting Park Ave", + "phone_number": "215-627-3100 Ext 258", + "category": "Small Things Philly", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": -75.1237779556436, + "y": 40.0137182907762, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1245, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12377795564359, + 40.0137182907762 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2043, + "site_name": "New Covenant Church Cheltenham", + "address": "4201 Princeton Ave", + "phone_number": "267-702-0134", + "category": "Small Things Philly", + "zip_code": "19135", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": -75.0431371364011, + "y": 40.0332681563206, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1247, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0431371364011, + 40.033268156320595 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2044, + "site_name": "OCCCDA (Howell St.)", + "address": "900 E Howell St", + "phone_number": "215-586-9551", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19149", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0910929659985, + "y": 40.0382907748535, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on first, second, third, and fifth Thursdays of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1249, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0910929659985, + 40.0382907748535 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2045, + "site_name": "Firm Hope Baptist Church", + "address": "2311 E Auburn St", + "phone_number": "215 634 2486", + "category": "Small Things Philly", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": -75.1151602319978, + "y": 39.9851647464177, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "14:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1251, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11516023199779, + 39.98516474641771 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2047, + "site_name": "South Philadelphia High School", + "address": "2101 Broad St", + "phone_number": "215-847-5154", + "category": "PHILABUNDANCE", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1687545491827, + "y": 39.9234226841309, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "14:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on the second and fourth Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1253, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1687545491827, + 39.923422684130884 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2048, + "site_name": "Allegheny West Foundation", + "address": "3101 N. 22nd St.", + "phone_number": "215-225-1019", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1658706040358, + "y": 40.0020560014599, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1254, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1658706040358, + 40.002056001459906 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2050, + "site_name": "Old First Reformed United Church of Christ", + "address": "151 N. 4th St.", + "phone_number": "215-922-4566", + "category": "Office of Homeless Services", + "zip_code": "19106", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1462040327961, + "y": 39.9537640959331, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "10:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "17:00", + "hours_sun_end1": "18:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1256, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1462040327961, + 39.95376409593311 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2052, + "site_name": "South Philly Community Fridge at BOK Building", + "address": "1901 S. 9th St.", + "phone_number": "southphlcommunityfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://southphillyfridge.com/", + "x": -75.1600160318808, + "y": 39.9252878451299, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1258, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1600160318808, + 39.925287845129894 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2053, + "site_name": "Bebashi Community Fridge", + "address": "1235 Spring Garden St.", + "phone_number": "215-769-3561", + "category": "Community Refrigerators", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.bebashi.org/food-and-support/", + "x": -75.158600527611, + "y": 39.9621605484304, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1259, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15860052761099, + 39.9621605484304 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2056, + "site_name": "East Falls Community Fridge at Vault + Vine", + "address": "3507 Midvale Ave.", + "phone_number": "eastfallscommunityfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19129", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://eastfallscommunityfridge.com/", + "x": -75.1925968635794, + "y": 40.0136528708565, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1264, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.19259686357938, + 40.0136528708565 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2059, + "site_name": "Fridges and Family at the People's Kitchen", + "address": "1149 S. 9th St.", + "phone_number": "southphlcommunityfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://southphillyfridge.com/", + "x": -75.1586757977021, + "y": 39.9350135232846, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1268, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1586757977021, + 39.9350135232846 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2060, + "site_name": "Germantown Community Fridge", + "address": "20 W. Armat St.", + "phone_number": "germantownfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.germantowncommunityfridge.com/", + "x": -75.1740698842091, + "y": 40.0346483763818, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1269, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1740698842091, + 40.0346483763818 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2061, + "site_name": "Germantown Community Fridge", + "address": "19 E. High St.", + "phone_number": "germantownfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.germantowncommunityfridge.com/", + "x": -75.1772918542851, + "y": 40.0397807806651, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1270, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1772918542851, + 40.0397807806651 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2062, + "site_name": "South Philly Community Fridge at Mifflin Sq. Park", + "address": "516 Wolf St.", + "phone_number": "southphlcommunityfridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://southphillyfridge.com/", + "x": -75.1563769646693, + "y": 39.9200585143654, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1271, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15637696466929, + 39.92005851436539 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2063, + "site_name": "Umoja Community Fridge at North Philly Peace Park", + "address": "2226 West Jefferson St.", + "phone_number": "umojafridge@gmail.com", + "category": "Community Refrigerators", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.instagram.com/umojacommunityfridge/?utm_medium=copy_link", + "x": -75.1721073850862, + "y": 39.9774645446481, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1272, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1721073850862, + 39.9774645446481 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2066, + "site_name": "Bethany Indonesian Church", + "address": "1709 South Broad St", + "phone_number": "(215) 833-2923 / (267) 773-2208", + "category": "PHILABUNDANCE", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1683678069376, + "y": 39.9289412552884, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "10:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1273, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1683678069376, + 39.9289412552884 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2067, + "site_name": "Feast for Friends", + "address": "6001 Colgate St.", + "phone_number": "(215) 921-1689", + "category": "PHILABUNDANCE", + "zip_code": "19111", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1001490488377, + "y": 40.0446476669104, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:30", + "hours_tues_end1": "11:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1275, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1001490488377, + 40.04464766691041 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2068, + "site_name": "John Welsh School", + "address": "2331 N. 4th Street", + "phone_number": "215-400-7130", + "category": "PHILABUNDANCE", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1392474747912, + "y": 39.986604354101, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:00", + "hours_wed_end1": "10:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1276, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13924747479119, + 39.986604354101004 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2069, + "site_name": "Kingdom Restoration Ministries", + "address": "5310 N. 8th St.", + "phone_number": "267-336-7815", + "category": "PHILABUNDANCE", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1367095183287, + "y": 40.0331678707606, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on the third Saturday of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1279, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1367095183287, + 40.03316787076061 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2070, + "site_name": "Mi Salud Wellness Center", + "address": "200 E. Wyoming Ave.", + "phone_number": "215-220-4421", + "category": "PHILABUNDANCE", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1222213148709, + "y": 40.0210041382369, + "hours_mon_start1": "17:30", + "hours_mon_end1": "19:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "17:30", + "hours_wed_end1": "19:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1280, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12222131487091, + 40.0210041382369 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2071, + "site_name": "Project HOME", + "address": "1845 N 23rd St.", + "phone_number": "215-235-3110", + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1717349771278, + "y": 39.9831244260181, + "hours_mon_start1": "10:30", + "hours_mon_end1": "12:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "17:00", + "hours_tues_end1": "19:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on the third Tuesday of the month", + "hours_wed_start1": "10:30", + "hours_wed_end1": "12:30", + "hours_wed_start2": "17:00", + "hours_wed_end2": "19:00", + "hours_wed_exceptions": "Open on the third Wednesday evening of the month", + "hours_thurs_start1": "10:30", + "hours_thurs_end1": "12:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1281, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1717349771278, + 39.9831244260181 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2072, + "site_name": "Richard and Friends United in the Community", + "address": "1921 E Venango St", + "phone_number": "(267) 679-0884", + "category": "PHILABUNDANCE", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.102203066974, + "y": 39.9995905870617, + "hours_mon_start1": "13:00", + "hours_mon_end1": "18:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "13:00", + "hours_tues_end1": "18:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "13:00", + "hours_wed_end1": "18:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:00", + "hours_thurs_end1": "18:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "13:00", + "hours_fri_end1": "18:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1283, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.10220306697398, + 39.99959058706169 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2073, + "site_name": "The Word in Action International Ministries", + "address": "1539 W. Courtland Street", + "phone_number": "215-324-7665", + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1511616796028, + "y": 40.0237048842628, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1285, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1511616796028, + 40.023704884262784 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2074, + "site_name": "Urban Creators", + "address": "2315 N. 11th St.", + "phone_number": "(917) 921-1248", + "category": "PHILABUNDANCE", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1503021992511, + "y": 39.9876218043958, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "15:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1287, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1503021992511, + 39.98762180439581 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2075, + "site_name": "Wynne Senior Residences - Penrose", + "address": "2001 N. 54th St.", + "phone_number": "267.419.6921", + "category": "PHILABUNDANCE", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.2315348271429, + "y": 39.9869348111759, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1289, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2315348271429, + 39.9869348111759 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2076, + "site_name": "Association of Former Gang Members", + "address": "1644 W. Susquehanna Ave.", + "phone_number": "215-980-1151", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.1607953361984, + "y": 39.9867275753448, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:30", + "hours_wed_end1": "12:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": "Open on the second and fourth Wednesays of the month", + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1291, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16079533619839, + 39.986727575344794 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2193, + "site_name": "Old St. Joseph's Church", + "address": "321 Willings Alley", + "phone_number": "215-923-1733", + "category": "Office of Homeless Services", + "zip_code": "19106", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": -75.1475917526346, + "y": 39.9465790565325, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:30", + "hours_tues_end1": "11:15", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:30", + "hours_thurs_end1": "11:15", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:30", + "hours_sat_end1": "11:15", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1292, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1475917526346, + 39.94657905653251 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2077, + "site_name": "Stephen and Sandra Sheller 11th St. Family Health Services", + "address": "850 N. 11th St.", + "phone_number": "215-769-1100", + "category": "Nutritional Development Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://nutritionaldevelopmentservices.org/", + "x": -75.1551145013212, + "y": 39.9679325529388, + "hours_mon_start1": "09:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "13:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1293, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15511450132118, + 39.967932552938805 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2078, + "site_name": "Feast of Justice - Northeast Services Hub", + "address": "6334 Castor Ave", + "phone_number": "215-268-3510", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19149", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": -75.0785381781358, + "y": 40.0385675517687, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:30", + "hours_thurs_end1": "12:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:30", + "hours_sat_end1": "13:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1295, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.07853817813579, + 40.03856755176871 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2236, + "site_name": "St. John Memorial Baptist Church", + "address": "2853 Germantown Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": -75.1468363755204, + "y": 39.9959017368757, + "hours_mon_start1": "08:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1364, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1468363755204, + 39.995901736875695 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2239, + "site_name": "Catholic Social Services Southwest", + "address": "6214 Grays Ave.", + "phone_number": "215-724-8550, ext. 6", + "category": "BenePhilly", + "zip_code": "19142.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://cssphiladelphia.org/family-service-centers/southwest-family-service-center/", + "x": -75.22823869, + "y": 39.92562457, + "hours_mon_start1": "09:30", + "hours_mon_end1": "17:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:30", + "hours_tues_end1": "17:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:30", + "hours_wed_end1": "17:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:30", + "hours_thurs_end1": "17:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:30", + "hours_fri_end1": "17:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1376, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22823869, + 39.92562456999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2240, + "site_name": "Esperanza", + "address": "4261 N. 5th St.", + "phone_number": "215-324-0746, ext. 108", + "category": "BenePhilly", + "zip_code": "19140.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.esperanza.us/", + "x": -75.13416739, + "y": 40.0162608, + "hours_mon_start1": "09:00", + "hours_mon_end1": "17:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "17:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "17:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "17:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1377, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13416739, + 40.0162608 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2241, + "site_name": "Impact Services", + "address": "1952 E. Allegheny Ave.", + "phone_number": "215-739-1600, ext. 156", + "category": "BenePhilly", + "zip_code": "19134.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.impactservices.org/", + "x": -75.11225925, + "y": 39.99425745, + "hours_mon_start1": "07:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1378, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11225924999998, + 39.99425745 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2242, + "site_name": "Impact Services at PA CareerLink, Northwest", + "address": "5847 Germantown Ave.", + "phone_number": "215-298-9292", + "category": "BenePhilly", + "zip_code": "19144.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.impactservices.org/pa-careerlink-nw-philadelphia", + "x": -75.17654958, + "y": 40.03849176, + "hours_mon_start1": "08:30", + "hours_mon_end1": "16:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "08:30", + "hours_tues_end1": "16:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:30", + "hours_wed_end1": "16:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "08:30", + "hours_thurs_end1": "16:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "08:30", + "hours_fri_end1": "16:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1379, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17654957999999, + 40.03849175999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2243, + "site_name": "Philadelphia FIGHT", + "address": "1233 Locust St.", + "phone_number": "215-525-8636", + "category": "BenePhilly", + "zip_code": "19107.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://fight.org/", + "x": -75.16194112, + "y": 39.94815364, + "hours_mon_start1": "09:00", + "hours_mon_end1": "17:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "17:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "17:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "17:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1380, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16194112, + 39.94815364 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2244, + "site_name": "Office of Community Empowerment and Opportunity (CEO) Mobile Benefits Unit", + "address": null, + "phone_number": "215-685-3649", + "category": "BenePhilly", + "zip_code": null, + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-community-empowerment-and-opportunity/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1381, + "email": null + }, + "geometry": null + }, + { + "type": "Feature", + "properties": { + "objectid": 2245, + "site_name": "UESF", + "address": "1608 Walnut St.", + "phone_number": "215-814-6845", + "category": "BenePhilly", + "zip_code": "19103.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://uesfacts.org/", + "x": -75.16812461, + "y": 39.94964137, + "hours_mon_start1": "09:00", + "hours_mon_end1": "17:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "17:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "17:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "17:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1382, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16812461, + 39.94964137 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2246, + "site_name": "Aramingo WIC Office", + "address": "2401 E. Tioga St., #A-4", + "phone_number": "215-533-9597", + "category": "WIC", + "zip_code": "19134.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.09815012, + "y": 39.99146028, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1383, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.09815012, + 39.99146027999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2247, + "site_name": "Lehigh WIC Office", + "address": "217-33 W. Lehigh Ave.", + "phone_number": "215-634-3828", + "category": "WIC", + "zip_code": "19133.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.13551882, + "y": 39.99240343, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1384, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13551881999999, + 39.99240343 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2248, + "site_name": "North Philadelphia WIC Office", + "address": "2709 N. Broad St., (Rear Entrance on Park Ave., 2nd Floor)", + "phone_number": "215-229-3786", + "category": "WIC", + "zip_code": "19132.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.15409138, + "y": 39.9946995, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1385, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15409137999998, + 39.99469950000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2249, + "site_name": "Northeast WIC Office", + "address": "7959 Bustleton Ave.", + "phone_number": "215-745-6197", + "category": "WIC", + "zip_code": "19152.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.05193378, + "y": 40.05889808, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1386, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.05193378, + 40.05889807999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2250, + "site_name": "Olney/Logan WIC Office", + "address": "5751 N. Broad St., Unit 5", + "phone_number": "215-927-1950", + "category": "WIC", + "zip_code": "19141.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.14393878, + "y": 40.04125241, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1387, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14393878, + 40.04125241 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2251, + "site_name": "Overbrook WIC Office", + "address": "Overbrook Plaza, #1400, 5610 Lancaster Ave.", + "phone_number": "215-477-3360", + "category": "WIC", + "zip_code": "19131.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.23489215, + "y": 39.9795656, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1388, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23489214999998, + 39.9795656 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2252, + "site_name": "South Philadelphia WIC Office", + "address": "1165 S. Broad St.", + "phone_number": "215-463-5571", + "category": "WIC", + "zip_code": "19146.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.16666409, + "y": 39.93591439, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1389, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16666408999998, + 39.93591439 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2253, + "site_name": "St. Christopher's WIC Office", + "address": "Nelson Pavilion Bldg., 160 Erie Ave.", + "phone_number": "215-427-6973", + "category": "WIC", + "zip_code": "19124.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.12701848, + "y": 40.0060639, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1390, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12701848000002, + 40.006063899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2254, + "site_name": "Woodland WIC Office", + "address": "1741 S. 54th St.", + "phone_number": "215-726-1142", + "category": "WIC", + "zip_code": "19143.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.21908051, + "y": 39.93708154, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1391, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21908051, + 39.937081539999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": 2255, + "site_name": "Germantown WIC Office", + "address": "47 W. Chelten Avenue", + "phone_number": "215-714-7449", + "category": "WIC", + "zip_code": "19144.0", + "temporary_closure": null, + "category_type": "Public Benefits", + "site_key": null, + "status": "Active", + "website": "https://www.pawic.com/default.aspx", + "x": -75.17608299, + "y": 40.03513166, + "hours_mon_start1": "07:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:00", + "hours_tues_end1": "16:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1392, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17608299, + 40.03513166 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Prevention Point (Love Lot)", + "address": "2913 Kensington Ave.", + "phone_number": null, + "category": "Office of Homeless Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1393, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11970591514114, + 39.99275470935254 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Rising Sun Health Center", + "address": "5675 N. Front St.", + "phone_number": "445-216-9766", + "category": "PHILABUNDANCE", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1394, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11811000077647, + 40.03755206729745 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Brothers of Strawberry Mansion", + "address": "3218 W. Susquehanna Ave.", + "phone_number": "267-568-1163", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:30", + "hours_sat_end1": "11:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on first and third Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1395, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18572666414468, + 39.989999303701715 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "First Church of Love and Deliverance", + "address": "3101 Ridge Ave.", + "phone_number": "215-769-1275", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": "Open on first Friday of the month", + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1396, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18384390296349, + 39.989709416101064 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Hickman Temple Daycare", + "address": "1220 S. 58th", + "phone_number": "267-815-5684", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": "11:30", + "hours_mon_end1": "13:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": "Open on first and third Mondays of the month", + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1397, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23762579795553, + 39.94315235906973 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Martin Luther King Jr. Association For Nonviolence Inc. (MLK)", + "address": "3001 Walnut St.", + "phone_number": "215-751-9300", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "11:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on third Saturday of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1398, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18412836515341, + 39.95194836402275 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Self Inc./Outley House", + "address": "6901 Woodland Ave.", + "phone_number": "215-496-9610 (Ext 377)", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19142", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "14:30", + "hours_tues_end1": "17:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on second and fourth Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1400, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24075484622992, + 39.921906475926484 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Bethesda Project", + "address": "907 Hamilton St.", + "phone_number": "215-236-7864", + "category": "Office of Homeless Services", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "12:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "12:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "12:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "12:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "12:00", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1402, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1547560772468, + 39.96026579248488 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "The Living Word Evangelistic Missionary Church, Inc.", + "address": "872 N. 40th St.", + "phone_number": "267-439-7078", + "category": "Office of Homeless Services", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "12:00", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": "Open third Sunday of the month", + "ObjectId2": 1403, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2036546987568, + 39.969655048521055 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Veterans Multi-Service Center", + "address": "213-217 N. 4th St.", + "phone_number": "215-238-8067", + "category": "Office of Homeless Services", + "zip_code": "19106", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": "09:00", + "hours_mon_end1": "10:00", + "hours_mon_start2": "12:00", + "hours_mon_end2": "13:00", + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "10:00", + "hours_tues_start2": "12:00", + "hours_tues_end2": "13:00", + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "10:00", + "hours_wed_start2": "12:00", + "hours_wed_end2": "13:00", + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "10:00", + "hours_thurs_start2": "12:00", + "hours_thurs_end2": "13:00", + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "10:00", + "hours_fri_start2": "12:00", + "hours_fri_end2": "13:00", + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1404, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14616439834282, + 39.95444035880352 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "WorkSmart LLC", + "address": "2033 Orthodox St.", + "phone_number": "267-726-0214", + "category": "Office of Homeless Services", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": "13:00", + "hours_mon_end1": "16:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "13:00", + "hours_wed_end1": "16:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:00", + "hours_thurs_end1": "16:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "13:00", + "hours_fri_end1": "16:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1405, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.07944964584622, + 40.010676690623434 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Keeping It Real Christian Fellowship Bread of Life Ministry", + "address": "North 18th St. and Benjamin Franklin Parkway", + "phone_number": "215-232-3900", + "category": "Office of Homeless Services", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "13:30", + "hours_sun_end1": "14:30", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1406, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16894687684416, + 39.95721214179665 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "There's Hope", + "address": "Kensington Ave. and E. Hilton St.", + "phone_number": "267-684-8377", + "category": "Office of Homeless Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "12:00", + "hours_sun_end1": "15:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1407, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11276645368316, + 39.99686899103441 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Small Things Market at Emmanuel (inside of Resurrection Church)", + "address": "123 S 17th St", + "phone_number": "215-559-9212", + "category": "STP", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:30", + "hours_sat_end1": "12:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1408, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16869872593479, + 39.95051475542449 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Small Things Market at Emmanuel (inside of Resurrection Church)", + "address": "123 S 17th St", + "phone_number": "215-559-9212", + "category": "Small Things Philly", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "11:30", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1409, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16869067930774, + 39.950481856542865 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "48th Street Mount Pleasant Baptist Church", + "address": "5539 Vine St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:30", + "hours_sat_end1": "11:30", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on second and fourth Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1410, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23136024151285, + 39.96577196843346 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Abiding Truth Ministries", + "address": "846 S 57th St.", + "phone_number": "215-476-7225", + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1411, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23809827011088, + 39.947620715651226 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Anchor of Hope", + "address": "53 E Wister St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1414, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16395064081406, + 40.03112691923855 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Bethany AME Church", + "address": "8898 Ashton Rd", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19136", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on first and third Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1415, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.02688756922339, + 40.05853712438968 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Better Tomorrows - Jackie's Garden", + "address": "1836 N 20th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1416, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16696755602067, + 39.98235164383108 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Bless Philadelphia Corporation", + "address": "4610 Devereaux St", + "phone_number": "267-908-4982", + "category": "PHILABUNDANCE", + "zip_code": "19135", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on third Thursday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "13:00", + "hours_sun_end1": "13:30", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1417, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.05648409850899, + 40.02021691111618 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Breaking Bread on Broad", + "address": "615 N Broad St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:15", + "hours_wed_end1": "10:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1418, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16069032036476, + 39.96375655564536 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Bryn Mawr Avenue New Testament Church of God", + "address": "2227 Bryn Mawr Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19131", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "18:00", + "hours_mon_end1": "20:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "18:00", + "hours_thurs_end1": "20:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1419, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22613990839616, + 39.99084669554026 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Calvary Agape Outreach Service", + "address": "6114 Haverford Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "14:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1420, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24159873624151, + 39.97102348803969 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Campbell AME Church", + "address": "1657 Kinsey St", + "phone_number": "215-288-2748", + "category": "PHILABUNDANCE", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1421, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.08480956922769, + 40.01324461083482 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Casa Del Carmen", + "address": "4400 N Reese St", + "phone_number": "267-331-2473", + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "08:30", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "08:30", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "08:30", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1422, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1350548888947, + 40.01884109565716 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Chelten Christian Crusade", + "address": "605 E Chelten Ave", + "phone_number": "215-849-6614", + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "14:00", + "hours_tues_end1": "16:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "14:00", + "hours_thurs_end1": "16:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1423, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16734530002911, + 40.04348867731174 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Chosen 300 Ministries Inc.", + "address": "3959 Lancaster Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "18:00", + "hours_mon_end1": "19:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "13:00", + "hours_tues_end1": "14:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "18:00", + "hours_wed_end1": "19:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "18:00", + "hours_fri_end1": "19:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "11:30", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1424, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.20192232700848, + 39.96317132412217 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Christ Apostolic Church of America WOSEM", + "address": "6438 Vine St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "08:00", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1425, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2491810139429, + 39.967687158920064 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Church of Christian Compassion", + "address": "6012 Cedar Ave", + "phone_number": "215-472-9040 ext. 2", + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "12:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1426, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.243221699459, + 39.952536269265615 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Eddie's House - The Cornerstone", + "address": "2321 N Broad St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "11:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1427, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15497604169413, + 39.98883013224285 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Einstein Medical Center", + "address": "Corner of W Tabor Rd. and N Park Ave.", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1428, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14369211408624, + 40.037771385522426 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Enon Tabernacle", + "address": "230 W Coulter St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1429, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17519000702994, + 40.02838289850067 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Episcopal Community Services", + "address": "6006 W Girard Ave", + "phone_number": "215-528-5400", + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "14:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "14:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1430, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23997298230174, + 39.96971610224193 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Faith Assembly of God", + "address": "1926-1940 Margaret St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1431, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.07800192352973, + 40.012958183095066 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Faith Temple Pentecostal Church", + "address": "5618 Kingsessing Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1433, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22485814776255, + 39.936123996688416 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "First Church Worship Center", + "address": "2509 N 30th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1434, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18067219080193, + 39.994356652099654 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Freedom Development Corporation", + "address": "6100 W Columbia Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19151", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1435, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24298175026564, + 39.98072331811691 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Giving of Self Partnership", + "address": "6101 Limekiln Pike", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1436, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14883520797065, + 40.04679445979976 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Grace Community Christian Center", + "address": "29 W Johnson St", + "phone_number": "215-848-2700", + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1437, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18305148618312, + 40.04559573682345 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Grace Lutheran Church", + "address": "3529 Haverford Ave", + "phone_number": "215-222-3570", + "category": "PHILABUNDANCE", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "13:00", + "hours_wed_end1": "17:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1438, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.19434676291846, + 39.96411996839221 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Greater Philadelphia Asian Social Service Center", + "address": "4943 N 5th St", + "phone_number": "215-456-1662 ext. 132", + "category": "PHILABUNDANCE", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "09:00", + "hours_mon_end1": "13:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": "Open on second and fourth Mondays of the month", + "hours_tues_start1": "09:00", + "hours_tues_end1": "13:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on second and fourth Tuesdays of the month", + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1439, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13230710073705, + 40.02695784962529 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Haitian Evangelical Baptist Church", + "address": "814 E Chelten Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "11:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1440, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16404970333853, + 40.04572773051789 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Helping Hands for the Hungry", + "address": "525 S. Cobbs Creek Parkway", + "phone_number": "215-747-3250", + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:30", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on the last Saturday of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1441, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24851428408755, + 39.95398955759776 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Holsey Temple CME Church", + "address": "5305-5315 Germantown Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1442, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16943608195712, + 40.032874923373434 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Holy Temple Community Center", + "address": "363 N 60th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:30", + "hours_thurs_end1": "13:45", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on the third Thursday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1443, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23933704730781, + 39.96799422260464 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Holy Temple Lord and Savior", + "address": "5116 Market St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open every other Thursday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1444, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22358015898543, + 39.959687999908134 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Iglesia de Dios Pentecostal", + "address": "516 W. Butler Street", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "13:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1445, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13733557209007, + 40.00895059205319 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Lifeway Baptist Church", + "address": "9554 Bustleton Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19115", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "07:30", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "07:30", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "07:30", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "07:30", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1447, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.03619692998515, + 40.087069011394455 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Lutheran Settlement House Senior Center", + "address": "1340 Frankford Ave", + "phone_number": "215-426-8610 ext. 1204", + "category": "PHILABUNDANCE", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1449, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1346365154486, + 39.971481276044145 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Masjidullah Center for Human Excellence", + "address": "7401 Limekiln Pike", + "phone_number": "215-621-7800", + "category": "PHILABUNDANCE", + "zip_code": "19138", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1451, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1583699581088, + 40.067466303337525 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Mount Tabor CEED Corporation", + "address": "961-971 N 7th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "12:00", + "hours_mon_end1": "13:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1453, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14814093493064, + 39.96905813540701 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Mount Zion United Holy Church", + "address": "4110 Haverford Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "13:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1454, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.20601805060053, + 39.96250260198797 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "New Jerusalem Laura", + "address": "2011 W Norris St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "13:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1455, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16716031142602, + 39.98473124860205 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "North Light Community Center", + "address": "175 Green Ln", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19127", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:30", + "hours_mon_end1": "11:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:30", + "hours_fri_end1": "11:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1456, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22441033830162, + 40.02870343616102 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "One Day at a Time Haven II", + "address": "2532 N Broad St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "15:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1457, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15539387956743, + 39.99216699473814 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Page Academy CDC", + "address": "1524 W Champlost Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "13:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1458, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15221843745884, + 40.045110947495026 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Penn Asian Senior Services", + "address": "6926 Old York Rd", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19126", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "09:00", + "hours_mon_end1": "17:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "17:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "17:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "17:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "17:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1459, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13959150893646, + 40.059045900453484 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Pente Church of God", + "address": "3027 N 5th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "11:00", + "hours_mon_end1": "14:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "19:00", + "hours_tues_end1": "20:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "19:00", + "hours_thurs_end1": "20:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "19:00", + "hours_fri_end1": "20:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1460, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13885135546025, + 39.997343673887826 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Philadelphia Episcopal Cathedral", + "address": "19 S 38th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "09:30", + "hours_mon_end1": "11:30", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1461, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.19801321947853, + 39.9557421120922 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Police Athletic League Center - Ford", + "address": "609 Snyder Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19148", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:30", + "hours_thurs_end1": "14:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on the fourth Thursday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1462, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15695681021752, + 39.92288752016849 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Provision of Grace World Mission Church", + "address": "1950 W Rockland St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19141", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "13:30", + "hours_tues_end1": "15:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:30", + "hours_thurs_end1": "15:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1463, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15637816645736, + 40.02844702056785 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Refuge Evangelical Baptist Church", + "address": "1100 Oak Ln", + "phone_number": "215-224-2024", + "category": "PHILABUNDANCE", + "zip_code": "19126", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "12:00", + "hours_tues_end1": "14:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1464, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13656728684506, + 40.05468584294547 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Remnant Church of God", + "address": "7708-7712 Ogontz Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19150", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "15:00", + "hours_mon_end1": "17:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1465, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15777165786021, + 40.07110072766732 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Saint Luke's Episcopal Church", + "address": "5421 Germantown Ave", + "phone_number": "215-844-8544", + "category": "PHILABUNDANCE", + "zip_code": "19144", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "10:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "10:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1468, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17045745264058, + 40.033873802762635 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Saint Michael's Lutheran Church", + "address": "2139 E Cumberland St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19125", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "11:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1469, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12461339838754, + 39.98241564614094 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Saint Paul's Baptist Church", + "address": "1000 Wallace St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19123", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "14:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1470, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15420335156664, + 39.963865682157895 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Salvation Army West Philadelphia Corps", + "address": "5501 Market St", + "phone_number": "215-474-1010", + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "10:00", + "hours_wed_end1": "14:30", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "14:30", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "13:00", + "hours_sun_end1": "14:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1471, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.231484088798, + 39.9618391923387 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Star of Hope Baptist Church", + "address": "7212 Keystone St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19135", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "11:00", + "hours_tues_end1": "13:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1472, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.03420258755037, + 40.027082511855824 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "The Sunday Love Project", + "address": "3200 Kensington Ave", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "09:00", + "hours_mon_end1": "12:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "09:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "09:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1473, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11297680220908, + 39.996910545116194 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Truth Baptist Church", + "address": "4666-4668 N 15th St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "10:00", + "hours_tues_end1": "12:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "08:00", + "hours_sun_end1": "17:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1474, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14981342264647, + 40.024594778338674 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Two Ladies of Christ", + "address": "4125 Ludlow St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19104", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "08:00", + "hours_sun_end1": "17:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1475, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.2047266940922, + 39.95694113409684 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Ujima Friends Peace Center", + "address": "1701 W Lehigh Ave", + "phone_number": "267-761-4944", + "category": "PHILABUNDANCE", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on the second and last Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1476, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16025844746947, + 39.994995963558196 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Waters Memorial Community Center", + "address": "1016-1018 South St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19147", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "16:00", + "hours_tues_end1": "18:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": "Open on the second Tuesday of the month", + "hours_wed_start1": "16:00", + "hours_wed_end1": "18:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1477, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.15933308535891, + 39.94267143138159 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Wharton Wesley Helping Hands", + "address": "5341 Catharine St", + "phone_number": null, + "category": "PHILABUNDANCE", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "09:00", + "hours_wed_end1": "12:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": "Open on the fourth Wednesday of the month", + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1478, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.23076175454572, + 39.94965758329234 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Together We Can Change at Love Park", + "address": "16th St. and JFK Blvd.", + "phone_number": "215-284-5780", + "category": "Office of Homeless Services", + "zip_code": "19102", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "12:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1479, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16583542768446, + 39.95418957416873 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Together We Can Change at Aviator Park", + "address": "1900-1958 Benjamin Franklin Pkwy", + "phone_number": "215-284-5780", + "category": "Office of Homeless Services", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "10:30", + "hours_sun_end1": "11:30", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1480, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17186099297363, + 39.95807688068852 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Locke School", + "address": "4550 Haverford Ave", + "phone_number": "(215) 400-7670", + "category": "PHILABUNDANCE", + "zip_code": "19139", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.philabundance.org/", + "x": null, + "y": null, + "hours_mon_start1": "13:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "13:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "13:00", + "hours_fri_end1": "15:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1481, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21237356023944, + 39.96238651372229 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "The Everywhere Project (Love Park)", + "address": "N 15th St. and John F. Kennedy Blvd", + "phone_number": "267-770-3919", + "category": "Office of Homeless Services", + "zip_code": "19102", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "19:00", + "hours_wed_end1": "21:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1482, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16578383528599, + 39.95408861877938 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "The Everywhere Project (E. Clearfield St.)", + "address": "1810 E. Clearfield St.", + "phone_number": "267-770-3919", + "category": "Office of Homeless Services", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "13:00", + "hours_sat_end1": "16:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1483, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11525604656447, + 39.99430350690987 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Hope Prison Ministries", + "address": "547 Rising Sun Ave.", + "phone_number": "610-633-1789", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": "10:00", + "hours_mon_end1": "14:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:00", + "hours_fri_end1": "14:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1485, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.13801316522353, + 40.00921126724562 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Fresh Fire Apostolic International Ministries", + "address": "2901 Cedar St.", + "phone_number": "267-880-9733", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1486, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.11224337944725, + 39.98469929931452 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "OCCCDA (Castor Ave)", + "address": "6500 Castor Ave", + "phone_number": "215-586-9551", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19149", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "14:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on fourth Thursday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1487, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.07623635944503, + 40.04109291262398 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Geiger Memorial Brethren Church", + "address": "2543 W. Lehigh Ave.", + "phone_number": "215-229-2967", + "category": "SHARE FOOD PROGRAM", + "zip_code": null, + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "10:00", + "hours_thurs_end1": "12:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": "Open on the Thursday after the second Tuesday of the month", + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1488, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17368235410586, + 39.99661086786835 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Frontline Dads (24th & Somerset)", + "address": "24th St. and Somerset Ave", + "phone_number": "(484) 532-8772", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": "13:00", + "hours_thurs_end1": "15:00", + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1490, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17036340309117, + 39.99767530254355 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Denise's Pantry @ The Print Foundation", + "address": "5843-55 Catharine St.", + "phone_number": "215-828-7091", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "15:00", + "hours_fri_end1": "17:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1491, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.24071587038011, + 39.950768803435174 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Helping Hands Nonprofit Organization", + "address": "4667 Paul St.", + "phone_number": "484-579-0490", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19124", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": "11:00", + "hours_mon_end1": "15:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1492, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.08333004792152, + 40.01603627637292 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "True Vine Worship Center", + "address": "521-23 W. Lehigh Ave.", + "phone_number": "445-248-6152", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19133", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "08:30", + "hours_tues_end1": "10:00", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1493, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14114367554093, + 39.99244636388381 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Small Things Philly Market - Fairhill", + "address": "3510 A St.", + "phone_number": "215-559-9212", + "category": "Small Things Philly", + "zip_code": "19134", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": "11:00", + "hours_wed_end1": "15:00", + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:00", + "hours_fri_end1": "12:00", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "13:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1494, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12644661790229, + 40.00297301850501 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "African Family Health Organization", + "address": "5400 Grays Ave", + "phone_number": "215-546-1232", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "09:30", + "hours_fri_end1": "11:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": "Open on the first and third Fridays of the month", + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1495, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.21637889368182, + 39.93358055924118 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "First Haitian Church of God of Prophecy", + "address": "199 E. Tabor Ave.", + "phone_number": "267-971-8886", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19120", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": "10:30", + "hours_fri_end1": "12:30", + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": "Open on first and third Fridays of the month", + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1497, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.12014488637003, + 40.031363842358026 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Epiphany Fellowship Church Community Fridge", + "address": "1632 W Diamond St", + "phone_number": null, + "category": "Community Refrigerators", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1714, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.16123497643325, + 39.985070484050496 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Friends Pantry & Community Fridge", + "address": "320 Arch Street", + "phone_number": "(267) 334-0433", + "category": "Community Refrigerators", + "zip_code": "19106", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.historicasmh.org/friendspantry", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1715, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14695495011972, + 39.95238332740683 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Mt. Airy Community Fridge", + "address": "6900 Stenton Ave", + "phone_number": null, + "category": "Community Refrigerators", + "zip_code": "19150", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://mtairyeats.wordpress.com/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1716, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17708339513835, + 40.06598800257177 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "St James School Community Fridge", + "address": "3217 West Clearfield St", + "phone_number": null, + "category": "Community Refrigerators", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.friendsfridgephilly.com/volunteer", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1717, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18278830270116, + 40.004174345777464 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "The People's Fridge", + "address": "125 South 52nd St", + "phone_number": null, + "category": "Community Refrigerators", + "zip_code": "19143", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.thepeoplesfridge.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1718, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.22516727235158, + 39.95749850038796 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Ian-Yae's In Touch", + "address": "2524 N. 27th St.", + "phone_number": "267-254-9531", + "category": "Office of Homeless Services", + "zip_code": "19132", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": "18:30", + "hours_tues_end1": "19:30", + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1724, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17628602468925, + 39.99452935939402 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Brothers of Strawberry Mansion Clifford St.", + "address": "3223 W Clifford St", + "phone_number": "267-568-1163", + "category": "SHARE FOOD PROGRAM", + "zip_code": "19121", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.sharefoodprogram.org/", + "x": null, + "y": null, + "hours_mon_start1": "09:30", + "hours_mon_end1": "11:00", + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1725, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.18712231675262, + 39.98339266636013 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Food Pantry For Hope, Memorial Presbyterian Church of Fox Chase", + "address": "7902 Oxford Ave.", + "phone_number": "215-745-2844", + "category": "General Food Site", + "zip_code": "19111", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://sites.google.com/site/foxchasechurch/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "09:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": "Open on second and fourth Saturdays of the month", + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1726, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.0850879844744, + 40.07458507357378 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Narberth Presbyterian Church", + "address": "200 N 19th St.", + "phone_number": "215-776-3598", + "category": "Office of Homeless Services", + "zip_code": "19103", + "temporary_closure": null, + "category_type": "General Meal Site", + "site_key": null, + "status": "Active", + "website": "https://www.phila.gov/departments/office-of-homeless-services/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": null, + "hours_sat_end1": null, + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": "12:00", + "hours_sun_end1": "13:00", + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1727, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.17034447440219, + 39.95872460617966 + ] + } + }, + { + "type": "Feature", + "properties": { + "objectid": null, + "site_name": "Small Things Philly Market - House of Hope", + "address": "1300 W. Hunting Park Ave", + "phone_number": "215-559-9212", + "category": "Small Things Philly", + "zip_code": "19140", + "temporary_closure": null, + "category_type": "Food Site", + "site_key": null, + "status": "Active", + "website": "https://www.smallthingsphilly.org/", + "x": null, + "y": null, + "hours_mon_start1": null, + "hours_mon_end1": null, + "hours_mon_start2": null, + "hours_mon_end2": null, + "hours_mon_exceptions": null, + "hours_tues_start1": null, + "hours_tues_end1": null, + "hours_tues_start2": null, + "hours_tues_end2": null, + "hours_tues_exceptions": null, + "hours_wed_start1": null, + "hours_wed_end1": null, + "hours_wed_start2": null, + "hours_wed_end2": null, + "hours_wed_exceptions": null, + "hours_thurs_start1": null, + "hours_thurs_end1": null, + "hours_thurs_start2": null, + "hours_thurs_end2": null, + "hours_thurs_exceptions": null, + "hours_fri_start1": null, + "hours_fri_end1": null, + "hours_fri_start2": null, + "hours_fri_end2": null, + "hours_fri_exceptions": null, + "hours_sat_start1": "10:00", + "hours_sat_end1": "12:00", + "hours_sat_start2": null, + "hours_sat_end2": null, + "hours_sat_exceptions": null, + "hours_sun_start1": null, + "hours_sun_end1": null, + "hours_sun_start2": null, + "hours_sun_end2": null, + "hours_sun_exceptions": null, + "ObjectId2": 1728, + "email": null + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.14742327638075, + 40.016443010346165 + ] + } + } + ] + } \ No newline at end of file diff --git a/data/FreeFoodarcgis.json b/data/FreeFoodarcgis.json new file mode 100644 index 0000000..82d40e6 --- /dev/null +++ b/data/FreeFoodarcgis.json @@ -0,0 +1,16846 @@ +{ + "objectIdFieldName" : "ObjectId2", + "uniqueIdField" : + { + "name" : "ObjectId2", + "isSystemMaintained" : true + }, + "globalIdFieldName" : "", + "geometryType" : "esriGeometryPoint", + "spatialReference" : { + "wkid" : 102100, + "latestWkid" : 3857 + }, + "fields" : [ + { + "name" : "objectid", + "type" : "esriFieldTypeInteger", + "alias" : "objectid", + "sqlType" : "sqlTypeInteger", + "domain" : null, + "defaultValue" : null + }, + { + "name" : "site_name", + "type" : "esriFieldTypeString", + "alias" : "site name", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "address", + "type" : "esriFieldTypeString", + "alias" : "address", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "phone_number", + "type" : "esriFieldTypeString", + "alias" : "phone number", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "category", + "type" : "esriFieldTypeString", + "alias" : "category", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : + { + "type" : "codedValue", + "name" : "COVID19_FreeMealSites_2_0_FOR_EDITING_category_499bfdbe-4eca-47eb-8bd5-669987b99f05", + "codedValues" : [ + { + "name" : "playstreets", + "code" : "playstreets" + }, + { + "name" : "NDS", + "code" : "NDS" + }, + { + "name" : "Recreation Center", + "code" : "Recreation Center" + }, + { + "name" : "PSD", + "code" : "PSD" + }, + { + "name" : "SHARE FOOD PROGRAM", + "code" : "SHARE FOOD PROGRAM" + }, + { + "name" : "Other Summer Meal Sites", + "code" : "Other Summer Meal Sites" + }, + { + "name" : "PHILABUNDANCE", + "code" : "PHILABUNDANCE" + }, + { + "name" : "CHARTER", + "code" : "CHARTER" + }, + { + "name" : "Office of Homeless Services", + "code" : "Office of Homeless Services" + }, + { + "name" : "Other", + "code" : "Other" + }, + { + "name" : "PHA", + "code" : "PHA" + }, + { + "name" : "PCA", + "code" : "PCA" + }, + { + "name" : "Philabundance Summer Meal Sites", + "code" : "Philabundance Summer Meal Sites" + }, + { + "name" : "Community Refrigerators", + "code" : "Community Refrigerators" + }, + { + "name" : "Nutritional Development Services", + "code" : "Nutritional Development Services" + }, + { + "name" : "WIC", + "code" : "WIC" + }, + { + "name" : "Small Things Philly", + "code" : "Small Things Philly" + }, + { + "name" : "BenePhilly", + "code" : "BenePhilly" + }, + { + "name" : "Caring for Friends", + "code" : "Caring for Friends" + }, + { + "name" : "PHILABUNDANCE/SHARE FOOD PROGRAM", + "code" : "PHILABUNDANCE/SHARE FOOD PROGRAM" + }, + { + "name" : "PPR_StudentMeals", + "code" : "PPR_StudentMeals" + }, + { + "name" : "PPR_Senior", + "code" : "PPR_Senior" + }, + { + "name" : "Kensington Meal Partners", + "code" : "Kensington Meal Partners" + }, + { + "name" : "PAL", + "code" : "PAL" + }, + { + "name" : "PPR", + "code" : "PPR" + }, + { + "name" : "SEAMAAC South Philly", + "code" : "SEAMAAC South Philly" + }, + { + "name" : "STP", + "code" : "STP" + }, + { + "name" : "JSJ Food Bank", + "code" : "JSJ Food Bank" + }, + { + "name" : "General Food Site", + "code" : "General Food Site" + } + ] + }, + "defaultValue" : null + }, + { + "name" : "zip_code", + "type" : "esriFieldTypeString", + "alias" : "zip code", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "temporary_closure", + "type" : "esriFieldTypeString", + "alias" : "temporary closure", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "category_type", + "type" : "esriFieldTypeString", + "alias" : "category type", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : + { + "type" : "codedValue", + "name" : "COVID19_FreeMealSites_2_0_FOR_EDITING_category_type_e51c14b2-0253-49ba-8a96-0cbb5d82cbca", + "codedValues" : [ + { + "name" : "Food Site", + "code" : "Food Site" + }, + { + "name" : "General Meal Site", + "code" : "General Meal Site" + }, + { + "name" : "Student Meal Site", + "code" : "Student Meal Site" + }, + { + "name" : "Older Adult Meal Site", + "code" : "Older Adult Meal Site" + }, + { + "name" : "Public Benefits", + "code" : "Public Benefits" + } + ] + }, + "defaultValue" : null + }, + { + "name" : "site_key", + "type" : "esriFieldTypeString", + "alias" : "site key", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "status", + "type" : "esriFieldTypeString", + "alias" : "status", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : + { + "type" : "codedValue", + "name" : "COVID19_FreeMealSites_2_0_FOR_EDITING_status_d5462acd-668b-412b-89be-9cb41849712e", + "codedValues" : [ + { + "name" : "Active", + "code" : "Active" + }, + { + "name" : "Permanently Closed", + "code" : "Permanently Closed" + } + ] + }, + "defaultValue" : null + }, + { + "name" : "website", + "type" : "esriFieldTypeString", + "alias" : "website", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "x", + "type" : "esriFieldTypeDouble", + "alias" : "x", + "sqlType" : "sqlTypeFloat", + "domain" : null, + "defaultValue" : null + }, + { + "name" : "y", + "type" : "esriFieldTypeDouble", + "alias" : "y", + "sqlType" : "sqlTypeFloat", + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_mon_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_mon_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_mon_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_mon_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_mon_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_mon_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_mon_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_mon_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_mon_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_mon_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_tues_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_tues_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_tues_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_tues_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_tues_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_tues_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_tues_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_tues_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_tues_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_tues_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_wed_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_wed_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_wed_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_wed_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_wed_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_wed_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_wed_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_wed_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_wed_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_wed_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_thurs_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_thurs_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_thurs_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_thurs_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_thurs_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_thurs_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_thurs_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_thurs_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_thurs_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_thurs_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_fri_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_fri_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_fri_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_fri_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_fri_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_fri_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_fri_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_fri_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_fri_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_fri_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sat_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_sat_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sat_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_sat_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sat_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_sat_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sat_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_sat_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sat_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_sat_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sun_start1", + "type" : "esriFieldTypeString", + "alias" : "hours_sun_start1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sun_end1", + "type" : "esriFieldTypeString", + "alias" : "hours_sun_end1", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sun_start2", + "type" : "esriFieldTypeString", + "alias" : "hours_sun_start2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sun_end2", + "type" : "esriFieldTypeString", + "alias" : "hours_sun_end2", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "hours_sun_exceptions", + "type" : "esriFieldTypeString", + "alias" : "hours_sun_exceptions", + "sqlType" : "sqlTypeNVarchar", + "length" : 4000, + "domain" : null, + "defaultValue" : null + }, + { + "name" : "ObjectId2", + "type" : "esriFieldTypeOID", + "alias" : "ObjectId2", + "sqlType" : "sqlTypeInteger", + "domain" : null, + "defaultValue" : null + }, + { + "name" : "email", + "type" : "esriFieldTypeString", + "alias" : "email", + "sqlType" : "sqlTypeOther", + "length" : 256, + "domain" : null, + "defaultValue" : null + } + ], + "features" : [ + { + "attributes" : { + "objectid" : 1, + "site_name" : "Nativity Satellite Program", + "address" : "3255 Belgrade St", + "phone_number" : "215-423-2772", + "category" : "PCA", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "1.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1027830258919, + "y" : 39.9869100071108, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 104, + "email" : null + }, + "geometry" : + { + "x" : -8360403.5635999963, + "y" : 4864040.2596999984 + } + }, + { + "attributes" : { + "objectid" : 2, + "site_name" : "King Older Adult Center", + "address" : "2100 W. Cecil B. Moore Ave.", + "phone_number" : "215-685-2715", + "category" : "PPR_Senior", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "2.0", + "status" : "Active", + "website" : "https://www.phila.gov/programs/programs-for-older-adults/", + "x" : -75.1696037016514, + "y" : 39.9799845526985, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 118, + "email" : null + }, + "geometry" : + { + "x" : -8367842.0072000055, + "y" : 4863034.1154000061 + } + }, + { + "attributes" : { + "objectid" : 230, + "site_name" : "Bethel Worship Center", + "address" : "169 W. Wyoming Ave.", + "phone_number" : "267-979-3718", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "227.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1270198272313, + "y" : 40.0220402850977, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 219, + "email" : null + }, + "geometry" : + { + "x" : -8363101.5919835549, + "y" : 4869145.6307652229 + } + }, + { + "attributes" : { + "objectid" : 234, + "site_name" : "New Life Community Center", + "address" : "4726 N Broad St", + "phone_number" : "267-766-2945", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "211.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1479072566934, + "y" : 40.0254420630128, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 223, + "email" : null + }, + "geometry" : + { + "x" : -8365426.7699952563, + "y" : 4869640.1398399025 + } + }, + { + "attributes" : { + "objectid" : 237, + "site_name" : "Family Support Circle", + "address" : "2059 E Chelten Ave", + "phone_number" : "267-335-5857", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "205.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1540589775297, + "y" : 40.0518853585732, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on second and fourth Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 226, + "email" : null + }, + "geometry" : + { + "x" : -8366111.5764262564, + "y" : 4873484.9855177961 + } + }, + { + "attributes" : { + "objectid" : 238, + "site_name" : "Second Antioch Baptist Church", + "address" : "912 N 41st St", + "phone_number" : "215-387-6774", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "203.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2060791354852, + "y" : 39.9708019190448, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "11:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 227, + "email" : null + }, + "geometry" : + { + "x" : -8371902.4339208482, + "y" : 4861700.2006754531 + } + }, + { + "attributes" : { + "objectid" : 239, + "site_name" : "Resurrection Community Church", + "address" : "6200 Dicks Ave", + "phone_number" : "215-724-0822", + "category" : "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "212.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2239188884506, + "y" : 39.9222424422221, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 228, + "email" : null + }, + "geometry" : + { + "x" : -8373888.3461368335, + "y" : 4854649.1885117088 + } + }, + { + "attributes" : { + "objectid" : 243, + "site_name" : "St. Benedict Food Bank", + "address" : "1940 E Chelten Ave", + "phone_number" : "215-548-2700", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "213.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1516570287425, + "y" : 40.0515648970568, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "11:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "11:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 230, + "email" : null + }, + "geometry" : + { + "x" : -8365844.192710354, + "y" : 4873438.3816013252 + } + }, + { + "attributes" : { + "objectid" : 261, + "site_name" : "George Washington High School Pantry", + "address" : "10175 Bustleton Ave", + "phone_number" : "267-432-3625", + "category" : "PHILABUNDANCE", + "zip_code" : "19116", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "243.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.0260176838819, + "y" : 40.1059155185218, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 247, + "email" : null + }, + "geometry" : + { + "x" : -8351858.0848168712, + "y" : 4881345.5922063682 + } + }, + { + "attributes" : { + "objectid" : 281, + "site_name" : "The Reid Foundation, Inc. at Always Independent", + "address" : "9150 Marshall Street", + "phone_number" : "484-684-9867", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19114", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0313359784294, + "y" : 40.0724097928534, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:00", + "hours_wed_end1" : "11:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 266, + "email" : null + }, + "geometry" : + { + "x" : -8352450.1146577867, + "y" : 4876470.2592269024 + } + }, + { + "attributes" : { + "objectid" : 285, + "site_name" : "Church of Pentecost", + "address" : "2530 Wharton St", + "phone_number" : "215-372-7307", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19146", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1869238756805, + "y" : 39.9364947795582, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 269, + "email" : null + }, + "geometry" : + { + "x" : -8369770.0801533768, + "y" : 4856718.1607717508 + } + }, + { + "attributes" : { + "objectid" : 286, + "site_name" : "Friends Rehabilitation Program", + "address" : "704 W Girard Ave", + "phone_number" : "215-825-8800", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1484801182196, + "y" : 39.9702161810685, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 270, + "email" : null + }, + "geometry" : + { + "x" : -8365490.5406486476, + "y" : 4861615.1195639921 + } + }, + { + "attributes" : { + "objectid" : 288, + "site_name" : "North Philadelphia SDA Church", + "address" : "1510 W Oxford St", + "phone_number" : "215-235-1001", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1611370434714, + "y" : 39.9775135940884, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "08:00", + "hours_tues_end1" : "11:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 272, + "email" : null + }, + "geometry" : + { + "x" : -8366899.5031226873, + "y" : 4862675.15412032 + } + }, + { + "attributes" : { + "objectid" : 291, + "site_name" : "Revelation Philadelphia Ministry Inc", + "address" : "7047 Buist Ave", + "phone_number" : "267-901-5293", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2374023040843, + "y" : 39.915258763847, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 275, + "email" : null + }, + "geometry" : + { + "x" : -8375389.3130993322, + "y" : 4853635.54451818 + } + }, + { + "attributes" : { + "objectid" : 297, + "site_name" : "Brand New Life Christian Center", + "address" : "6301 Germantown Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.180665704404, + "y" : 40.0437385805313, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 279, + "email" : null + }, + "geometry" : + { + "x" : -8369073.4237135807, + "y" : 4872300.2879845779 + } + }, + { + "attributes" : { + "objectid" : 298, + "site_name" : "Brewerytown Sharswood Coalition", + "address" : "3000 W Master St", + "phone_number" : "267-858-4246", + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1853768369027, + "y" : 39.9773674271891, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : "Open every other Friday of the month", + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 280, + "email" : null + }, + "geometry" : + { + "x" : -8369597.8645843938, + "y" : 4862653.92055846 + } + }, + { + "attributes" : { + "objectid" : 299, + "site_name" : "Eastwick United Methodist Church", + "address" : "8325 Lindbergh Blvd", + "phone_number" : "215-365-6352", + "category" : "PHILABUNDANCE", + "zip_code" : "19153", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2522683004483, + "y" : 39.8985064296034, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "13:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 281, + "email" : null + }, + "geometry" : + { + "x" : -8377044.1882447079, + "y" : 4851204.45302943 + } + }, + { + "attributes" : { + "objectid" : 300, + "site_name" : "Ezekiel Baptist Church", + "address" : "5701 Grays Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2216311665265, + "y" : 39.9309614246931, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "08:30", + "hours_thurs_end1" : "11:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 282, + "email" : null + }, + "geometry" : + { + "x" : -8373633.6780971671, + "y" : 4855914.8478440288 + } + }, + { + "attributes" : { + "objectid" : 301, + "site_name" : "Good Samaritan Baptist Church", + "address" : "6148-6150 Lansdowne Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2434036629389, + "y" : 39.9753951033089, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:30", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 283, + "email" : null + }, + "geometry" : + { + "x" : -8376057.3813110935, + "y" : 4862367.4069073126 + } + }, + { + "attributes" : { + "objectid" : 302, + "site_name" : "Kitchen of Love", + "address" : "8500 Pickering Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19150", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1746241124142, + "y" : 40.0813415704501, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:30", + "hours_wed_end1" : "10:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "08:30", + "hours_thurs_end1" : "10:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "08:30", + "hours_fri_end1" : "10:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 284, + "email" : null + }, + "geometry" : + { + "x" : -8368400.8767696926, + "y" : 4877769.6649117637 + } + }, + { + "attributes" : { + "objectid" : 304, + "site_name" : "New Testament Church of God", + "address" : "935 S 53rd St", + "phone_number" : "(215) 472-6630", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2270401762836, + "y" : 39.9456064978479, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "12:00", + "hours_sat_end1" : "14:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on first and third Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 285, + "email" : null + }, + "geometry" : + { + "x" : -8374235.8063090229, + "y" : 4858041.1094221473 + } + }, + { + "attributes" : { + "objectid" : 306, + "site_name" : "The Simple Way", + "address" : "3234 Potter St", + "phone_number" : "215.423.3598", + "category" : "PHILABUNDANCE", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1121830408897, + "y" : 39.997865098786, + "hours_mon_start1" : "09:30", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:30", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:30", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 287, + "email" : null + }, + "geometry" : + { + "x" : -8361449.968483001, + "y" : 4865632.0463266857 + } + }, + { + "attributes" : { + "objectid" : 315, + "site_name" : "Gather the People House of Prayer", + "address" : "1429 W Clearfield St", + "phone_number" : "267-300-2397", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.15419265961, + "y" : 40.0002645330222, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 294, + "email" : null + }, + "geometry" : + { + "x" : -8366126.4578473633, + "y" : 4865980.7207954992 + } + }, + { + "attributes" : { + "objectid" : 317, + "site_name" : "Interfaith Food Cupboard", + "address" : "3600 Baring St", + "phone_number" : null, + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1941797561967, + "y" : 39.9608808580969, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:30", + "hours_sat_end1" : "11:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 296, + "email" : null + }, + "geometry" : + { + "x" : -8370577.8010776965, + "y" : 4860259.21973302 + } + }, + { + "attributes" : { + "objectid" : 320, + "site_name" : "Kingdom Life Christian Center", + "address" : "6325 Frankford Ave.", + "phone_number" : "267-351-7942", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19135", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0587642930532, + "y" : 40.0279670767714, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : "Open on second and fourth Wednesdays of the month", + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 297, + "email" : null + }, + "geometry" : + { + "x" : -8355503.4206750272, + "y" : 4870007.2115558889 + } + }, + { + "attributes" : { + "objectid" : 321, + "site_name" : "MAP Holistic CDC (Mankind Against Poverty)", + "address" : "1510 W Stiles St", + "phone_number" : "215-235-2500", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1614993322461, + "y" : 39.9725544043368, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 298, + "email" : null + }, + "geometry" : + { + "x" : -8366939.8329246063, + "y" : 4861954.7615078008 + } + }, + { + "attributes" : { + "objectid" : 323, + "site_name" : "St Paul A.M.E. Church", + "address" : "8398 Lindbergh Blvd", + "phone_number" : "267-593-9631", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19153", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2516236941386, + "y" : 39.8976676859333, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:30", + "hours_thurs_end1" : "11:45", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 300, + "email" : null + }, + "geometry" : + { + "x" : -8376972.4309985489, + "y" : 4851082.7505359137 + } + }, + { + "attributes" : { + "objectid" : 1671, + "site_name" : "Grace Tabernacle Christian Church", + "address" : "1519 S 52nd St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2166426671927, + "y" : 39.9388686331097, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 324, + "email" : null + }, + "geometry" : + { + "x" : -8373078.3608915051, + "y" : 4857062.8083602246 + } + }, + { + "attributes" : { + "objectid" : 1681, + "site_name" : "Norris Homes/North Central Community Center", + "address" : "2000 N 11th St", + "phone_number" : "267-456-4236", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19122", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1517041284639, + "y" : 39.9829399753166, + "hours_mon_start1" : "13:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : "Open on second and fourth Mondays of the month", + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 332, + "email" : null + }, + "geometry" : + { + "x" : -8365849.4358273568, + "y" : 4863463.4728185525 + } + }, + { + "attributes" : { + "objectid" : 1729, + "site_name" : "Centre d'Adoration Chretienne", + "address" : "4520 Benner St", + "phone_number" : "215-543-2589", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19135", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0590504573232, + "y" : 40.0198757913626, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "19:30", + "hours_tues_end1" : "20:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 376, + "email" : null + }, + "geometry" : + { + "x" : -8355535.2763358466, + "y" : 4868830.9958420014 + } + }, + { + "attributes" : { + "objectid" : 1730, + "site_name" : "Consortium Community Mental Health Center", + "address" : "137 S. 58th St.", + "phone_number" : "267-259-0648", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19153", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2371548094028, + "y" : 39.9585887010502, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on second and fourth Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 377, + "email" : null + }, + "geometry" : + { + "x" : -8375361.7621174119, + "y" : 4859926.3259383608 + } + }, + { + "attributes" : { + "objectid" : 1731, + "site_name" : "Courtyard Apartments at Riverview", + "address" : "1021 South 4th St", + "phone_number" : "215-551-7091", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1501806632426, + "y" : 39.9348904039844, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "15:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : "Open on first and third Wednesdays of the month", + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 378, + "email" : null + }, + "geometry" : + { + "x" : -8365679.84445468, + "y" : 4856485.2365036029 + } + }, + { + "attributes" : { + "objectid" : 1733, + "site_name" : "Haddington Overbrook Resident Council", + "address" : "648 N 57th St", + "phone_number" : "267-319-2223", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2343484644007, + "y" : 39.9698990457032, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 380, + "email" : null + }, + "geometry" : + { + "x" : -8375049.3612207891, + "y" : 4861569.0545105794 + } + }, + { + "attributes" : { + "objectid" : 1734, + "site_name" : "Katie's Cupboard at Tabor", + "address" : "4860 N Howard St", + "phone_number" : "215-455-1706", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1250504961452, + "y" : 40.0245861926688, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 381, + "email" : null + }, + "geometry" : + { + "x" : -8362882.3670498487, + "y" : 4869515.7215035707 + } + }, + { + "attributes" : { + "objectid" : 1736, + "site_name" : "Mantua Haverford Community Center/Mt. Vernon Manor CDC", + "address" : "1103 N. 40th St.", + "phone_number" : "215-475-9492", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1996174083507, + "y" : 39.9640703294391, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "11:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 383, + "email" : null + }, + "geometry" : + { + "x" : -8371183.1177465916, + "y" : 4860722.4505487578 + } + }, + { + "attributes" : { + "objectid" : 1737, + "site_name" : "Men Who Care of Germantown Inc", + "address" : "180 E Tulpehocken St", + "phone_number" : "267-335-4786", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1766029550634, + "y" : 40.0450599190972, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 384, + "email" : null + }, + "geometry" : + { + "x" : -8368621.1605257625, + "y" : 4872492.4262956092 + } + }, + { + "attributes" : { + "objectid" : 1739, + "site_name" : "Mount Hebron Baptist Church", + "address" : "1419 Wharton St", + "phone_number" : "267-441-6680", + "category" : "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code" : "19146", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1686044442241, + "y" : 39.9344127119299, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:30", + "hours_thurs_end1" : "12:45", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on first and third Thursdays of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 385, + "email" : null + }, + "geometry" : + { + "x" : -8367730.7703720275, + "y" : 4856415.8859216413 + } + }, + { + "attributes" : { + "objectid" : 1740, + "site_name" : "New Bethany Baptist Church", + "address" : "1415 S 23rd St", + "phone_number" : "215-336-4166", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19146", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1825016993948, + "y" : 39.934304096031, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "12:00", + "hours_sat_end1" : "14:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on second and fourth Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 386, + "email" : null + }, + "geometry" : + { + "x" : -8369277.8057410549, + "y" : 4856400.1173036285 + } + }, + { + "attributes" : { + "objectid" : 1742, + "site_name" : "Reconciliation And Liberty Bible Church", + "address" : "6027 Chestnut St", + "phone_number" : "267-237-1763", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2419880662309, + "y" : 39.9607550185371, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 387, + "email" : null + }, + "geometry" : + { + "x" : -8375899.7978063906, + "y" : 4860240.943554162 + } + }, + { + "attributes" : { + "objectid" : 1743, + "site_name" : "The Charles Foundation", + "address" : "605 N 52nd St", + "phone_number" : "215-868-9543", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2251208271949, + "y" : 39.9697008108173, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : "Open on first and third Mondays of the month", + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 388, + "email" : null + }, + "geometry" : + { + "x" : -8374022.1453458145, + "y" : 4861540.2602883605 + } + }, + { + "attributes" : { + "objectid" : 1745, + "site_name" : "Women Walking in Victory", + "address" : "2441 N 29th St", + "phone_number" : "215-908-5286", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1791946194969, + "y" : 39.9933821651265, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 390, + "email" : null + }, + "geometry" : + { + "x" : -8368909.663290807, + "y" : 4864980.6403722055 + } + }, + { + "attributes" : { + "objectid" : 1751, + "site_name" : "Jerusalem French Church", + "address" : "537 E. Wyoming Ave.", + "phone_number" : "267-439-1246", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "194.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1148399594775, + "y" : 40.0205592394572, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 396, + "email" : null + }, + "geometry" : + { + "x" : -8361745.7353072725, + "y" : 4868930.3420777954 + } + }, + { + "attributes" : { + "objectid" : 1753, + "site_name" : "Philly House", + "address" : "302 N 13th St.", + "phone_number" : "215-922-6400", + "category" : "Office of Homeless Services", + "zip_code" : "19107", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1602727245355, + "y" : 39.9581014715558, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : "17:00", + "hours_mon_end2" : "18:00", + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : "17:00", + "hours_tues_end2" : "18:00", + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : "17:00", + "hours_wed_end2" : "18:00", + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "12:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : "17:00", + "hours_thurs_end2" : "18:00", + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : "17:00", + "hours_fri_end2" : "18:00", + "hours_fri_exceptions" : null, + "hours_sat_start1" : "12:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : "17:00", + "hours_sat_end2" : "18:00", + "hours_sat_exceptions" : null, + "hours_sun_start1" : "12:00", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : "17:00", + "hours_sun_end2" : "18:00", + "hours_sun_exceptions" : null, + "ObjectId2" : 398, + "email" : null + }, + "geometry" : + { + "x" : -8366803.2875788612, + "y" : 4859855.5662235022 + } + }, + { + "attributes" : { + "objectid" : 1754, + "site_name" : "The Perimeter", + "address" : "213-217 N 4th St", + "phone_number" : "215-923-2600", + "category" : "Office of Homeless Services", + "zip_code" : "19106", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1461239043371, + "y" : 39.9546974592809, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 399, + "email" : null + }, + "geometry" : + { + "x" : -8365228.24811905, + "y" : 4859361.2199491886 + } + }, + { + "attributes" : { + "objectid" : 1755, + "site_name" : "St. Francis Inn", + "address" : "2441 Kensington Ave", + "phone_number" : "215-423-5845", + "category" : "Office of Homeless Services", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1305798325364, + "y" : 39.9868761814555, + "hours_mon_start1" : "16:30", + "hours_mon_end1" : "18:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "11:00", + "hours_tues_start2" : "16:30", + "hours_tues_end2" : "18:00", + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "11:00", + "hours_wed_start2" : "16:30", + "hours_wed_end2" : "18:00", + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "11:00", + "hours_thurs_start2" : "16:30", + "hours_thurs_end2" : "18:00", + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:30", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:30", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "11:30", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 400, + "email" : null + }, + "geometry" : + { + "x" : -8363497.8899613414, + "y" : 4864035.3451911733 + } + }, + { + "attributes" : { + "objectid" : 1756, + "site_name" : "Living Word Community", + "address" : "142 N. 17th St", + "phone_number" : "215-563-1322", + "category" : "Office of Homeless Services", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.167905369386, + "y" : 39.9564938830237, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "11:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 401, + "email" : null + }, + "geometry" : + { + "x" : -8367652.9497170253, + "y" : 4859622.1017777231 + } + }, + { + "attributes" : { + "objectid" : 1757, + "site_name" : "Church of the Holy Trinity, Open Hearts Cafe", + "address" : "1904 Walnut St", + "phone_number" : "215-567-1267", + "category" : "Office of Homeless Services", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1732410374904, + "y" : 39.9503297053409, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "16:30", + "hours_tues_end1" : "18:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "16:30", + "hours_sun_end1" : "18:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 402, + "email" : null + }, + "geometry" : + { + "x" : -8368246.9135734476, + "y" : 4858726.95072853 + } + }, + { + "attributes" : { + "objectid" : 3, + "site_name" : "Lutheran Settlement House", + "address" : "1340 Frankford Ave.", + "phone_number" : "215-426-8610", + "category" : "PCA", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "3.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1346696845059, + "y" : 39.9714143441932, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 403, + "email" : null + }, + "geometry" : + { + "x" : -8363953.1702000052, + "y" : 4861789.159 + } + }, + { + "attributes" : { + "objectid" : 4, + "site_name" : "Mann Older Adult Center", + "address" : "3201 N. 5th St.", + "phone_number" : "215-685-9844", + "category" : "PCA", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "4.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1381035710362, + "y" : 40.0003955003318, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 404, + "email" : null + }, + "geometry" : + { + "x" : -8364335.4287, + "y" : 4865999.7526999945 + } + }, + { + "attributes" : { + "objectid" : 5, + "site_name" : "Northern Living Center", + "address" : "827 N Franklin St.", + "phone_number" : "215-978-1300", + "category" : "PCA", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "5.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.149842743491, + "y" : 39.9663456940248, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 405, + "email" : null + }, + "geometry" : + { + "x" : -8365642.2274000039, + "y" : 4861052.93199999 + } + }, + { + "attributes" : { + "objectid" : 6, + "site_name" : "On Lok House Satellite", + "address" : "219 N. 10th St.", + "phone_number" : "215-599-3016", + "category" : "PCA", + "zip_code" : "19107", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "6.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1556468492715, + "y" : 39.9558477411142, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 406, + "email" : null + }, + "geometry" : + { + "x" : -8366288.3374999994, + "y" : 4859528.2664000047 + } + }, + { + "attributes" : { + "objectid" : 7, + "site_name" : "Philadelphia Senior Center - Allegheny Branch", + "address" : "1900 W. Allegheny Ave.", + "phone_number" : "267-286-1455", + "category" : "PCA", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "7.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1607511503777, + "y" : 40.0021516214852, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 407, + "email" : null + }, + "geometry" : + { + "x" : -8366856.5456999969, + "y" : 4866254.9522 + } + }, + { + "attributes" : { + "objectid" : 8, + "site_name" : "Center in the Park", + "address" : "5818 Germantown Ave.", + "phone_number" : "215-848-7722", + "category" : "PCA", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "8.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1763186048069, + "y" : 40.0371367180718, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 408, + "email" : null + }, + "geometry" : + { + "x" : -8368589.5068000024, + "y" : 4871340.3545999937 + } + }, + { + "attributes" : { + "objectid" : 9, + "site_name" : "Philadelphia Housing Authority Emlen Arms", + "address" : "6733 Emlen St.", + "phone_number" : "215-684-5893", + "category" : "PCA", + "zip_code" : "19119", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "9.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1897048024025, + "y" : 40.0495524495191, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 409, + "email" : null + }, + "geometry" : + { + "x" : -8370079.6515000025, + "y" : 4873145.7213999955 + } + }, + { + "attributes" : { + "objectid" : 10, + "site_name" : "Northeast Older Adult Center", + "address" : "8101 Bustleton Ave.", + "phone_number" : "215-685-0576", + "category" : "PPR_Senior", + "zip_code" : "19152", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "10.0", + "status" : "Active", + "website" : "https://www.phila.gov/programs/programs-for-older-adults/", + "x" : -75.0512927167003, + "y" : 40.0626388703767, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 410, + "email" : null + }, + "geometry" : + { + "x" : -8354671.6886, + "y" : 4875048.9689000025 + } + }, + { + "attributes" : { + "objectid" : 11, + "site_name" : "Peter Brassi NE Senior Center", + "address" : "4744-46 Frankford Ave.", + "phone_number" : "215-831-2926", + "category" : "PCA", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "11.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.0832659675177, + "y" : 40.0179806232626, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 411, + "email" : null + }, + "geometry" : + { + "x" : -8358230.9345999984, + "y" : 4868555.5188000053 + } + }, + { + "attributes" : { + "objectid" : 12, + "site_name" : "Firehouse Active Adult Center", + "address" : "5331 Haverford Ave.", + "phone_number" : "215-472-6188", + "category" : "PCA", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "12.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.2275302718687, + "y" : 39.9663034111803, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 412, + "email" : null + }, + "geometry" : + { + "x" : -8374290.3634999972, + "y" : 4861046.7906000046 + } + }, + { + "attributes" : { + "objectid" : 13, + "site_name" : "West Philadelphia Senior Community Center", + "address" : "1016-26 N. 41st St.", + "phone_number" : "215-386-0379", + "category" : "PCA", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "13.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.2065871245062, + "y" : 39.9722447013998, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 413, + "email" : null + }, + "geometry" : + { + "x" : -8371958.9829999954, + "y" : 4861909.7744999975 + } + }, + { + "attributes" : { + "objectid" : 14, + "site_name" : "St. Edmonds Senior Community Center Catholic Housing and Community Services", + "address" : "2130 S 21st St.", + "phone_number" : "215-790-9530", + "category" : "PCA", + "zip_code" : "19145", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "14.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1814047320966, + "y" : 39.924705033699, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 414, + "email" : null + }, + "geometry" : + { + "x" : -8369155.6919000018, + "y" : 4855006.6453000037 + } + }, + { + "attributes" : { + "objectid" : 15, + "site_name" : "Marconi Older Adult Program", + "address" : "2433 S. 15th St.", + "phone_number" : "215-218-0800", + "category" : "PCA", + "zip_code" : "19145", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "15.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1722218478351, + "y" : 39.9198234694442, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 415, + "email" : null + }, + "geometry" : + { + "x" : -8368133.4578999979, + "y" : 4854298.0757000046 + } + }, + { + "attributes" : { + "objectid" : 16, + "site_name" : "Philadelphia Housing Authority Cassie L. Holly Apts. Satelite", + "address" : "2100 Dickinson St.", + "phone_number" : "215-684-3959", + "category" : "PCA", + "zip_code" : "19146", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "16.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1802037142061, + "y" : 39.9329219406382, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 416, + "email" : null + }, + "geometry" : + { + "x" : -8369021.9951999979, + "y" : 4856199.4611999905 + } + }, + { + "attributes" : { + "objectid" : 17, + "site_name" : "Philadelphia Housing Authority Wilson Park", + "address" : "2500 Jackson St.", + "phone_number" : "215-684-3959", + "category" : "PCA", + "zip_code" : "19145", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "17.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1895745925004, + "y" : 39.9256829325143, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 417, + "email" : null + }, + "geometry" : + { + "x" : -8370065.156600005, + "y" : 4855148.5955000017 + } + }, + { + "attributes" : { + "objectid" : 18, + "site_name" : "Philadelphia Senior Center - Avenue of the Arts and Asia-Pacific Senior Resource Center", + "address" : "509 S. Broad St.", + "phone_number" : "215-546-5879", + "category" : "PCA", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "18.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1650768349148, + "y" : 39.9442374074862, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 418, + "email" : null + }, + "geometry" : + { + "x" : -8367338.0786999986, + "y" : 4857842.3171999939 + } + }, + { + "attributes" : { + "objectid" : 19, + "site_name" : "Catholic Housing and Community Services Star Harbor Senior Center Satellite", + "address" : "4700 Springfield Ave.", + "phone_number" : "215-726-7468", + "category" : "PCA", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "19.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.215080705399, + "y" : 39.9467301704226, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 419, + "email" : null + }, + "geometry" : + { + "x" : -8372904.4840999926, + "y" : 4858204.2699000081 + } + }, + { + "attributes" : { + "objectid" : 20, + "site_name" : "Southwest Senior Center", + "address" : "6916 Elmwood Ave.", + "phone_number" : "215-937-1880", + "category" : "PCA", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "20.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.2363973399173, + "y" : 39.917636507278, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 420, + "email" : null + }, + "geometry" : + { + "x" : -8375277.4409999968, + "y" : 4853980.6498000035 + } + }, + { + "attributes" : { + "objectid" : 21, + "site_name" : "CHCS Norris Square Center", + "address" : "2121 N. Howard St", + "phone_number" : "215-423-7241", + "category" : "PCA", + "zip_code" : "19122", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "21.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.1334303130443, + "y" : 39.9825794487322, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 421, + "email" : null + }, + "geometry" : + { + "x" : -8363815.2039999962, + "y" : 4863411.095300003 + } + }, + { + "attributes" : { + "objectid" : 22, + "site_name" : "The Center at Journey’s Way", + "address" : "403 Rector St.", + "phone_number" : "215-487-1750", + "category" : "PCA", + "zip_code" : "19128", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "22.0", + "status" : "Active", + "website" : "https://www.pcacares.org/", + "x" : -75.2140271953698, + "y" : 40.0276301147186, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 422, + "email" : null + }, + "geometry" : + { + "x" : -8372787.2078999951, + "y" : 4869958.2251999984 + } + }, + { + "attributes" : { + "objectid" : 29, + "site_name" : "Mizpah SDA", + "address" : "4355 Paul St", + "phone_number" : "215-535-5995", + "category" : "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "29.0", + "status" : "Active", + "website" : null, + "x" : -75.0862700128796, + "y" : 40.0115614247471, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:30", + "hours_tues_end1" : "12:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 429, + "email" : null + }, + "geometry" : + { + "x" : -8358565.3434000043, + "y" : 4867622.4964999994 + } + }, + { + "attributes" : { + "objectid" : 31, + "site_name" : "Parkside Association of Philadelphia", + "address" : "1719 N 52nd St, Suite G", + "phone_number" : null, + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "31.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2240700000219, + "y" : 39.9815280001684, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "08:00", + "hours_thurs_end1" : "11:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 431, + "email" : null + }, + "geometry" : + { + "x" : -8373905.1678000037, + "y" : 4863258.3418000033 + } + }, + { + "attributes" : { + "objectid" : 32, + "site_name" : "Upper Room Missionary Baptist Church", + "address" : "7236 Ogontz Ave", + "phone_number" : "(215)549-7311/ 267-593-4989 (Deacon Michael Bennett)", + "category" : "PHILABUNDANCE", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "32.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1550984996558, + "y" : 40.064742000079, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "11:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:30", + "hours_wed_end1" : "10:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:30", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "11:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 432, + "email" : null + }, + "geometry" : + { + "x" : -8366227.2955000009, + "y" : 4875354.8755000057 + } + }, + { + "attributes" : { + "objectid" : 39, + "site_name" : "SEAMAAC", + "address" : "1711 S Broad St", + "phone_number" : "215-467-0690", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "39.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1683329996477, + "y" : 39.9287159997525, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "14:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 438, + "email" : null + }, + "geometry" : + { + "x" : -8367700.5533000045, + "y" : 4855588.8834999977 + } + }, + { + "attributes" : { + "objectid" : 40, + "site_name" : "Keep It Real CDC", + "address" : "5900 Lansdowne Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "40.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2386679997829, + "y" : 39.9759120002766, + "hours_mon_start1" : "07:30", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:30", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:30", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:30", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 439, + "email" : null + }, + "geometry" : + { + "x" : -8375530.2097000005, + "y" : 4862442.4942000043 + } + }, + { + "attributes" : { + "objectid" : 52, + "site_name" : "Salvation Army Temple", + "address" : "1340 Brown St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "52.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1594046143944, + "y" : 39.9678598706593, + "hours_mon_start1" : "08:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "08:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "08:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "08:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 451, + "email" : null + }, + "geometry" : + { + "x" : -8366706.6500000013, + "y" : 4861272.8621000005 + } + }, + { + "attributes" : { + "objectid" : 55, + "site_name" : "Roxborough Presbyterian Church", + "address" : "8232 Ridge Ave", + "phone_number" : "(215) 483-2762", + "category" : "PHILABUNDANCE", + "zip_code" : "19128", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "55.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.237795308044, + "y" : 40.0591609999051, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 454, + "email" : null + }, + "geometry" : + { + "x" : -8375433.0621000053, + "y" : 4874543.1228 + } + }, + { + "attributes" : { + "objectid" : 59, + "site_name" : "Young Chances Foundation", + "address" : "2703 Tasker St", + "phone_number" : "267-585-2923", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19145", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "59.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1898384995645, + "y" : 39.9333960000519, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "14:00", + "hours_thurs_end1" : "18:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on the second and fourth Thursday of the month", + "hours_fri_start1" : "14:00", + "hours_fri_end1" : "18:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : "Open on the second and fourth Friday of the month", + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 458, + "email" : null + }, + "geometry" : + { + "x" : -8370094.534599998, + "y" : 4856268.2829000019 + } + }, + { + "attributes" : { + "objectid" : 60, + "site_name" : "Feast of Justice (Tyson Ave)", + "address" : "3101 Tyson Ave", + "phone_number" : "215-268-3510; registration@feastofjustice.org", + "category" : "PHILABUNDANCE/SHARE FOOD PROGRAM", + "zip_code" : "19149", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "60.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0529172659927, + "y" : 40.0372372507607, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "11:00", + "hours_tues_start2" : "11:00", + "hours_tues_end2" : "12:00", + "hours_tues_exceptions" : "Some hours are by appointment only. Contact the site for more information.", + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : "16:00", + "hours_wed_end2" : "19:00", + "hours_wed_exceptions" : "Some hours are by appointment only. Contact the site for more information.", + "hours_thurs_start1" : "17:30", + "hours_thurs_end1" : "19:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : "13:00", + "hours_sat_end2" : "16:00", + "hours_sat_exceptions" : "Some hours are by appointment only. Contact the site for more information.", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 459, + "email" : "registration@feastofjustice.org" + }, + "geometry" : + { + "x" : -8354852.5325999986, + "y" : 4871354.971699995 + } + }, + { + "attributes" : { + "objectid" : 1583, + "site_name" : "Mighty Writers North", + "address" : "Vaux Building, W. Seybert St & N. 23rd St", + "phone_number" : "610-263-5379", + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.174260000349, + "y" : 39.9762819997186, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "14:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "12:00", + "hours_thurs_end1" : "14:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 734, + "email" : null + }, + "geometry" : + { + "x" : -8368360.3440000024, + "y" : 4862496.2427000087 + } + }, + { + "attributes" : { + "objectid" : 1625, + "site_name" : "Mighty Writers El Futuro", + "address" : "1025 S. 9th St.", + "phone_number" : "215-602-0236", + "category" : "PHILABUNDANCE", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1582622996111, + "y" : 39.9369036002963, + "hours_mon_start1" : "11:30", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:30", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:30", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:30", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:30", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 776, + "email" : null + }, + "geometry" : + { + "x" : -8366579.4880999969, + "y" : 4856777.5145000014 + } + }, + { + "attributes" : { + "objectid" : 151, + "site_name" : "Broad Street Love", + "address" : "315 S Broad Street", + "phone_number" : null, + "category" : "Office of Homeless Services", + "zip_code" : "19107", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : "151.0", + "status" : "Active", + "website" : null, + "x" : -75.1649107348479, + "y" : 39.9463593305455, + "hours_mon_start1" : "11:30", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:30", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:30", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:30", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:30", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 849, + "email" : null + }, + "geometry" : + { + "x" : -8367319.5885251295, + "y" : 4858150.4225908956 + } + }, + { + "attributes" : { + "objectid" : 152, + "site_name" : "Hub of Hope", + "address" : "1401 JFK Pkway, Suburban Station Concourse (lower level)", + "phone_number" : null, + "category" : "Office of Homeless Services", + "zip_code" : "19102", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : "152.0", + "status" : "Active", + "website" : null, + "x" : -75.1644451017913, + "y" : 39.9542082054843, + "hours_mon_start1" : "13:00", + "hours_mon_end1" : "14:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "13:00", + "hours_tues_end1" : "14:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "13:00", + "hours_wed_end1" : "14:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:00", + "hours_thurs_end1" : "14:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "13:00", + "hours_fri_end1" : "14:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "13:00", + "hours_sat_end1" : "14:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "13:00", + "hours_sun_end1" : "14:30", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 850, + "email" : null + }, + "geometry" : + { + "x" : -8367267.7544903727, + "y" : 4859290.17029137 + } + }, + { + "attributes" : { + "objectid" : 158, + "site_name" : "Juniata Park Older Adult Center", + "address" : "1251 E. Sedgley Avenue", + "phone_number" : "215-685-1490", + "category" : "PPR_Senior", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "154.0", + "status" : "Active", + "website" : "https://www.phila.gov/programs/programs-for-older-adults/", + "x" : -75.1044433256204, + "y" : 40.0036572029384, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 852, + "email" : null + }, + "geometry" : + { + "x" : -8360588.3873203369, + "y" : 4866473.748500512 + } + }, + { + "attributes" : { + "objectid" : 159, + "site_name" : "West Oak Lane Senior Center", + "address" : "7210 Ogontz Avenue", + "phone_number" : null, + "category" : "PPR_Senior", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "155.0", + "status" : "Active", + "website" : "https://www.phila.gov/programs/programs-for-older-adults/", + "x" : -75.1542445423279, + "y" : 40.0643925853223, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 853, + "email" : null + }, + "geometry" : + { + "x" : -8366132.2334051011, + "y" : 4875304.0514087332 + } + }, + { + "attributes" : { + "objectid" : 160, + "site_name" : "South Philly Older Adult Center", + "address" : "1430 E. Passyunk Avenue", + "phone_number" : "215-685-1697", + "category" : "PPR_Senior", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Senior Meal Site", + "site_key" : "156.0", + "status" : "Active", + "website" : "https://www.phila.gov/programs/programs-for-older-adults/", + "x" : -75.1624560997666, + "y" : 39.9315061772274, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 854, + "email" : null + }, + "geometry" : + { + "x" : -8367046.3397977976, + "y" : 4855993.9302120628 + } + }, + { + "attributes" : { + "objectid" : 162, + "site_name" : "Iglesia Christiana Avivamiento", + "address" : "5500 Tabor Rd", + "phone_number" : "215-856-3932", + "category" : "PHILABUNDANCE", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "158.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1040875783119, + "y" : 40.0364108953804, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 856, + "email" : null + }, + "geometry" : + { + "x" : -8360548.785711105, + "y" : 4871234.8231684072 + } + }, + { + "attributes" : { + "objectid" : 164, + "site_name" : "Richard & Friends", + "address" : "1916 E Venango", + "phone_number" : null, + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "160.0", + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1027403134918, + "y" : 39.9996917304216, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 858, + "email" : null + }, + "geometry" : + { + "x" : -8360398.8088773657, + "y" : 4865897.4827092821 + } + }, + { + "attributes" : { + "objectid" : 200, + "site_name" : "Faith Chapel Church FCDC", + "address" : "108 E. Price St.", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "195.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1738733808022, + "y" : 40.0377994804202, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 892, + "email" : null + }, + "geometry" : + { + "x" : -8368317.3057089243, + "y" : 4871436.71831577 + } + }, + { + "attributes" : { + "objectid" : 201, + "site_name" : "New Era Baptist Church", + "address" : "6618 Wyncote Ave.", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "196.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1539733052039, + "y" : 40.0555689272364, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "10:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 893, + "email" : null + }, + "geometry" : + { + "x" : -8366102.0394265736, + "y" : 4874020.6934275655 + } + }, + { + "attributes" : { + "objectid" : 205, + "site_name" : "10th St. Market (North 10)", + "address" : "3890 N. 10th St., 2nd Fl", + "phone_number" : "267-908-9000 ext 232", + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : "200.0", + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1442911997158, + "y" : 40.011658490177, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 897, + "email" : null + }, + "geometry" : + { + "x" : -8365024.2323738309, + "y" : 4867636.60418274 + } + }, + { + "attributes" : { + "objectid" : 1758, + "site_name" : "Grace Cafe", + "address" : "55 N Broad St", + "phone_number" : "215-568-6250", + "category" : "Office of Homeless Services", + "zip_code" : "19107", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1629413548718, + "y" : 39.9541376542775, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "17:00", + "hours_sun_end1" : "18:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 901, + "email" : null + }, + "geometry" : + { + "x" : -8367100.3581490135, + "y" : 4859279.9248551112 + } + }, + { + "attributes" : { + "objectid" : 1759, + "site_name" : "Chosen 300", + "address" : "1116 Spring Garden St.", + "phone_number" : "215-765-9806", + "category" : "Office of Homeless Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1568948175558, + "y" : 39.9615472602088, + "hours_mon_start1" : "18:00", + "hours_mon_end1" : "19:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "18:00", + "hours_wed_end1" : "19:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "18:00", + "hours_fri_end1" : "19:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "17:00", + "hours_sat_end1" : "18:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 902, + "email" : null + }, + "geometry" : + { + "x" : -8366427.260693932, + "y" : 4860356.00451808 + } + }, + { + "attributes" : { + "objectid" : 1760, + "site_name" : "Chosen 300 West", + "address" : "3959 Lancaster Ave", + "phone_number" : "215-765-9806", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.2020146023491, + "y" : 39.963143570813, + "hours_mon_start1" : "18:00", + "hours_mon_end1" : "19:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "18:00", + "hours_fri_end1" : "19:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 903, + "email" : null + }, + "geometry" : + { + "x" : -8371449.9721618248, + "y" : 4860587.8482238129 + } + }, + { + "attributes" : { + "objectid" : 1761, + "site_name" : "UC Hospitality Coalition", + "address" : "3637 Chestnut St", + "phone_number" : "610-639-4395", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1962020877731, + "y" : 39.9552201369182, + "hours_mon_start1" : "18:00", + "hours_mon_end1" : "19:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 904, + "email" : null + }, + "geometry" : + { + "x" : -8370802.9259989969, + "y" : 4859437.1239938224 + } + }, + { + "attributes" : { + "objectid" : 1763, + "site_name" : "UC Hospitality Coalition", + "address" : "38th and Ludlow St", + "phone_number" : "610-639-4395", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1980295659639, + "y" : 39.9557889716924, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "18:00", + "hours_wed_end1" : "19:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 905, + "email" : null + }, + "geometry" : + { + "x" : -8371006.3599406332, + "y" : 4859519.7317075636 + } + }, + { + "attributes" : { + "objectid" : 1764, + "site_name" : "UC Hospitality Coalition", + "address" : "3619 Locust Walk", + "phone_number" : "610-639-4395", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1958238959745, + "y" : 39.9522669169356, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "18:00", + "hours_thurs_end1" : "19:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 906, + "email" : null + }, + "geometry" : + { + "x" : -8370760.8258805536, + "y" : 4859008.2604986979 + } + }, + { + "attributes" : { + "objectid" : 1765, + "site_name" : "UC Hospitality Coalition", + "address" : "401 S 42nd St", + "phone_number" : "610-639-4395", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.2068928699972, + "y" : 39.9509410940945, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "18:00", + "hours_fri_end1" : "19:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 907, + "email" : null + }, + "geometry" : + { + "x" : -8371993.0184323648, + "y" : 4858815.7319248542 + } + }, + { + "attributes" : { + "objectid" : 1767, + "site_name" : "Face to Face", + "address" : "123 E. Price St", + "phone_number" : "215-438-7939", + "category" : "Office of Homeless Services", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1740966621666, + "y" : 40.0383687103843, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "14:45", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "14:45", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "14:45", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "14:45", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "09:00", + "hours_sun_end1" : "14:45", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 909, + "email" : null + }, + "geometry" : + { + "x" : -8368342.161276713, + "y" : 4871519.48344284 + } + }, + { + "attributes" : { + "objectid" : 1768, + "site_name" : "Salvation Army", + "address" : "1920 E Allegheny Ave", + "phone_number" : "215-739-2365", + "category" : "Office of Homeless Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1121546387226, + "y" : 39.9946369543148, + "hours_mon_start1" : "11:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "18:00", + "hours_thurs_end1" : "21:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 910, + "email" : null + }, + "geometry" : + { + "x" : -8361446.8067682218, + "y" : 4865162.9669228466 + } + }, + { + "attributes" : { + "objectid" : 1769, + "site_name" : "Our Brothers Place", + "address" : "907 Hamilton St", + "phone_number" : "215-985-1600", + "category" : "Office of Homeless Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1537807497446, + "y" : 39.9602284858481, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "12:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 911, + "email" : null + }, + "geometry" : + { + "x" : -8366080.6042508949, + "y" : 4860164.4734861637 + } + }, + { + "attributes" : { + "objectid" : 1770, + "site_name" : "Church of the Advocate", + "address" : "1801 Diamond St", + "phone_number" : "215-978-8000", + "category" : "Office of Homeless Services", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1633430156685, + "y" : 39.9858410546873, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 912, + "email" : null + }, + "geometry" : + { + "x" : -8367145.0708243726, + "y" : 4863884.9534310326 + } + }, + { + "attributes" : { + "objectid" : 1771, + "site_name" : "Mt. Tabor AME Church", + "address" : "961 N. 7th St", + "phone_number" : "215-574-1310", + "category" : "Office of Homeless Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1482305280623, + "y" : 39.9690817750412, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 913, + "email" : null + }, + "geometry" : + { + "x" : -8365462.75639943, + "y" : 4861450.343990013 + } + }, + { + "attributes" : { + "objectid" : 1772, + "site_name" : "Bethel Presbyterian Church", + "address" : "1900 W York St", + "phone_number" : "215-228-0328", + "category" : "Office of Homeless Services", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1638490311633, + "y" : 39.9903258701712, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "14:00", + "hours_sat_end1" : "16:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 914, + "email" : null + }, + "geometry" : + { + "x" : -8367201.4002115875, + "y" : 4864536.5608918658 + } + }, + { + "attributes" : { + "objectid" : 1773, + "site_name" : "St. John's Hospice", + "address" : "1221 Race St", + "phone_number" : "215-563-7763", + "category" : "Office of Homeless Services", + "zip_code" : "19107", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1599856443517, + "y" : 39.9559930011262, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : "16:00", + "hours_mon_end2" : "16:30", + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : "16:00", + "hours_wed_end2" : "16:30", + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "12:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : "16:00", + "hours_thurs_end2" : "17:00", + "hours_thurs_exceptions" : "Open on third Thursday of the month from 4-5 pm", + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : "16:00", + "hours_fri_end2" : "16:30", + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 915, + "email" : null + }, + "geometry" : + { + "x" : -8366771.3299589846, + "y" : 4859549.3615773628 + } + }, + { + "attributes" : { + "objectid" : 1779, + "site_name" : "FAWN Food Pantry at Tilden Middle School", + "address" : "6601 Elmwood Ave (enter by parking lot on 66th St.)", + "phone_number" : "445-216-9766", + "category" : "PHILABUNDANCE", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2323380649246, + "y" : 39.9216153588454, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 921, + "email" : null + }, + "geometry" : + { + "x" : -8374825.56457482, + "y" : 4854558.1664504 + } + }, + { + "attributes" : { + "objectid" : 1781, + "site_name" : "Community Center at Visitation", + "address" : "2646 Kensington Ave", + "phone_number" : "215-426-9422", + "category" : "PHILABUNDANCE", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1262197898038, + "y" : 39.9897495856365, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 923, + "email" : null + }, + "geometry" : + { + "x" : -8363012.5322245117, + "y" : 4864452.8290088633 + } + }, + { + "attributes" : { + "objectid" : 1782, + "site_name" : "5th District and Friends at John F. Street Community Center", + "address" : "1100 Poplar St.", + "phone_number" : "215-645-2833", + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1529737318182, + "y" : 39.9685130387533, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "14:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 924, + "email" : null + }, + "geometry" : + { + "x" : -8365990.7674262663, + "y" : 4861367.734519884 + } + }, + { + "attributes" : { + "objectid" : 1784, + "site_name" : "Catholic Social Services Southwest Family Service Center", + "address" : "6214 Grays Ave", + "phone_number" : "215-724-8550", + "category" : "Nutritional Development Services", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.2282328616182, + "y" : 39.9256578737702, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 926, + "email" : null + }, + "geometry" : + { + "x" : -8374368.5754331471, + "y" : 4855144.9579881914 + } + }, + { + "attributes" : { + "objectid" : 1785, + "site_name" : "Catholic Social Services Northeast Family Service Center", + "address" : "7340 Jackson St", + "phone_number" : null, + "category" : "Nutritional Development Services", + "zip_code" : "19136", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.0353879551563, + "y" : 40.0332363771882, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 927, + "email" : null + }, + "geometry" : + { + "x" : -8352901.1786437323, + "y" : 4870773.2753641875 + } + }, + { + "attributes" : { + "objectid" : 1786, + "site_name" : "Dreuding Center", + "address" : "1321 N. Lawrence St. Door Number 10", + "phone_number" : "215-787-3263", + "category" : "Nutritional Development Services", + "zip_code" : "19122", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1434718701725, + "y" : 39.9720257786128, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "15:00", + "hours_thurs_end1" : "17:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 928, + "email" : null + }, + "geometry" : + { + "x" : -8364933.0250262795, + "y" : 4861877.9742105426 + } + }, + { + "attributes" : { + "objectid" : 1787, + "site_name" : "Lutheran Settlement Food Cupboard", + "address" : "1340 Frankford Ave", + "phone_number" : "215-426-8610", + "category" : "Nutritional Development Services", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1345928643168, + "y" : 39.9713738289625, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 929, + "email" : null + }, + "geometry" : + { + "x" : -8363944.618615672, + "y" : 4861783.27390183 + } + }, + { + "attributes" : { + "objectid" : 1788, + "site_name" : "Mission of St. Joan of Arc Food Cupboard", + "address" : "3550 Frankford Ave", + "phone_number" : "215-535-4641", + "category" : "Nutritional Development Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1023081023546, + "y" : 39.9978300871201, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 930, + "email" : null + }, + "geometry" : + { + "x" : -8360350.6953536579, + "y" : 4865626.9586871834 + } + }, + { + "attributes" : { + "objectid" : 1789, + "site_name" : "Our Lady of Hope", + "address" : "5200 N. Broad St", + "phone_number" : "215-868-1390", + "category" : "Nutritional Development Services", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1465094718835, + "y" : 40.0324039164571, + "hours_mon_start1" : "14:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 931, + "email" : null + }, + "geometry" : + { + "x" : -8365271.169301982, + "y" : 4870652.2462465959 + } + }, + { + "attributes" : { + "objectid" : 1790, + "site_name" : "Rodeph Shalom", + "address" : "1339 Green St.", + "phone_number" : "215-627-6747", + "category" : "Nutritional Development Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.160800772828, + "y" : 39.9636294160772, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:15", + "hours_wed_end1" : "10:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 932, + "email" : null + }, + "geometry" : + { + "x" : -8366862.0696458956, + "y" : 4860658.4121111277 + } + }, + { + "attributes" : { + "objectid" : 1791, + "site_name" : "St. Barbara", + "address" : "5359 Lebanon Ave (side entrance)", + "phone_number" : "215-473-1044", + "category" : "Nutritional Development Services", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.2318588950946, + "y" : 39.9876916813117, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "12:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 933, + "email" : null + }, + "geometry" : + { + "x" : -8374772.2236333406, + "y" : 4864153.8293457311 + } + }, + { + "attributes" : { + "objectid" : 1792, + "site_name" : "Padre Pio Prayer Center Food Distribution (St. Joachim)", + "address" : "1527 Church St", + "phone_number" : "215-288-3081", + "category" : "Nutritional Development Services", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.0897109299385, + "y" : 40.0118811000791, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "11:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 934, + "email" : null + }, + "geometry" : + { + "x" : -8358948.3845348628, + "y" : 4867668.9588246662 + } + }, + { + "attributes" : { + "objectid" : 1799, + "site_name" : "McClure Elementary School", + "address" : "600 W Hunting Park Ave", + "phone_number" : "215-900-4286", + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1375770135384, + "y" : 40.0151658377538, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "14:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 939, + "email" : null + }, + "geometry" : + { + "x" : -8364276.8125874726, + "y" : 4868146.3825198682 + } + }, + { + "attributes" : { + "objectid" : 1802, + "site_name" : "Bebashi", + "address" : "1235 Spring Garden St", + "phone_number" : "215-769-3561", + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1588581801891, + "y" : 39.9621503368767, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 942, + "email" : null + }, + "geometry" : + { + "x" : -8366645.8212225148, + "y" : 4860443.5930573111 + } + }, + { + "attributes" : { + "objectid" : 1806, + "site_name" : "Better Tomorrows - West Poplar Apartments", + "address" : "637 N. 13th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1585105970308, + "y" : 39.9646325480805, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 946, + "email" : null + }, + "geometry" : + { + "x" : -8366607.1284423247, + "y" : 4860804.1080140127 + } + }, + { + "attributes" : { + "objectid" : 1990, + "site_name" : "Gompers School", + "address" : "5701 Wynnefield Ave", + "phone_number" : "267-593-5590", + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2379696330734, + "y" : 39.9923548397912, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:30", + "hours_wed_end1" : "12:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1004, + "email" : null + }, + "geometry" : + { + "x" : -8375452.4678735109, + "y" : 4864831.3678432545 + } + }, + { + "attributes" : { + "objectid" : 1952, + "site_name" : "Dobbins Technical High School", + "address" : "2150 W Lehigh Ave.", + "phone_number" : "215-301-2667; 267-312-5229", + "category" : "PHILABUNDANCE", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.166715537836, + "y" : 39.9951816474292, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:30", + "hours_wed_end1" : "13:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1101, + "email" : null + }, + "geometry" : + { + "x" : -8367520.4982747482, + "y" : 4865242.1143413857 + } + }, + { + "attributes" : { + "objectid" : 1958, + "site_name" : "Gideon School", + "address" : "2817 W Glenwood Ave.", + "phone_number" : "215-301-5384", + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1805905188846, + "y" : 39.9843399898756, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "13:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1107, + "email" : null + }, + "geometry" : + { + "x" : -8369065.0540998448, + "y" : 4863666.8703944543 + } + }, + { + "attributes" : { + "objectid" : 2032, + "site_name" : "Temple University Hospital, Episcopal Campus", + "address" : "100 E. Lehigh Ave.", + "phone_number" : "215-707-0305", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1292128279476, + "y" : 39.9900143859633, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "14:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1225, + "email" : null + }, + "geometry" : + { + "x" : -8363345.7157066036, + "y" : 4864491.3033702141 + } + }, + { + "attributes" : { + "objectid" : 2033, + "site_name" : "New Hope AME Zion Church", + "address" : "5802 Musgrave St.", + "phone_number" : "215-668-9703", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1689202502226, + "y" : 40.0440040815861, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on first and third Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1227, + "email" : null + }, + "geometry" : + { + "x" : -8367765.9257349707, + "y" : 4872338.89469034 + } + }, + { + "attributes" : { + "objectid" : 2035, + "site_name" : "New Disciples Ministries", + "address" : "6301 Kingsessing Ave.", + "phone_number" : "267-593-1158", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2358147107232, + "y" : 39.9288476468292, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "14:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on second and fourth Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1231, + "email" : null + }, + "geometry" : + { + "x" : -8375212.5830147872, + "y" : 4855607.99417686 + } + }, + { + "attributes" : { + "objectid" : 2037, + "site_name" : "Feed Philly Now", + "address" : "2819 N Mascher St", + "phone_number" : "267-702-0134", + "category" : "Small Things Philly", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : -75.1321818378598, + "y" : 39.9932267337329, + "hours_mon_start1" : "16:00", + "hours_mon_end1" : "18:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "16:00", + "hours_tues_end1" : "18:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "16:00", + "hours_wed_end1" : "18:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "16:00", + "hours_thurs_end1" : "18:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "16:00", + "hours_fri_end1" : "18:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1235, + "email" : null + }, + "geometry" : + { + "x" : -8363676.2243781909, + "y" : 4864958.055720102 + } + }, + { + "attributes" : { + "objectid" : 2174, + "site_name" : "Philly Dream Center", + "address" : "Kensington Ave. and E. Allegheny Ave.", + "phone_number" : "215-856-3250", + "category" : "Office of Homeless Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1135473956019, + "y" : 39.996578551812, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1236, + "email" : null + }, + "geometry" : + { + "x" : -8361601.847754823, + "y" : 4865445.0964327259 + } + }, + { + "attributes" : { + "objectid" : 2038, + "site_name" : "Philadelphia Masjid", + "address" : "4700 Wyalusing Ave.", + "phone_number" : "215-475-7597", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.2162266220973, + "y" : 39.9698682723065, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1237, + "email" : null + }, + "geometry" : + { + "x" : -8373032.0469633387, + "y" : 4861564.5845753094 + } + }, + { + "attributes" : { + "objectid" : 2041, + "site_name" : "CDA Philadelphia Ministry", + "address" : "301 Saint Vincent St", + "phone_number" : "215-888-0272", + "category" : "Small Things Philly", + "zip_code" : "19111", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : -75.0877134385927, + "y" : 40.0607884572586, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "14:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1243, + "email" : null + }, + "geometry" : + { + "x" : -8358726.0248153843, + "y" : 4874779.828503429 + } + }, + { + "attributes" : { + "objectid" : 2042, + "site_name" : "Concilio", + "address" : "141 E Hunting Park Ave", + "phone_number" : "215-627-3100 Ext 258", + "category" : "Small Things Philly", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : -75.1237779556436, + "y" : 40.0137182907762, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1245, + "email" : null + }, + "geometry" : + { + "x" : -8362740.7084891954, + "y" : 4867935.9844311485 + } + }, + { + "attributes" : { + "objectid" : 2043, + "site_name" : "New Covenant Church Cheltenham", + "address" : "4201 Princeton Ave", + "phone_number" : "267-702-0134", + "category" : "Small Things Philly", + "zip_code" : "19135", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : -75.0431371364011, + "y" : 40.0332681563206, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1247, + "email" : null + }, + "geometry" : + { + "x" : -8353763.8135539684, + "y" : 4870777.8956718817 + } + }, + { + "attributes" : { + "objectid" : 2044, + "site_name" : "OCCCDA (Howell St.)", + "address" : "900 E Howell St", + "phone_number" : "215-586-9551", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19149", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0910929659985, + "y" : 40.0382907748535, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on first, second, third, and fifth Thursdays of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1249, + "email" : null + }, + "geometry" : + { + "x" : -8359102.23208532, + "y" : 4871508.1517003942 + } + }, + { + "attributes" : { + "objectid" : 2045, + "site_name" : "Firm Hope Baptist Church", + "address" : "2311 E Auburn St", + "phone_number" : "215 634 2486", + "category" : "Small Things Philly", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : -75.1151602319978, + "y" : 39.9851647464177, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "14:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1251, + "email" : null + }, + "geometry" : + { + "x" : -8361781.3878811486, + "y" : 4863786.6950145913 + } + }, + { + "attributes" : { + "objectid" : 2047, + "site_name" : "South Philadelphia High School", + "address" : "2101 Broad St", + "phone_number" : "215-847-5154", + "category" : "PHILABUNDANCE", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1687545491827, + "y" : 39.9234226841309, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "14:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on the second and fourth Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1253, + "email" : null + }, + "geometry" : + { + "x" : -8367747.4799795831, + "y" : 4854820.5045969374 + } + }, + { + "attributes" : { + "objectid" : 2048, + "site_name" : "Allegheny West Foundation", + "address" : "3101 N. 22nd St.", + "phone_number" : "215-225-1019", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1658706040358, + "y" : 40.0020560014599, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1254, + "email" : null + }, + "geometry" : + { + "x" : -8367426.4406743562, + "y" : 4866241.0565303741 + } + }, + { + "attributes" : { + "objectid" : 2050, + "site_name" : "Old First Reformed United Church of Christ", + "address" : "151 N. 4th St.", + "phone_number" : "215-922-4566", + "category" : "Office of Homeless Services", + "zip_code" : "19106", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1462040327961, + "y" : 39.9537640959331, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "10:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "17:00", + "hours_sun_end1" : "18:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1256, + "email" : null + }, + "geometry" : + { + "x" : -8365237.1679783035, + "y" : 4859225.6769413771 + } + }, + { + "attributes" : { + "objectid" : 2052, + "site_name" : "South Philly Community Fridge at BOK Building", + "address" : "1901 S. 9th St.", + "phone_number" : "southphlcommunityfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://southphillyfridge.com/", + "x" : -75.1600160318808, + "y" : 39.9252878451299, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1258, + "email" : null + }, + "geometry" : + { + "x" : -8366774.7126832493, + "y" : 4855091.2450143853 + } + }, + { + "attributes" : { + "objectid" : 2053, + "site_name" : "Bebashi Community Fridge", + "address" : "1235 Spring Garden St.", + "phone_number" : "215-769-3561", + "category" : "Community Refrigerators", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.bebashi.org/food-and-support/", + "x" : -75.158600527611, + "y" : 39.9621605484304, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1259, + "email" : null + }, + "geometry" : + { + "x" : -8366617.1394687183, + "y" : 4860445.0761508057 + } + }, + { + "attributes" : { + "objectid" : 2056, + "site_name" : "East Falls Community Fridge at Vault + Vine", + "address" : "3507 Midvale Ave.", + "phone_number" : "eastfallscommunityfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19129", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://eastfallscommunityfridge.com/", + "x" : -75.1925968635794, + "y" : 40.0136528708565, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1264, + "email" : null + }, + "geometry" : + { + "x" : -8370401.5942775579, + "y" : 4867926.4758806722 + } + }, + { + "attributes" : { + "objectid" : 2059, + "site_name" : "Fridges and Family at the People's Kitchen", + "address" : "1149 S. 9th St.", + "phone_number" : "southphlcommunityfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://southphillyfridge.com/", + "x" : -75.1586757977021, + "y" : 39.9350135232846, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1268, + "email" : null + }, + "geometry" : + { + "x" : -8366625.5184969325, + "y" : 4856503.1108486289 + } + }, + { + "attributes" : { + "objectid" : 2060, + "site_name" : "Germantown Community Fridge", + "address" : "20 W. Armat St.", + "phone_number" : "germantownfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.germantowncommunityfridge.com/", + "x" : -75.1740698842091, + "y" : 40.0346483763818, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1269, + "email" : null + }, + "geometry" : + { + "x" : -8368339.1803681189, + "y" : 4870978.5653220909 + } + }, + { + "attributes" : { + "objectid" : 2061, + "site_name" : "Germantown Community Fridge", + "address" : "19 E. High St.", + "phone_number" : "germantownfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.germantowncommunityfridge.com/", + "x" : -75.1772918542851, + "y" : 40.0397807806651, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1270, + "email" : null + }, + "geometry" : + { + "x" : -8368697.84843633, + "y" : 4871724.7991877934 + } + }, + { + "attributes" : { + "objectid" : 2062, + "site_name" : "South Philly Community Fridge at Mifflin Sq. Park", + "address" : "516 Wolf St.", + "phone_number" : "southphlcommunityfridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://southphillyfridge.com/", + "x" : -75.1563769646693, + "y" : 39.9200585143654, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1271, + "email" : null + }, + "geometry" : + { + "x" : -8366369.6135743028, + "y" : 4854332.19182064 + } + }, + { + "attributes" : { + "objectid" : 2063, + "site_name" : "Umoja Community Fridge at North Philly Peace Park", + "address" : "2226 West Jefferson St.", + "phone_number" : "umojafridge@gmail.com", + "category" : "Community Refrigerators", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.instagram.com/umojacommunityfridge/?utm_medium=copy_link", + "x" : -75.1721073850862, + "y" : 39.9774645446481, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1272, + "email" : null + }, + "geometry" : + { + "x" : -8368120.7159650763, + "y" : 4862668.0287378309 + } + }, + { + "attributes" : { + "objectid" : 2066, + "site_name" : "Bethany Indonesian Church", + "address" : "1709 South Broad St", + "phone_number" : "(215) 833-2923 / (267) 773-2208", + "category" : "PHILABUNDANCE", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1683678069376, + "y" : 39.9289412552884, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "10:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1273, + "email" : null + }, + "geometry" : + { + "x" : -8367704.4280297915, + "y" : 4855621.5829629041 + } + }, + { + "attributes" : { + "objectid" : 2067, + "site_name" : "Feast for Friends", + "address" : "6001 Colgate St.", + "phone_number" : "(215) 921-1689", + "category" : "PHILABUNDANCE", + "zip_code" : "19111", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1001490488377, + "y" : 40.0446476669104, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:30", + "hours_tues_end1" : "11:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1275, + "email" : null + }, + "geometry" : + { + "x" : -8360110.350615561, + "y" : 4872432.4795347648 + } + }, + { + "attributes" : { + "objectid" : 2068, + "site_name" : "John Welsh School", + "address" : "2331 N. 4th Street", + "phone_number" : "215-400-7130", + "category" : "PHILABUNDANCE", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1392474747912, + "y" : 39.986604354101, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:00", + "hours_wed_end1" : "10:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1276, + "email" : null + }, + "geometry" : + { + "x" : -8364462.7674835231, + "y" : 4863995.8516489938 + } + }, + { + "attributes" : { + "objectid" : 2069, + "site_name" : "Kingdom Restoration Ministries", + "address" : "5310 N. 8th St.", + "phone_number" : "267-336-7815", + "category" : "PHILABUNDANCE", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1367095183287, + "y" : 40.0331678707606, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on the third Saturday of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1279, + "email" : null + }, + "geometry" : + { + "x" : -8364180.243462462, + "y" : 4870763.3153521316 + } + }, + { + "attributes" : { + "objectid" : 2070, + "site_name" : "Mi Salud Wellness Center", + "address" : "200 E. Wyoming Ave.", + "phone_number" : "215-220-4421", + "category" : "PHILABUNDANCE", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1222213148709, + "y" : 40.0210041382369, + "hours_mon_start1" : "17:30", + "hours_mon_end1" : "19:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "17:30", + "hours_wed_end1" : "19:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1280, + "email" : null + }, + "geometry" : + { + "x" : -8362567.4240310313, + "y" : 4868995.0132428417 + } + }, + { + "attributes" : { + "objectid" : 2071, + "site_name" : "Project HOME", + "address" : "1845 N 23rd St.", + "phone_number" : "215-235-3110", + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1717349771278, + "y" : 39.9831244260181, + "hours_mon_start1" : "10:30", + "hours_mon_end1" : "12:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "17:00", + "hours_tues_end1" : "19:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on the third Tuesday of the month", + "hours_wed_start1" : "10:30", + "hours_wed_end1" : "12:30", + "hours_wed_start2" : "17:00", + "hours_wed_end2" : "19:00", + "hours_wed_exceptions" : "Open on the third Wednesday evening of the month", + "hours_thurs_start1" : "10:30", + "hours_thurs_end1" : "12:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1281, + "email" : null + }, + "geometry" : + { + "x" : -8368079.2597007789, + "y" : 4863490.2700340357 + } + }, + { + "attributes" : { + "objectid" : 2072, + "site_name" : "Richard and Friends United in the Community", + "address" : "1921 E Venango St", + "phone_number" : "(267) 679-0884", + "category" : "PHILABUNDANCE", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.102203066974, + "y" : 39.9995905870617, + "hours_mon_start1" : "13:00", + "hours_mon_end1" : "18:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "13:00", + "hours_tues_end1" : "18:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "13:00", + "hours_wed_end1" : "18:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:00", + "hours_thurs_end1" : "18:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "13:00", + "hours_fri_end1" : "18:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1283, + "email" : null + }, + "geometry" : + { + "x" : -8360339.0028685741, + "y" : 4865882.784909104 + } + }, + { + "attributes" : { + "objectid" : 2073, + "site_name" : "The Word in Action International Ministries", + "address" : "1539 W. Courtland Street", + "phone_number" : "215-324-7665", + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1511616796028, + "y" : 40.0237048842628, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1285, + "email" : null + }, + "geometry" : + { + "x" : -8365789.0506963572, + "y" : 4869387.6068534767 + } + }, + { + "attributes" : { + "objectid" : 2074, + "site_name" : "Urban Creators", + "address" : "2315 N. 11th St.", + "phone_number" : "(917) 921-1248", + "category" : "PHILABUNDANCE", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1503021992511, + "y" : 39.9876218043958, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "15:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1287, + "email" : null + }, + "geometry" : + { + "x" : -8365693.37378126, + "y" : 4864143.6768577537 + } + }, + { + "attributes" : { + "objectid" : 2075, + "site_name" : "Wynne Senior Residences - Penrose", + "address" : "2001 N. 54th St.", + "phone_number" : "267.419.6921", + "category" : "PHILABUNDANCE", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.2315348271429, + "y" : 39.9869348111759, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1289, + "email" : null + }, + "geometry" : + { + "x" : -8374736.148553974, + "y" : 4864043.8634690344 + } + }, + { + "attributes" : { + "objectid" : 2076, + "site_name" : "Association of Former Gang Members", + "address" : "1644 W. Susquehanna Ave.", + "phone_number" : "215-980-1151", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.1607953361984, + "y" : 39.9867275753448, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:30", + "hours_wed_end1" : "12:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : "Open on the second and fourth Wednesays of the month", + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1291, + "email" : null + }, + "geometry" : + { + "x" : -8366861.4644430568, + "y" : 4864013.7543288218 + } + }, + { + "attributes" : { + "objectid" : 2193, + "site_name" : "Old St. Joseph's Church", + "address" : "321 Willings Alley", + "phone_number" : "215-923-1733", + "category" : "Office of Homeless Services", + "zip_code" : "19106", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : -75.1475917526346, + "y" : 39.9465790565325, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:30", + "hours_tues_end1" : "11:15", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:30", + "hours_thurs_end1" : "11:15", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:30", + "hours_sat_end1" : "11:15", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1292, + "email" : null + }, + "geometry" : + { + "x" : -8365391.6482440885, + "y" : 4858182.3275741655 + } + }, + { + "attributes" : { + "objectid" : 2077, + "site_name" : "Stephen and Sandra Sheller 11th St. Family Health Services", + "address" : "850 N. 11th St.", + "phone_number" : "215-769-1100", + "category" : "Nutritional Development Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://nutritionaldevelopmentservices.org/", + "x" : -75.1551145013212, + "y" : 39.9679325529388, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "13:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1293, + "email" : null + }, + "geometry" : + { + "x" : -8366229.0767972451, + "y" : 4861283.4191289274 + } + }, + { + "attributes" : { + "objectid" : 2078, + "site_name" : "Feast of Justice - Northeast Services Hub", + "address" : "6334 Castor Ave", + "phone_number" : "215-268-3510", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19149", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : -75.0785381781358, + "y" : 40.0385675517687, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:30", + "hours_thurs_end1" : "12:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:30", + "hours_sat_end1" : "13:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1295, + "email" : null + }, + "geometry" : + { + "x" : -8357704.6394934263, + "y" : 4871548.3948251819 + } + }, + { + "attributes" : { + "objectid" : 2236, + "site_name" : "St. John Memorial Baptist Church", + "address" : "2853 Germantown Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : -75.1468363755204, + "y" : 39.9959017368757, + "hours_mon_start1" : "08:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1364, + "email" : null + }, + "geometry" : + { + "x" : -8365307.5600483781, + "y" : 4865346.74894581 + } + }, + { + "attributes" : { + "objectid" : 2239, + "site_name" : "Catholic Social Services Southwest", + "address" : "6214 Grays Ave.", + "phone_number" : "215-724-8550, ext. 6", + "category" : "BenePhilly", + "zip_code" : "19142.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://cssphiladelphia.org/family-service-centers/southwest-family-service-center/", + "x" : -75.22823869, + "y" : 39.92562457, + "hours_mon_start1" : "09:30", + "hours_mon_end1" : "17:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:30", + "hours_tues_end1" : "17:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:30", + "hours_wed_end1" : "17:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:30", + "hours_thurs_end1" : "17:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:30", + "hours_fri_end1" : "17:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1376, + "email" : null + }, + "geometry" : + { + "x" : -8374369.2242456414, + "y" : 4855140.1236355463 + } + }, + { + "attributes" : { + "objectid" : 2240, + "site_name" : "Esperanza", + "address" : "4261 N. 5th St.", + "phone_number" : "215-324-0746, ext. 108", + "category" : "BenePhilly", + "zip_code" : "19140.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.esperanza.us/", + "x" : -75.13416739, + "y" : 40.0162608, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "17:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "17:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "17:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "17:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1377, + "email" : null + }, + "geometry" : + { + "x" : -8363897.2550313808, + "y" : 4868305.5360801984 + } + }, + { + "attributes" : { + "objectid" : 2241, + "site_name" : "Impact Services", + "address" : "1952 E. Allegheny Ave.", + "phone_number" : "215-739-1600, ext. 156", + "category" : "BenePhilly", + "zip_code" : "19134.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.impactservices.org/", + "x" : -75.11225925, + "y" : 39.99425745, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1378, + "email" : null + }, + "geometry" : + { + "x" : -8361458.4520423515, + "y" : 4865107.8228741838 + } + }, + { + "attributes" : { + "objectid" : 2242, + "site_name" : "Impact Services at PA CareerLink, Northwest", + "address" : "5847 Germantown Ave.", + "phone_number" : "215-298-9292", + "category" : "BenePhilly", + "zip_code" : "19144.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.impactservices.org/pa-careerlink-nw-philadelphia", + "x" : -75.17654958, + "y" : 40.03849176, + "hours_mon_start1" : "08:30", + "hours_mon_end1" : "16:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "08:30", + "hours_tues_end1" : "16:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:30", + "hours_wed_end1" : "16:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "08:30", + "hours_thurs_end1" : "16:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "08:30", + "hours_fri_end1" : "16:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1379, + "email" : null + }, + "geometry" : + { + "x" : -8368615.2188408831, + "y" : 4871537.3747511311 + } + }, + { + "attributes" : { + "objectid" : 2243, + "site_name" : "Philadelphia FIGHT", + "address" : "1233 Locust St.", + "phone_number" : "215-525-8636", + "category" : "BenePhilly", + "zip_code" : "19107.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://fight.org/", + "x" : -75.16194112, + "y" : 39.94815364, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "17:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "17:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "17:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "17:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1380, + "email" : null + }, + "geometry" : + { + "x" : -8366989.01251241, + "y" : 4858410.9656096557 + } + }, + { + "attributes" : { + "objectid" : 2244, + "site_name" : "Office of Community Empowerment and Opportunity (CEO) Mobile Benefits Unit", + "address" : null, + "phone_number" : "215-685-3649", + "category" : "BenePhilly", + "zip_code" : null, + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-community-empowerment-and-opportunity/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1381, + "email" : null + } + }, + { + "attributes" : { + "objectid" : 2245, + "site_name" : "UESF", + "address" : "1608 Walnut St.", + "phone_number" : "215-814-6845", + "category" : "BenePhilly", + "zip_code" : "19103.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://uesfacts.org/", + "x" : -75.16812461, + "y" : 39.94964137, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "17:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "17:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "17:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "17:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1382, + "email" : null + }, + "geometry" : + { + "x" : -8367677.3554705372, + "y" : 4858626.9968872285 + } + }, + { + "attributes" : { + "objectid" : 2246, + "site_name" : "Aramingo WIC Office", + "address" : "2401 E. Tioga St., #A-4", + "phone_number" : "215-533-9597", + "category" : "WIC", + "zip_code" : "19134.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.09815012, + "y" : 39.99146028, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1383, + "email" : null + }, + "geometry" : + { + "x" : -8359887.8308752161, + "y" : 4864701.3882554453 + } + }, + { + "attributes" : { + "objectid" : 2247, + "site_name" : "Lehigh WIC Office", + "address" : "217-33 W. Lehigh Ave.", + "phone_number" : "215-634-3828", + "category" : "WIC", + "zip_code" : "19133.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.13551882, + "y" : 39.99240343, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1384, + "email" : null + }, + "geometry" : + { + "x" : -8364047.6955308234, + "y" : 4864838.428052065 + } + }, + { + "attributes" : { + "objectid" : 2248, + "site_name" : "North Philadelphia WIC Office", + "address" : "2709 N. Broad St., (Rear Entrance on Park Ave., 2nd Floor)", + "phone_number" : "215-229-3786", + "category" : "WIC", + "zip_code" : "19132.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.15409138, + "y" : 39.9946995, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1385, + "email" : null + }, + "geometry" : + { + "x" : -8366115.1834527506, + "y" : 4865172.0551817575 + } + }, + { + "attributes" : { + "objectid" : 2249, + "site_name" : "Northeast WIC Office", + "address" : "7959 Bustleton Ave.", + "phone_number" : "215-745-6197", + "category" : "WIC", + "zip_code" : "19152.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.05193378, + "y" : 40.05889808, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1386, + "email" : null + }, + "geometry" : + { + "x" : -8354743.0514400881, + "y" : 4874504.8829176081 + } + }, + { + "attributes" : { + "objectid" : 2250, + "site_name" : "Olney/Logan WIC Office", + "address" : "5751 N. Broad St., Unit 5", + "phone_number" : "215-927-1950", + "category" : "WIC", + "zip_code" : "19141.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.14393878, + "y" : 40.04125241, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1387, + "email" : null + }, + "geometry" : + { + "x" : -8364985.0011905227, + "y" : 4871938.7793745669 + } + }, + { + "attributes" : { + "objectid" : 2251, + "site_name" : "Overbrook WIC Office", + "address" : "Overbrook Plaza, #1400, 5610 Lancaster Ave.", + "phone_number" : "215-477-3360", + "category" : "WIC", + "zip_code" : "19131.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.23489215, + "y" : 39.9795656, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1388, + "email" : null + }, + "geometry" : + { + "x" : -8375109.8840248538, + "y" : 4862973.2523591593 + } + }, + { + "attributes" : { + "objectid" : 2252, + "site_name" : "South Philadelphia WIC Office", + "address" : "1165 S. Broad St.", + "phone_number" : "215-463-5571", + "category" : "WIC", + "zip_code" : "19146.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.16666409, + "y" : 39.93591439, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1389, + "email" : null + }, + "geometry" : + { + "x" : -8367514.7711278414, + "y" : 4856633.8988154856 + } + }, + { + "attributes" : { + "objectid" : 2253, + "site_name" : "St. Christopher's WIC Office", + "address" : "Nelson Pavilion Bldg., 160 Erie Ave.", + "phone_number" : "215-427-6973", + "category" : "WIC", + "zip_code" : "19124.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.12701848, + "y" : 40.0060639, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1390, + "email" : null + }, + "geometry" : + { + "x" : -8363101.4420104548, + "y" : 4866823.5080568595 + } + }, + { + "attributes" : { + "objectid" : 2254, + "site_name" : "Woodland WIC Office", + "address" : "1741 S. 54th St.", + "phone_number" : "215-726-1142", + "category" : "WIC", + "zip_code" : "19143.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.21908051, + "y" : 39.93708154, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1391, + "email" : null + }, + "geometry" : + { + "x" : -8373349.7403114485, + "y" : 4856803.34839029 + } + }, + { + "attributes" : { + "objectid" : 2255, + "site_name" : "Germantown WIC Office", + "address" : "47 W. Chelten Avenue", + "phone_number" : "215-714-7449", + "category" : "WIC", + "zip_code" : "19144.0", + "temporary_closure" : null, + "category_type" : "Public Benefits", + "site_key" : null, + "status" : "Active", + "website" : "https://www.pawic.com/default.aspx", + "x" : -75.17608299, + "y" : 40.03513166, + "hours_mon_start1" : "07:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:00", + "hours_tues_end1" : "16:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1392, + "email" : null + }, + "geometry" : + { + "x" : -8368563.2782796742, + "y" : 4871048.8306966573 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Prevention Point (Love Lot)", + "address" : "2913 Kensington Ave.", + "phone_number" : null, + "category" : "Office of Homeless Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1393, + "email" : null + }, + "geometry" : + { + "x" : -8362287.411013972, + "y" : 4864889.4694634946 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Rising Sun Health Center", + "address" : "5675 N. Front St.", + "phone_number" : "445-216-9766", + "category" : "PHILABUNDANCE", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1394, + "email" : null + }, + "geometry" : + { + "x" : -8362109.7546395473, + "y" : 4871400.74505853 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Brothers of Strawberry Mansion", + "address" : "3218 W. Susquehanna Ave.", + "phone_number" : "267-568-1163", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:30", + "hours_sat_end1" : "11:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on first and third Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1395, + "email" : null + }, + "geometry" : + { + "x" : -8369636.8071748363, + "y" : 4864489.1119777421 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "First Church of Love and Deliverance", + "address" : "3101 Ridge Ave.", + "phone_number" : "215-769-1275", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : "Open on first Friday of the month", + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1396, + "email" : null + }, + "geometry" : + { + "x" : -8369427.2191588627, + "y" : 4864446.9925592253 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Hickman Temple Daycare", + "address" : "1220 S. 58th", + "phone_number" : "267-815-5684", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "11:30", + "hours_mon_end1" : "13:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : "Open on first and third Mondays of the month", + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1397, + "email" : null + }, + "geometry" : + { + "x" : -8375414.192323274, + "y" : 4857684.7707564961 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Martin Luther King Jr. Association For Nonviolence Inc. (MLK)", + "address" : "3001 Walnut St.", + "phone_number" : "215-751-9300", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "11:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on third Saturday of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1398, + "email" : null + }, + "geometry" : + { + "x" : -8369458.8853449943, + "y" : 4858962.001686668 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Self Inc./Outley House", + "address" : "6901 Woodland Ave.", + "phone_number" : "215-496-9610 (Ext 377)", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19142", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "14:30", + "hours_tues_end1" : "17:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on second and fourth Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1400, + "email" : null + }, + "geometry" : + { + "x" : -8375762.5163838463, + "y" : 4854600.4224131294 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Bethesda Project", + "address" : "907 Hamilton St.", + "phone_number" : "215-236-7864", + "category" : "Office of Homeless Services", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "12:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "12:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "12:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "12:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "12:00", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1402, + "email" : null + }, + "geometry" : + { + "x" : -8366189.1772117969, + "y" : 4860169.8916319041 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "The Living Word Evangelistic Missionary Church, Inc.", + "address" : "872 N. 40th St.", + "phone_number" : "267-439-7078", + "category" : "Office of Homeless Services", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "12:00", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : "Open third Sunday of the month", + "ObjectId2" : 1403, + "email" : null + }, + "geometry" : + { + "x" : -8371632.5468587819, + "y" : 4861533.61318702 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Veterans Multi-Service Center", + "address" : "213-217 N. 4th St.", + "phone_number" : "215-238-8067", + "category" : "Office of Homeless Services", + "zip_code" : "19106", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "10:00", + "hours_mon_start2" : "12:00", + "hours_mon_end2" : "13:00", + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "10:00", + "hours_tues_start2" : "12:00", + "hours_tues_end2" : "13:00", + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "10:00", + "hours_wed_start2" : "12:00", + "hours_wed_end2" : "13:00", + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "10:00", + "hours_thurs_start2" : "12:00", + "hours_thurs_end2" : "13:00", + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "10:00", + "hours_fri_start2" : "12:00", + "hours_fri_end2" : "13:00", + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1404, + "email" : null + }, + "geometry" : + { + "x" : -8365232.7558911461, + "y" : 4859323.8836381109 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "WorkSmart LLC", + "address" : "2033 Orthodox St.", + "phone_number" : "267-726-0214", + "category" : "Office of Homeless Services", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : "13:00", + "hours_mon_end1" : "16:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "13:00", + "hours_wed_end1" : "16:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:00", + "hours_thurs_end1" : "16:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "13:00", + "hours_fri_end1" : "16:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1405, + "email" : null + }, + "geometry" : + { + "x" : -8357806.1036148267, + "y" : 4867493.9084066879 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Keeping It Real Christian Fellowship Bread of Life Ministry", + "address" : "North 18th St. and Benjamin Franklin Parkway", + "phone_number" : "215-232-3900", + "category" : "Office of Homeless Services", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "13:30", + "hours_sun_end1" : "14:30", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1406, + "email" : null + }, + "geometry" : + { + "x" : -8367768.8897969238, + "y" : 4859726.4113026131 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "There's Hope", + "address" : "Kensington Ave. and E. Hilton St.", + "phone_number" : "267-684-8377", + "category" : "Office of Homeless Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "12:00", + "hours_sun_end1" : "15:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1407, + "email" : null + }, + "geometry" : + { + "x" : -8361514.9136980912, + "y" : 4865487.3002441069 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Small Things Market at Emmanuel (inside of Resurrection Church)", + "address" : "123 S 17th St", + "phone_number" : "215-559-9212", + "category" : "STP", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:30", + "hours_sat_end1" : "12:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1408, + "email" : null + }, + "geometry" : + { + "x" : -8367741.265764053, + "y" : 4858753.8222018853 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Small Things Market at Emmanuel (inside of Resurrection Church)", + "address" : "123 S 17th St", + "phone_number" : "215-559-9212", + "category" : "Small Things Philly", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "11:30", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1409, + "email" : null + }, + "geometry" : + { + "x" : -8367740.3700176282, + "y" : 4858749.0448876191 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "48th Street Mount Pleasant Baptist Church", + "address" : "5539 Vine St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:30", + "hours_sat_end1" : "11:30", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on second and fourth Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1410, + "email" : null + }, + "geometry" : + { + "x" : -8374716.7137705376, + "y" : 4860969.6011672607 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Abiding Truth Ministries", + "address" : "846 S 57th St.", + "phone_number" : "215-476-7225", + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1411, + "email" : null + }, + "geometry" : + { + "x" : -8375466.7876830213, + "y" : 4858333.5815227842 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Anchor of Hope", + "address" : "53 E Wister St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1414, + "email" : null + }, + "geometry" : + { + "x" : -8367212.71134617, + "y" : 4870466.5900940374 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Bethany AME Church", + "address" : "8898 Ashton Rd", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19136", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on first and third Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1415, + "email" : null + }, + "geometry" : + { + "x" : -8351954.9200101346, + "y" : 4874452.3846600382 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Better Tomorrows - Jackie's Garden", + "address" : "1836 N 20th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1416, + "email" : null + }, + "geometry" : + { + "x" : -8367548.5528107351, + "y" : 4863377.9998097429 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Bless Philadelphia Corporation", + "address" : "4610 Devereaux St", + "phone_number" : "267-908-4982", + "category" : "PHILABUNDANCE", + "zip_code" : "19135", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on third Thursday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "13:00", + "hours_sun_end1" : "13:30", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1417, + "email" : null + }, + "geometry" : + { + "x" : -8355249.5905794548, + "y" : 4868880.5809951825 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Breaking Bread on Broad", + "address" : "615 N Broad St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:15", + "hours_wed_end1" : "10:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1418, + "email" : null + }, + "geometry" : + { + "x" : -8366849.7741339328, + "y" : 4860676.8778718123 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Bryn Mawr Avenue New Testament Church of God", + "address" : "2227 Bryn Mawr Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19131", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "18:00", + "hours_mon_end1" : "20:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "18:00", + "hours_thurs_end1" : "20:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1419, + "email" : null + }, + "geometry" : + { + "x" : -8374135.5889462167, + "y" : 4864612.2353833131 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Calvary Agape Outreach Service", + "address" : "6114 Haverford Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "14:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1420, + "email" : null + }, + "geometry" : + { + "x" : -8375856.457790222, + "y" : 4861732.384772162 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Campbell AME Church", + "address" : "1657 Kinsey St", + "phone_number" : "215-288-2748", + "category" : "PHILABUNDANCE", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1421, + "email" : null + }, + "geometry" : + { + "x" : -8358402.7675563414, + "y" : 4867867.1369580617 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Casa Del Carmen", + "address" : "4400 N Reese St", + "phone_number" : "267-331-2473", + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "08:30", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "08:30", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "08:30", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1422, + "email" : null + }, + "geometry" : + { + "x" : -8363996.0509564178, + "y" : 4868680.5940336017 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Chelten Christian Crusade", + "address" : "605 E Chelten Ave", + "phone_number" : "215-849-6614", + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "14:00", + "hours_tues_end1" : "16:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "14:00", + "hours_thurs_end1" : "16:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1423, + "email" : null + }, + "geometry" : + { + "x" : -8367590.603081407, + "y" : 4872263.94950899 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Chosen 300 Ministries Inc.", + "address" : "3959 Lancaster Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "18:00", + "hours_mon_end1" : "19:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "13:00", + "hours_tues_end1" : "14:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "18:00", + "hours_wed_end1" : "19:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "18:00", + "hours_fri_end1" : "19:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "11:30", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1424, + "email" : null + }, + "geometry" : + { + "x" : -8371439.7001178944, + "y" : 4860591.8790850034 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Christ Apostolic Church of America WOSEM", + "address" : "6438 Vine St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "08:00", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1425, + "email" : null + }, + "geometry" : + { + "x" : -8376700.5130829932, + "y" : 4861247.7759364024 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Church of Christian Compassion", + "address" : "6012 Cedar Ave", + "phone_number" : "215-472-9040 ext. 2", + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1426, + "email" : null + }, + "geometry" : + { + "x" : -8376037.1252291687, + "y" : 4859047.3747929 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Eddie's House - The Cornerstone", + "address" : "2321 N Broad St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "11:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1427, + "email" : null + }, + "geometry" : + { + "x" : -8366213.6635420648, + "y" : 4864319.2374990266 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Einstein Medical Center", + "address" : "Corner of W Tabor Rd. and N Park Ave.", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1428, + "email" : null + }, + "geometry" : + { + "x" : -8364957.5424666069, + "y" : 4871432.6333804252 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Enon Tabernacle", + "address" : "230 W Coulter St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1429, + "email" : null + }, + "geometry" : + { + "x" : -8368463.871870161, + "y" : 4870067.6625872226 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Episcopal Community Services", + "address" : "6006 W Girard Ave", + "phone_number" : "215-528-5400", + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "14:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "14:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1430, + "email" : null + }, + "geometry" : + { + "x" : -8375675.479689491, + "y" : 4861542.4814114878 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Faith Assembly of God", + "address" : "1926-1940 Margaret St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1431, + "email" : null + }, + "geometry" : + { + "x" : -8357644.9439037442, + "y" : 4867825.5060706818 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Faith Temple Pentecostal Church", + "address" : "5618 Kingsessing Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1433, + "email" : null + }, + "geometry" : + { + "x" : -8373992.9040051624, + "y" : 4856664.3297932968 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "First Church Worship Center", + "address" : "2509 N 30th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1434, + "email" : null + }, + "geometry" : + { + "x" : -8369074.145776093, + "y" : 4865122.2374512292 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Freedom Development Corporation", + "address" : "6100 W Columbia Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19151", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1435, + "email" : null + }, + "geometry" : + { + "x" : -8376010.4142071474, + "y" : 4863141.4399044309 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Giving of Self Partnership", + "address" : "6101 Limekiln Pike", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1436, + "email" : null + }, + "geometry" : + { + "x" : -8365530.0690589221, + "y" : 4872744.6547548315 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Grace Community Christian Center", + "address" : "29 W Johnson St", + "phone_number" : "215-848-2700", + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1437, + "email" : null + }, + "geometry" : + { + "x" : -8369339.0077263759, + "y" : 4872570.3416141141 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Grace Lutheran Church", + "address" : "3529 Haverford Ave", + "phone_number" : "215-222-3570", + "category" : "PHILABUNDANCE", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "13:00", + "hours_wed_end1" : "17:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1438, + "email" : null + }, + "geometry" : + { + "x" : -8370596.3921809224, + "y" : 4860729.6601565424 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Greater Philadelphia Asian Social Service Center", + "address" : "4943 N 5th St", + "phone_number" : "215-456-1662 ext. 132", + "category" : "PHILABUNDANCE", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "13:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : "Open on second and fourth Mondays of the month", + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "13:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on second and fourth Tuesdays of the month", + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1439, + "email" : null + }, + "geometry" : + { + "x" : -8363690.1685779011, + "y" : 4869860.4943925245 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Haitian Evangelical Baptist Church", + "address" : "814 E Chelten Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "11:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1440, + "email" : null + }, + "geometry" : + { + "x" : -8367223.7389359521, + "y" : 4872589.5354194166 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Helping Hands for the Hungry", + "address" : "525 S. Cobbs Creek Parkway", + "phone_number" : "215-747-3250", + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:30", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on the last Saturday of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1441, + "email" : null + }, + "geometry" : + { + "x" : -8376626.2930549989, + "y" : 4859258.4183106329 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Holsey Temple CME Church", + "address" : "5305-5315 Germantown Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1442, + "email" : null + }, + "geometry" : + { + "x" : -8367823.347860992, + "y" : 4870720.7244321462 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Holy Temple Community Center", + "address" : "363 N 60th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:30", + "hours_thurs_end1" : "13:45", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on the third Thursday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1443, + "email" : null + }, + "geometry" : + { + "x" : -8375604.68772979, + "y" : 4861292.3765954552 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Holy Temple Lord and Savior", + "address" : "5116 Market St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open every other Thursday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1444, + "email" : null + }, + "geometry" : + { + "x" : -8373850.6389452554, + "y" : 4860085.9775542477 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Iglesia de Dios Pentecostal", + "address" : "516 W. Butler Street", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "13:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1445, + "email" : null + }, + "geometry" : + { + "x" : -8364249.9354483876, + "y" : 4867243.0404077778 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Lifeway Baptist Church", + "address" : "9554 Bustleton Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19115", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "07:30", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "07:30", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "07:30", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "07:30", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1447, + "email" : null + }, + "geometry" : + { + "x" : -8352991.2333097449, + "y" : 4878602.9895696761 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Lutheran Settlement House Senior Center", + "address" : "1340 Frankford Ave", + "phone_number" : "215-426-8610 ext. 1204", + "category" : "PHILABUNDANCE", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1449, + "email" : null + }, + "geometry" : + { + "x" : -8363949.4778374378, + "y" : 4861798.88129002 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Masjidullah Center for Human Excellence", + "address" : "7401 Limekiln Pike", + "phone_number" : "215-621-7800", + "category" : "PHILABUNDANCE", + "zip_code" : "19138", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1451, + "email" : null + }, + "geometry" : + { + "x" : -8366591.4725891436, + "y" : 4875751.1477194261 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Mount Tabor CEED Corporation", + "address" : "961-971 N 7th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "12:00", + "hours_mon_end1" : "13:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1453, + "email" : null + }, + "geometry" : + { + "x" : -8365452.7829376357, + "y" : 4861446.910297663 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Mount Zion United Holy Church", + "address" : "4110 Haverford Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "13:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1454, + "email" : null + }, + "geometry" : + { + "x" : -8371895.6339825932, + "y" : 4860494.75504668 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "New Jerusalem Laura", + "address" : "2011 W Norris St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "13:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1455, + "email" : null + }, + "geometry" : + { + "x" : -8367570.010244308, + "y" : 4863723.7141745761 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "North Light Community Center", + "address" : "175 Green Ln", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19127", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:30", + "hours_mon_end1" : "11:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:30", + "hours_fri_end1" : "11:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1456, + "email" : null + }, + "geometry" : + { + "x" : -8373943.0540840011, + "y" : 4870114.2617314477 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "One Day at a Time Haven II", + "address" : "2532 N Broad St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "15:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1457, + "email" : null + }, + "geometry" : + { + "x" : -8366260.1770413555, + "y" : 4864804.0738053108 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Page Academy CDC", + "address" : "1524 W Champlost Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "13:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1458, + "email" : null + }, + "geometry" : + { + "x" : -8365906.6884427853, + "y" : 4872499.8465050161 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Penn Asian Senior Services", + "address" : "6926 Old York Rd", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19126", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "17:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "17:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "17:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "17:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "17:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1459, + "email" : null + }, + "geometry" : + { + "x" : -8364501.06518939, + "y" : 4874526.3823623918 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Pente Church of God", + "address" : "3027 N 5th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "11:00", + "hours_mon_end1" : "14:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "19:00", + "hours_tues_end1" : "20:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "19:00", + "hours_thurs_end1" : "20:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "19:00", + "hours_fri_end1" : "20:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1460, + "email" : null + }, + "geometry" : + { + "x" : -8364418.6716813091, + "y" : 4865556.2769397246 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Philadelphia Episcopal Cathedral", + "address" : "19 S 38th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:30", + "hours_mon_end1" : "11:30", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1461, + "email" : null + }, + "geometry" : + { + "x" : -8371004.5402582036, + "y" : 4859512.9266045932 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Police Athletic League Center - Ford", + "address" : "609 Snyder Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19148", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:30", + "hours_thurs_end1" : "14:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on the fourth Thursday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1462, + "email" : null + }, + "geometry" : + { + "x" : -8366434.16168547, + "y" : 4854742.82338074 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Provision of Grace World Mission Church", + "address" : "1950 W Rockland St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19141", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "13:30", + "hours_tues_end1" : "15:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:30", + "hours_thurs_end1" : "15:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1463, + "email" : null + }, + "geometry" : + { + "x" : -8366369.7473567361, + "y" : 4870076.9845116334 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Refuge Evangelical Baptist Church", + "address" : "1100 Oak Ln", + "phone_number" : "215-224-2024", + "category" : "PHILABUNDANCE", + "zip_code" : "19126", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "12:00", + "hours_tues_end1" : "14:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1464, + "email" : null + }, + "geometry" : + { + "x" : -8364164.41032613, + "y" : 4873892.26227758 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Remnant Church of God", + "address" : "7708-7712 Ogontz Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19150", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "15:00", + "hours_mon_end1" : "17:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1465, + "email" : null + }, + "geometry" : + { + "x" : -8366524.8701101281, + "y" : 4876279.8291771058 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Saint Luke's Episcopal Church", + "address" : "5421 Germantown Ave", + "phone_number" : "215-844-8544", + "category" : "PHILABUNDANCE", + "zip_code" : "19144", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "10:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "10:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1468, + "email" : null + }, + "geometry" : + { + "x" : -8367937.0463253846, + "y" : 4870865.9498691317 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Saint Michael's Lutheran Church", + "address" : "2139 E Cumberland St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19125", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "11:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1469, + "email" : null + }, + "geometry" : + { + "x" : -8362833.709550038, + "y" : 4863387.2980525512 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Saint Paul's Baptist Church", + "address" : "1000 Wallace St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19123", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "14:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1470, + "email" : null + }, + "geometry" : + { + "x" : -8366127.6480705338, + "y" : 4860692.7274422916 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Salvation Army West Philadelphia Corps", + "address" : "5501 Market St", + "phone_number" : "215-474-1010", + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "10:00", + "hours_wed_end1" : "14:30", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "14:30", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "13:00", + "hours_sun_end1" : "14:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1471, + "email" : null + }, + "geometry" : + { + "x" : -8374730.500387257, + "y" : 4860398.4035230409 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Star of Hope Baptist Church", + "address" : "7212 Keystone St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19135", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "11:00", + "hours_tues_end1" : "13:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1472, + "email" : null + }, + "geometry" : + { + "x" : -8352769.2241254374, + "y" : 4869878.6171415308 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "The Sunday Love Project", + "address" : "3200 Kensington Ave", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:00", + "hours_mon_end1" : "12:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "09:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "09:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1473, + "email" : null + }, + "geometry" : + { + "x" : -8361538.3295888845, + "y" : 4865493.3384949956 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Truth Baptist Church", + "address" : "4666-4668 N 15th St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "10:00", + "hours_tues_end1" : "12:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "08:00", + "hours_sun_end1" : "17:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1474, + "email" : null + }, + "geometry" : + { + "x" : -8365638.963418521, + "y" : 4869516.9695993084 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Two Ladies of Christ", + "address" : "4125 Ludlow St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19104", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "08:00", + "hours_sun_end1" : "17:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1475, + "email" : null + }, + "geometry" : + { + "x" : -8371751.8808336537, + "y" : 4859687.0539318267 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Ujima Friends Peace Center", + "address" : "1701 W Lehigh Ave", + "phone_number" : "267-761-4944", + "category" : "PHILABUNDANCE", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on the second and last Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1476, + "email" : null + }, + "geometry" : + { + "x" : -8366801.6982631413, + "y" : 4865215.1332078008 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Waters Memorial Community Center", + "address" : "1016-1018 South St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19147", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "16:00", + "hours_tues_end1" : "18:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : "Open on the second Tuesday of the month", + "hours_wed_start1" : "16:00", + "hours_wed_end1" : "18:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1477, + "email" : null + }, + "geometry" : + { + "x" : -8366698.6874241922, + "y" : 4857614.9420017479 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Wharton Wesley Helping Hands", + "address" : "5341 Catharine St", + "phone_number" : null, + "category" : "PHILABUNDANCE", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "09:00", + "hours_wed_end1" : "12:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : "Open on the fourth Wednesday of the month", + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1478, + "email" : null + }, + "geometry" : + { + "x" : -8374650.09050611, + "y" : 4858629.3512235405 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Together We Can Change at Love Park", + "address" : "16th St. and JFK Blvd.", + "phone_number" : "215-284-5780", + "category" : "Office of Homeless Services", + "zip_code" : "19102", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "12:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1479, + "email" : null + }, + "geometry" : + { + "x" : -8367422.5248608366, + "y" : 4859287.4646533355 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Together We Can Change at Aviator Park", + "address" : "1900-1958 Benjamin Franklin Pkwy", + "phone_number" : "215-284-5780", + "category" : "Office of Homeless Services", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "10:30", + "hours_sun_end1" : "11:30", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1480, + "email" : null + }, + "geometry" : + { + "x" : -8368093.2877205694, + "y" : 4859851.9949367391 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Locke School", + "address" : "4550 Haverford Ave", + "phone_number" : "(215) 400-7670", + "category" : "PHILABUNDANCE", + "zip_code" : "19139", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.philabundance.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "13:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "13:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "13:00", + "hours_fri_end1" : "15:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1481, + "email" : null + }, + "geometry" : + { + "x" : -8372603.1260793265, + "y" : 4860477.8946858812 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "The Everywhere Project (Love Park)", + "address" : "N 15th St. and John F. Kennedy Blvd", + "phone_number" : "267-770-3919", + "category" : "Office of Homeless Services", + "zip_code" : "19102", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "19:00", + "hours_wed_end1" : "21:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1482, + "email" : null + }, + "geometry" : + { + "x" : -8367416.7816213118, + "y" : 4859272.8039332442 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "The Everywhere Project (E. Clearfield St.)", + "address" : "1810 E. Clearfield St.", + "phone_number" : "267-770-3919", + "category" : "Office of Homeless Services", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "13:00", + "hours_sat_end1" : "16:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1483, + "email" : null + }, + "geometry" : + { + "x" : -8361792.05390992, + "y" : 4865114.5151782762 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Hope Prison Ministries", + "address" : "547 Rising Sun Ave.", + "phone_number" : "610-633-1789", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "10:00", + "hours_mon_end1" : "14:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:00", + "hours_fri_end1" : "14:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1485, + "email" : null + }, + "geometry" : + { + "x" : -8364325.3647709694, + "y" : 4867280.9260552451 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Fresh Fire Apostolic International Ministries", + "address" : "2901 Cedar St.", + "phone_number" : "267-880-9733", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1486, + "email" : null + }, + "geometry" : + { + "x" : -8361456.6853405014, + "y" : 4863719.0724300509 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "OCCCDA (Castor Ave)", + "address" : "6500 Castor Ave", + "phone_number" : "215-586-9551", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19149", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "14:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on fourth Thursday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1487, + "email" : null + }, + "geometry" : + { + "x" : -8357448.4022088721, + "y" : 4871915.58766053 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Geiger Memorial Brethren Church", + "address" : "2543 W. Lehigh Ave.", + "phone_number" : "215-229-2967", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : null, + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "10:00", + "hours_thurs_end1" : "12:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : "Open on the Thursday after the second Tuesday of the month", + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1488, + "email" : null + }, + "geometry" : + { + "x" : -8368296.0407143608, + "y" : 4865449.7922797883 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Frontline Dads (24th & Somerset)", + "address" : "24th St. and Somerset Ave", + "phone_number" : "(484) 532-8772", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : "13:00", + "hours_thurs_end1" : "15:00", + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1490, + "email" : null + }, + "geometry" : + { + "x" : -8367926.5767774368, + "y" : 4865604.46655459 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Denise's Pantry @ The Print Foundation", + "address" : "5843-55 Catharine St.", + "phone_number" : "215-828-7091", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "15:00", + "hours_fri_end1" : "17:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1491, + "email" : null + }, + "geometry" : + { + "x" : -8375758.1776120923, + "y" : 4858790.7131134076 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Helping Hands Nonprofit Organization", + "address" : "4667 Paul St.", + "phone_number" : "484-579-0490", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19124", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "11:00", + "hours_mon_end1" : "15:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1492, + "email" : null + }, + "geometry" : + { + "x" : -8358238.06799792, + "y" : 4868272.9011992794 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "True Vine Worship Center", + "address" : "521-23 W. Lehigh Ave.", + "phone_number" : "445-248-6152", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19133", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "08:30", + "hours_tues_end1" : "10:00", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1493, + "email" : null + }, + "geometry" : + { + "x" : -8364673.8515854264, + "y" : 4864844.6663950393 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Small Things Philly Market - Fairhill", + "address" : "3510 A St.", + "phone_number" : "215-559-9212", + "category" : "Small Things Philly", + "zip_code" : "19134", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : "11:00", + "hours_wed_end1" : "15:00", + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:00", + "hours_fri_end1" : "12:00", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "13:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1494, + "email" : null + }, + "geometry" : + { + "x" : -8363037.7826129319, + "y" : 4866374.3198558167 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "African Family Health Organization", + "address" : "5400 Grays Ave", + "phone_number" : "215-546-1232", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "09:30", + "hours_fri_end1" : "11:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : "Open on the first and third Fridays of the month", + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1495, + "email" : null + }, + "geometry" : + { + "x" : -8373048.99775859, + "y" : 4856295.0764577361 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "First Haitian Church of God of Prophecy", + "address" : "199 E. Tabor Ave.", + "phone_number" : "267-971-8886", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19120", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : "10:30", + "hours_fri_end1" : "12:30", + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : "Open on first and third Fridays of the month", + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1497, + "email" : null + }, + "geometry" : + { + "x" : -8362336.2770676455, + "y" : 4870501.0348827969 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Epiphany Fellowship Church Community Fridge", + "address" : "1632 W Diamond St", + "phone_number" : null, + "category" : "Community Refrigerators", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1714, + "email" : null + }, + "geometry" : + { + "x" : -8366910.4049701327, + "y" : 4863773.00004868 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Friends Pantry & Community Fridge", + "address" : "320 Arch Street", + "phone_number" : "(267) 334-0433", + "category" : "Community Refrigerators", + "zip_code" : "19106", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.historicasmh.org/friendspantry", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1715, + "email" : null + }, + "geometry" : + { + "x" : -8365320.7597123962, + "y" : 4859025.1651541311 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Mt. Airy Community Fridge", + "address" : "6900 Stenton Ave", + "phone_number" : null, + "category" : "Community Refrigerators", + "zip_code" : "19150", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://mtairyeats.wordpress.com/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1716, + "email" : null + }, + "geometry" : + { + "x" : -8368674.6428702651, + "y" : 4875536.1148001039 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "St James School Community Fridge", + "address" : "3217 West Clearfield St", + "phone_number" : null, + "category" : "Community Refrigerators", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.friendsfridgephilly.com/volunteer", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1717, + "email" : null + }, + "geometry" : + { + "x" : -8369309.7102751769, + "y" : 4866548.9025985468 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "The People's Fridge", + "address" : "125 South 52nd St", + "phone_number" : null, + "category" : "Community Refrigerators", + "zip_code" : "19143", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.thepeoplesfridge.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1718, + "email" : null + }, + "geometry" : + { + "x" : -8374027.3155970071, + "y" : 4859767.9981918121 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Ian-Yae's In Touch", + "address" : "2524 N. 27th St.", + "phone_number" : "267-254-9531", + "category" : "Office of Homeless Services", + "zip_code" : "19132", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : "18:30", + "hours_tues_end1" : "19:30", + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1724, + "email" : null + }, + "geometry" : + { + "x" : -8368585.879997896, + "y" : 4865147.3327623727 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Brothers of Strawberry Mansion Clifford St.", + "address" : "3223 W Clifford St", + "phone_number" : "267-568-1163", + "category" : "SHARE FOOD PROGRAM", + "zip_code" : "19121", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.sharefoodprogram.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : "09:30", + "hours_mon_end1" : "11:00", + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1725, + "email" : null + }, + "geometry" : + { + "x" : -8369792.1705124779, + "y" : 4863529.2404364338 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Food Pantry For Hope, Memorial Presbyterian Church of Fox Chase", + "address" : "7902 Oxford Ave.", + "phone_number" : "215-745-2844", + "category" : "General Food Site", + "zip_code" : "19111", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://sites.google.com/site/foxchasechurch/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "09:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : "Open on second and fourth Saturdays of the month", + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1726, + "email" : null + }, + "geometry" : + { + "x" : -8358433.7605998339, + "y" : 4876786.7059682058 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Narberth Presbyterian Church", + "address" : "200 N 19th St.", + "phone_number" : "215-776-3598", + "category" : "Office of Homeless Services", + "zip_code" : "19103", + "temporary_closure" : null, + "category_type" : "General Meal Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.phila.gov/departments/office-of-homeless-services/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : null, + "hours_sat_end1" : null, + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : "12:00", + "hours_sun_end1" : "13:00", + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1727, + "email" : null + }, + "geometry" : + { + "x" : -8367924.4696454173, + "y" : 4859946.063356013 + } + }, + { + "attributes" : { + "objectid" : null, + "site_name" : "Small Things Philly Market - House of Hope", + "address" : "1300 W. Hunting Park Ave", + "phone_number" : "215-559-9212", + "category" : "Small Things Philly", + "zip_code" : "19140", + "temporary_closure" : null, + "category_type" : "Food Site", + "site_key" : null, + "status" : "Active", + "website" : "https://www.smallthingsphilly.org/", + "x" : null, + "y" : null, + "hours_mon_start1" : null, + "hours_mon_end1" : null, + "hours_mon_start2" : null, + "hours_mon_end2" : null, + "hours_mon_exceptions" : null, + "hours_tues_start1" : null, + "hours_tues_end1" : null, + "hours_tues_start2" : null, + "hours_tues_end2" : null, + "hours_tues_exceptions" : null, + "hours_wed_start1" : null, + "hours_wed_end1" : null, + "hours_wed_start2" : null, + "hours_wed_end2" : null, + "hours_wed_exceptions" : null, + "hours_thurs_start1" : null, + "hours_thurs_end1" : null, + "hours_thurs_start2" : null, + "hours_thurs_end2" : null, + "hours_thurs_exceptions" : null, + "hours_fri_start1" : null, + "hours_fri_end1" : null, + "hours_fri_start2" : null, + "hours_fri_end2" : null, + "hours_fri_exceptions" : null, + "hours_sat_start1" : "10:00", + "hours_sat_end1" : "12:00", + "hours_sat_start2" : null, + "hours_sat_end2" : null, + "hours_sat_exceptions" : null, + "hours_sun_start1" : null, + "hours_sun_end1" : null, + "hours_sun_start2" : null, + "hours_sun_end2" : null, + "hours_sun_exceptions" : null, + "ObjectId2" : 1728, + "email" : null + }, + "geometry" : + { + "x" : -8365372.8935532989, + "y" : 4868332.0207346072 + } + } + ] + } \ No newline at end of file diff --git a/data/FreeShowersLaundry.geojson b/data/FreeShowersLaundry.geojson new file mode 100644 index 0000000..e586f86 --- /dev/null +++ b/data/FreeShowersLaundry.geojson @@ -0,0 +1,71 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "site_name": "Stephen Klein Wellness Center", + "Address": "2144 Cecil B. Moore Ave, Philadelphia, PA 19121", + "phone_number": "215-320-6187", + "Description": "Tues 10am-2pm (showers and laundry) Thurs 10am-2pm (showers and laundry) Fri: 10am-2pm (showers only) No I.D. or appointment necessary. Location also offers medical, dental, behavioral services." + }, + "geometry": { + "type": "Point", + "coordinates": [-75.1733718, 39.9802079] + } + }, + { + "type": "Feature", + "properties": { + "site_name": "St John Hospice", + "Address": "1221 Race St, Philadelphia, PA 19107", + "phone_number": "215-563-7763", + "Description": "Mon 8.30am-9.15am (seniors, veterans, disabled only. must sign-up Friday before), Tues 8.30am-9.15am (must sign up during Monday's lunch), Weds 8.30am-9.15am (must sign up during Tuesday's lunch), Fri 8:30am-9:15am (must sign up on Wednesday Lunch). Showers only (no laundry.) You must sign-up the week day (Mon-Fri) before your shower. Bring I.D. if possible, but may not be necessary." + }, + "geometry": { + "type": "Point", + "coordinates": [-75.1625276, 39.9561096] + } + }, + { + "type": "Feature", + "properties": { + "site_name": "Bethesda Project's Our Brothers' Place", + "Address": "907 Hamilton St, Philadelphia, PA 19123", + "phone_number": "215-985-1600", + "Description": "Mon-Fri, 12pm-1pm Showers are available during lunch. Arrive early as shower spots fill up quick. Be advised you will be searched and will be asked to check-in any medications you're carrying at the front desk before you leave." + }, + "geometry": { + "type": "Point", + "coordinates": [-75.1563554, 39.9602365] + } + }, + { + "type": "Feature", + "properties": { + "site_name": "The Center Philadelphia", + "Address": "55 N. Broad Street, Philadelphia, PA 19107", + "phone_number": "215-568-6250", + "Description": "The daily drop-in center is open Monday through Thusday from 9:00am-3:00pm, providing shower and laundry services." + }, + "geometry": { + "type": "Point", + "coordinates": [-75.1808602, 39.9528926] + } + }, + { + "type": "Feature", + "properties": { + "site_name": "Hub of Hope", + "Address": "1400 Arch Street, Sub Concourse Level, Municipal Services Building, Philadelphia, PA", + "phone_number": "215-309-5225", + "Description": "Showers from 7.30am to 3.15pm, Laundry from 7.30am to 2.15pm" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.1688882, 39.9542153] + } + } + ] + } + \ No newline at end of file diff --git a/data/FreeToilets.geojson b/data/FreeToilets.geojson new file mode 100644 index 0000000..b90326f --- /dev/null +++ b/data/FreeToilets.geojson @@ -0,0 +1,269 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.150201,39.950796 ] + }, + "properties": { + "site_name":"Independence Visitor Center", + "Address":"599 Market St, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.14889245,39.95271328571429 ] + }, + "properties": { + "site_name":"Independence Transportation Center", + "Address":"525 Arch St, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.149591,39.954779 ] + }, + "properties": { + "site_name":"Franklin Square", + "Address":"200 N 6th St, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.148286,39.949767 ] + }, + "properties": { + "site_name":"The Bourse Food Hall", + "Address":"111 S Independence Mall E, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.16465,39.954664 ] + }, + "properties": { + "site_name":"Philly Phlush", + "Address":"Arch St & N 15th St, Philadelphia, PA 19102" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.16849989,39.95471565 ] + }, + "properties": { + "site_name":"The Concourse at the Comcast Center", + "Address":"Comcast Center Concourse, 1701 John F Kennedy Blvd, Philadelphia, PA 19103" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.170482,39.959192 ] + }, + "properties": { + "site_name":"Free Library of Philadelphia - Parkway Central Library", + "Address":"1901 Vine St, Philadelphia, PA 19103" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.16764259,39.95140491836735 ] + }, + "properties": { + "site_name":"The Shops at Liberty Place", + "Address":"1625 Chestnut St, Philadelphia, PA 19103" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.155298,39.951427 ] + }, + "properties": { + "site_name":"Fashion District Philadelphia", + "Address":"901 Market St, Philadelphia, PA 19107" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.15870781,39.953774980215336 ] + }, + "properties": { + "site_name":"Reading Terminal Market", + "Address":"1136 Arch St, Philadelphia, PA 19107" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.141859,39.944005 ] + }, + "properties": { + "site_name":"Penn's Landing Operations Center", + "Address":"301 S Christopher Columbus Blvd, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.141105,39.947876 ] + }, + "properties": { + "site_name":"Great Plaza at Penn's Landing", + "Address":"101 S Christopher Columbus Blvd, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.14039791,39.95267532138696 ] + }, + "properties": { + "site_name":"Cherry Street Pier", + "Address":"121 N Christopher Columbus Blvd, Philadelphia, PA 19106" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.185235,39.968996 ] + }, + "properties": { + "site_name":"Lloyd Hall Recreation Center", + "Address":"1 Boathouse Row, Philadelphia, PA 19130" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1861774,39.9696231 ] + }, + "properties": { + "site_name":"East Park Canoe House", + "Address":"2400 Kelly Dr, Philadelphia, PA 19129" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.15783643,39.93842215 ] + }, + "properties": { + "site_name":"Italian Market Visitor Center", + "Address":"919 S 9th St, Philadelphia, PA 19147" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1699165,39.8938275 ] + }, + "properties": { + "site_name":"Central Green at The Navy Yard", + "Address":"Rouse Blvd, Philadelphia, PA 19112" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.1925145,39.9530359 ] + }, + "properties": { + "site_name":"Franklin's Table Food Hall", + "Address":"University of Pennsylvania, 3401 Walnut St, Philadelphia, PA 19104" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.185711,39.951927 ] + }, + "properties": { + "site_name":"Penn Park Softball Stadium", + "Address":"3000 Walnut St, Philadelphia, PA 19104" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.18109,39.95564 ] + }, + "properties": { + "site_name":"William H. Gray III 30th Street Station", + "Address":"2955 Market St, Philadelphia, PA 19104" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.18373714,39.95283228571429 ] + }, + "properties": { + "site_name":"Cira Green", + "Address":"129 S 30th St, Philadelphia, PA 19104" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.224418,39.953223 ] + }, + "properties": { + "site_name":"Malcolm X Memorial Park", + "Address":"5100 Pine St, Philadelphia, PA 19143" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.215549,39.933341 ] + }, + "properties": { + "site_name":"Bartram’s Garden", + "Address":"5400 Lindbergh Blvd., Philadelphia, PA 19143" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ -75.159022,39.9913542 ] + }, + "properties": { + "site_name":"Philly Phlush in North Philly", + "Address":"W Cumberland St, Philadelphia, PA 19133" + } + } + ] + } \ No newline at end of file diff --git a/data/IntakeCenters.geojson b/data/IntakeCenters.geojson new file mode 100644 index 0000000..573dd64 --- /dev/null +++ b/data/IntakeCenters.geojson @@ -0,0 +1,141 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1667441, 39.9554087] + }, + "properties": { + "site_name": "Appletree Family Center", + "Type": "Daytime Center", + "Eligibility": "All", + "Address": "1430 Cherry St", + "Hours": "Mon.–Fri., 7 a.m.–5 p.m.", + "phone_number": "215-686-7150, 215-686-7151, 215-686-7153" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1629825, 39.9681941] + }, + "properties": { + "site_name": "Roosevelt Darby Center", + "Type": "Daytime Center", + "Eligibility": "All", + "Address": "804 N. Broad St.", + "Hours": "Mon.–Fri., 7 a.m.–5 p.m.", + "phone_number": "215-685-3700" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1487857, 39.954749] + }, + "properties": { + "site_name": "The Veterans Multi-Service Center", + "Type": "Daytime Center", + "Eligibility": "Veterans", + "Address": "213-217 N. 4th St.", + "Hours": "Tues. and Thurs., 9 a.m.–2 p.m.", + "phone_number": "215-923-2600" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1626373, 39.9676477] + }, + "properties": { + "site_name": "Red Shield Family Residence", + "Type": "After-hours Center", + "Eligibility": "Family", + "Address": "715 N. Broad St.", + "Hours": "5 p.m.–7 a.m. and holidays and weekends", + "phone_number": "215-787-2887" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1666462, 40.0559377] + }, + "properties": { + "site_name": "ACTS After Hour Intake Site", + "Type": "After-hours Center", + "Eligibility": "Family", + "Address": "1300 E Tulpehocken St.", + "Hours": "5 p.m.–7 a.m. on Mon.–Fri., 24 hours on holidays and weekends", + "phone_number": "267-297-7870" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1625853, 39.99481] + }, + "properties": { + "site_name": "Mike Hinson Resource Center", + "Type": "After-hours Center", + "Eligibility": "Single man", + "Address": "1701 W. Lehigh Ave.", + "Hours": "3 p.m.–7 a.m. and holidays and weekends", + "phone_number": "267-737-9099" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.2206558, 39.9645958] + }, + "properties": { + "site_name": "Gaudenzia’s House of Passage", + "Type": "After-hours Center", + "Eligibility": "Single woman", + "Address": "111 N. 49th St.", + "Hours": "5 p.m.–7 a.m. and holidays and weekends", + "phone_number": "267-713-7778" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1575831, 39.9887545] + }, + "properties": { + "site_name": "Eddie’s House", + "Type": "Youth access point", + "Eligibility": "Youth", + "Address": "2321 N. Broad St.", + "Hours": "Mon.–Fri., 10 a.m.–5 p.m.", + "phone_number": "215-921-8375, 215-307-3273" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [-75.1737432, 39.9541549] + }, + "properties": { + "site_name": "Synergy Project at Valley Youth House (11 Nov 24 Onwards)", + "Type": "Youth access point", + "Eligibility": "Youth", + "Address": "1880 JFK Blvd., Suite 660", + "Hours": "Mon.–Thurs., 8:30 a.m.–5:30 p.m.", + "phone_number": "888-468-7315, 215-925-3180" + } + } + ] + } + \ No newline at end of file diff --git a/icons/clothes-icon.png b/icons/clothes-icon.png new file mode 100644 index 0000000..3bf7a06 Binary files /dev/null and b/icons/clothes-icon.png differ diff --git a/icons/food-icon.png b/icons/food-icon.png new file mode 100644 index 0000000..ec4ed52 Binary files /dev/null and b/icons/food-icon.png differ diff --git a/icons/intake-icon.png b/icons/intake-icon.png new file mode 100644 index 0000000..1ad8d55 Binary files /dev/null and b/icons/intake-icon.png differ diff --git a/icons/my-location-circle.png b/icons/my-location-circle.png new file mode 100644 index 0000000..7dd62e9 Binary files /dev/null and b/icons/my-location-circle.png differ diff --git a/icons/my-location.png b/icons/my-location.png new file mode 100644 index 0000000..b41ef2e Binary files /dev/null and b/icons/my-location.png differ diff --git a/icons/shower-icon.png b/icons/shower-icon.png new file mode 100644 index 0000000..9192448 Binary files /dev/null and b/icons/shower-icon.png differ diff --git a/icons/toilet-icon.png b/icons/toilet-icon.png new file mode 100644 index 0000000..810e306 Binary files /dev/null and b/icons/toilet-icon.png differ diff --git a/icons/yellow-highlight.png b/icons/yellow-highlight.png new file mode 100644 index 0000000..f75a17e Binary files /dev/null and b/icons/yellow-highlight.png differ diff --git a/img/location.png b/img/location.png new file mode 100644 index 0000000..7a3e7ef Binary files /dev/null and b/img/location.png differ diff --git a/img/location.svg b/img/location.svg new file mode 100644 index 0000000..fd5e151 --- /dev/null +++ b/img/location.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..b8f86d6 --- /dev/null +++ b/index.html @@ -0,0 +1,68 @@ + + + + + + Philadelphia Homeless Resource Dashboard + + + + + + +
+
+
+

Philadelphia Homeless Resource Finder

+
+
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+

List of Nearby Resources

+

(Type in a location to see!)

+
    +
    +
    + +
    +
    + + +
    +
    +
    + +
    +
    + + + + + + diff --git a/script/address-search.js b/script/address-search.js new file mode 100644 index 0000000..b6ddb4b --- /dev/null +++ b/script/address-search.js @@ -0,0 +1,198 @@ +import { resourceLayers, resourceMap } from './resource-map.js'; +import { resourceIcons, darkBlueIcon } from './map-styles.js'; + +const addressEntry = document.querySelector('#address-search'); +const addressChoiceList = document.querySelector('#address-choices'); +let currentMarker = null; + + // Create marker for each resource icon bigger +export function zoomToResource(resource) { + const { lat, lon, name, type } = resource; + + resourceMap.setView([lat, lon], 16); + + if (currentMarker) { + resourceMap.removeLayer(currentMarker); + } + + + currentMarker = L.marker([lat, lon], { + icon: L.icon({ + iconUrl: resourceIcons[type].options.iconUrl, + iconSize: [48, 48], + iconAnchor: [24, 48], + popupAnchor: [0, -48], + }) + }).addTo(resourceMap); + + // Create a popup + const popup = currentMarker.bindPopup(name, { className: 'zoomed-popup' }).openPopup(); + + // Remove the marker after 3 seconds + setTimeout(() => { + resourceMap.removeLayer(currentMarker); + currentMarker = null; + }, 3000); +} + + +export function initializeAddressSearch(map) { + addressEntry.addEventListener('input', debounce(() => handleAddressEntryChange(map), 300)); + +async function handleAddressEntryChange(map) { + addressChoiceList.classList.remove('hidden'); + const partialAddress = addressEntry.value; + + if (partialAddress.trim() === '') { + addressChoiceList.classList.add('hidden'); + return; + } + + // Limit search to Philadelphia + const url = `https://nominatim.openstreetmap.org/search?format=json&q=${encodeURIComponent(partialAddress + ', Philadelphia')}&countrycodes=us`; + + try { + const response = await fetch(url); + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + const data = await response.json(); + + if (!Array.isArray(data) || data.length === 0) { + addressChoiceList.innerHTML = '
  • No results found
  • '; + return; + } + + let html = ''; + for (const result of data) { + const lihtml = ` +
  • + ${result.display_name} +
  • + `; + html += lihtml; + } + addressChoiceList.innerHTML = html; + + const choices = addressChoiceList.querySelectorAll('li'); + for (const choice of choices) { + choice.addEventListener('click', (evt) => handleAddressChoice(evt, map)); + } + } catch (error) { + console.error('Error fetching address data:', error); + addressChoiceList.innerHTML = '
  • Error fetching address data
  • '; + } +} + +let currentMarker = null; + +function handleAddressChoice(evt, map) { + const li = evt.target; + const lat = parseFloat(li.getAttribute('data-lat')); + const lon = parseFloat(li.getAttribute('data-lon')); + + addressEntry.value = li.innerText; + addressChoiceList.classList.add('hidden'); + + // Set the map view to the selected location with a zoom level of 15 + map.setView([lat, lon], 15); + + if (currentMarker) { + map.removeLayer(currentMarker); + } + + // Create the custom dark blue marker + currentMarker = L.marker([lat, lon], { icon: darkBlueIcon }).addTo(map); + + showNearbyResources(lat, lon, map); +} + +function showNearbyResources(lat, lon, map) { + const searchPoint = turf.point([lon, lat]); + let nearbyResources = []; + + Object.keys(resourceLayers).forEach(resourceType => { + if (resourceLayers[resourceType]) { + resourceLayers[resourceType].eachLayer(layer => { + const resourcePoint = turf.point([layer.getLatLng().lng, layer.getLatLng().lat]); + const distance = turf.distance(searchPoint, resourcePoint, { units: 'miles' }); + + // Log feature properties + console.log('Resource Type:', resourceType, 'Properties:', layer.feature.properties); + let siteName = layer.feature.properties.site_name; + let contactNumber = layer.feature.properties.phone_number || "-"; + + if (distance <= 5) { + nearbyResources.push({ + name: siteName, + type: resourceType, + contact: contactNumber, + distance: distance.toFixed(2), + lat: layer.getLatLng().lat, + lon: layer.getLatLng().lng + }); + } + }); + } + }); + displayNearbyResourcesList(nearbyResources); +} + +function formatResourceType(type) { + if (type === 'intakeCenters') { + return 'Intake Centers'; + } + return type.charAt(0).toUpperCase() + type.slice(1); +} + +function displayNearbyResourcesList(resources) { + const listContainer = document.getElementById('nearby-resources-list'); + listContainer.innerHTML = ''; + + resources.sort((a, b) => a.distance - b.distance); + + resources.forEach((resource, index) => { + const formattedType = formatResourceType(resource.type); + const iconUrl = resourceIcons[resource.type].options.iconUrl; + + const listItem = document.createElement('li'); + listItem.setAttribute('data-resource-id', index); + + listItem.innerHTML = ` +
    + ${formattedType} icon + ${formattedType} +
    + ${resource.name} +
    Contact: ${resource.contact} +
    (Distance: ${resource.distance} mil) + `; + + listItem.addEventListener('mouseenter', () => zoomToResource(resource)); + listItem.addEventListener('mouseleave', () => resetZoomToResource(resource)); + listItem.addEventListener('click', () => zoomToResource(resource)); + + listContainer.appendChild(listItem); + }); +} + + + +function resetZoomToResource(resource) { + const { lat, lon, type } = resource; + resourceLayers[type].eachLayer(layer => { + const layerLatLng = layer.getLatLng(); + if (layerLatLng.lat === lat && layerLatLng.lng === lon) { + layer.setIcon(resourceIcons[type]); + } + }); +} +} + +function debounce(func, delay) { + let timeoutId; + return function (...args) { + clearTimeout(timeoutId); + timeoutId = setTimeout(() => func.apply(this, args), delay); + }; +} \ No newline at end of file diff --git a/script/main.js b/script/main.js new file mode 100644 index 0000000..a0c7ce6 --- /dev/null +++ b/script/main.js @@ -0,0 +1,33 @@ +const eventBus = new EventTarget(); + +let food, clothing, showers, toilets, intakeCenters; + +async function fetchResources() { + [food, clothing, showers, toilets, intakeCenters] = await Promise.all([ + fetch('data/FreeFood.geojson').then(res => res.json()), + fetch('data/FreeClothingAll.geojson').then(res => res.json()), + fetch('data/FreeShowersLaundry.geojson').then(res => res.json()), + fetch('data/FreeToilets.geojson').then(res => res.json()), + fetch('data/IntakeCenters.geojson').then(res => res.json()) + ]); + console.log('Resources fetched:', { food, clothing, showers, toilets, intakeCenters }); +} + +import { initializeResourceMap } from './resource-map.js'; +import { initializeAddressSearch } from './address-search.js'; + +async function initializeApp() { + await fetchResources(); + + const resourceData = { food, clothing, showers, toilets, intakeCenters }; + + const resourceMap = initializeResourceMap(eventBus, resourceData); + console.log('Map initialized:', resourceMap); + + initializeAddressSearch(resourceMap); +} + +// Ensure the app initializes after the DOM is fully loaded +document.addEventListener('DOMContentLoaded', () => { + initializeApp(); +}); \ No newline at end of file diff --git a/script/map-styles.js b/script/map-styles.js new file mode 100644 index 0000000..d2ca853 --- /dev/null +++ b/script/map-styles.js @@ -0,0 +1,40 @@ +// Define custom icons for different resource types +export const resourceIcons = { + food: L.icon({ + iconUrl: 'icons/food-icon.png', + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], + }), + clothing: L.icon({ + iconUrl: 'icons/clothes-icon.png', + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], + }), + showers: L.icon({ + iconUrl: 'icons/shower-icon.png', + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], + }), + toilets: L.icon({ + iconUrl: 'icons/toilet-icon.png', + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], + }), + intakeCenters: L.icon({ + iconUrl: 'icons/intake-icon.png', + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], + }), + }; + + export const darkBlueIcon = L.icon({ + iconUrl: 'icons/my-location-circle.png', + iconSize: [38, 45], + iconAnchor: [19, 45], + popupAnchor: [0, -45] + }); \ No newline at end of file diff --git a/script/resource-map.js b/script/resource-map.js new file mode 100644 index 0000000..35c8143 --- /dev/null +++ b/script/resource-map.js @@ -0,0 +1,89 @@ +import { resourceIcons } from './map-styles.js'; +import { zoomToResource } from './address-search.js'; + +export let resourceLayers = {}; +export let resourceMap; +let resourceData = {}; + +export function initializeResourceMap(eventBus, data) { + resourceData = data; + + + if (resourceMap) { + resourceMap.remove(); + } + + resourceMap = L.map('resource-map').setView([40.047591, -75.153350], 10); + + const mapboxKey = 'pk.eyJ1IjoiY2xhdWRsb3ciLCJhIjoiY20weTY3MDZoMDNocTJrbXpqa3lqZWJlaSJ9.3N1iXpEvsJ0GwajGVwwkTg'; + const mapboxStyle = 'mapbox/light-v11'; + + const baseTileLayer = L.tileLayer(`https://api.mapbox.com/styles/v1/${mapboxStyle}/tiles/512/{z}/{x}/{y}{r}?access_token=${mapboxKey}`, { + maxZoom: 19, + attribution: '© Mapbox © Stamen Design © OpenStreetMap', + }); + + baseTileLayer.addTo(resourceMap); + + // Initialize layers based on initial checkbox states + updateLayers(); + + // Add event listener for checkbox changes + document.getElementById('filter-form').addEventListener('change', updateLayers); + + return resourceMap; + + function updateLayers() { + const filters = { + food: document.getElementById('food-checkbox').checked, + clothing: document.getElementById('clothing-checkbox').checked, + showers: document.getElementById('showers-checkbox').checked, + toilets: document.getElementById('toilets-checkbox').checked, + intakeCenters: document.getElementById('intakeCenters-checkbox').checked, + }; + + Object.entries(filters).forEach(([resourceType, isChecked]) => { + if (isChecked && !resourceLayers[resourceType]) { + addResourceLayer(resourceType); + } else if (!isChecked && resourceLayers[resourceType]) { + removeResourceLayer(resourceType); + } + }); + } + + function addResourceLayer(resourceType) { + if (resourceLayers[resourceType]) return; + + const geojsonData = resourceData[resourceType]; + + resourceLayers[resourceType] = L.geoJSON(geojsonData, { + pointToLayer: (feature, latlng) => { + const marker = L.marker(latlng, { icon: resourceIcons[resourceType] }); + + // Add click event to the marker to zoom and show the popup + marker.on('click', () => { + const resource = { + lat: latlng.lat, + lon: latlng.lng, + name: feature.properties.site_name || 'Unknown', + }; + + zoomToResource(resource); + }); + + return marker; + }, + onEachFeature: (feature, layer) => { + const siteName = feature.properties.site_name || 'Unknown'; + layer.bindTooltip(siteName, { permanent: false, direction: 'right' }); + } + }).addTo(resourceMap); + } + + function removeResourceLayer(resourceType) { + if (resourceLayers[resourceType]) { + resourceMap.removeLayer(resourceLayers[resourceType]); + delete resourceLayers[resourceType]; + } + } +}