diff --git a/README.md b/README.md index 3900ceb..de24934 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,14 @@ -# User Engagement Project +# Project Description -Your final project for the class will incorporate deeper user engegement. The project should build upon many of the concepts learned throughout the class, incorporate some significant amount of interactivity, and storing and recalling data in a way that multiple users of the application can benefit from. _The focus of this project will be on engagement -- i.e. inviting members of the public to create or add to a dataset in some way._ +This project showcases the site locations, serving hours, and contact information of the DC Summer Meal Program. It is designed to help both providers and beneficiaries access relevant information easily and interact efficiently: -For this project you may extend your story map or your dashboard, as long as you have some realistic addition of functionality that allows for user engagement. You may also start a new project. + - For Providers: Program providers can log in to publish updates or announcements directly on the platform. + - For Beneficiaries: Beneficiaries can browse all available information without needing to log in. They can also anonymously leave comments or feedback and read reviews left by others. -## Timeline +# Purpose of the Project -- This project will take us through the end of the semester on **December 4**, when we will have project presentations. -- To help you with your timeline, here are some milestones: - - **October 30**: Project proposal due - - **November 6**: Initial wireframes due - - **November 20**: Plan for completion - - **December 4**: Project presentations +The DC Summer Meal Program plays a critical role in addressing food insecurity by providing free meals to children during the summer. This project enhances accessibility by centralizing meal program information, making it easier for families in need to locate resources quickly. Additionally, the anonymous comment feature encourages users to share their experiences and suggestions without fear of judgment, fostering community engagement and improving the program's outreach. -## Instructions +# Team Members -Fork this repository, and add your project code to it. When you are ready to submit your project, refer to the Submission Checklist below. - -## Project Proposal - -You proposal doesn't have to be deep. It should: -1. Make clear who the user of your project is. This should be more specific that "the general public". Refer to the [18F Method Card on Personas](https://guides.18f.gov/methods/decide/personas/) or the Digtal.gov article on [Improving Customer Experience with Digital Personas](https://digital.gov/2017/06/20/improving-customer-experience-with-digital-personas/). -2. Describe what you'll be doing in your tool to meet your user's needs. -3. Describe any datasets that you will be working with, including any data that users will put in. - -## Initial Wireframes - -Use wireframes to show what your project or your new feature will look like. You can use any tool you like to create these wireframes. - -## Plan for Completion - -Describe what you will need to do to complete your project. This should include a list of tasks that you will need to complete, and a timeline for when you will complete them. I suggest using a tool like GitHub Projects to list out and manage your tasks/issues. - -## Submission Checklist - -- [ ] Pushed latest code to the `main` branch of your repository -- [ ] Linted JS and CSS code -- [ ] Turned on GitHub Pages for the repository and verified that your site works when deployed -- [ ] Submitted a pull request to the original repository in the class organization -- [ ] In the PR **title**, included your name at least -- [ ] In the PR **description**, included a brief description of your topic, and your target audience \ No newline at end of file +E Chin Li & Yuan Ji \ No newline at end of file diff --git a/announcement.html b/announcement.html new file mode 100644 index 0000000..a39c2f2 --- /dev/null +++ b/announcement.html @@ -0,0 +1,179 @@ + + + + + + Announcements + + + + + + + +

Announcements

+ + +
+ + +
+ + + + + + + +
+ + + + + + + + + + + + + + diff --git a/comment.html b/comment.html new file mode 100644 index 0000000..c8b8cc7 --- /dev/null +++ b/comment.html @@ -0,0 +1,108 @@ + + + + + + Summer Meals Comments + + + + + + + +

Share your ideas and express your thanks!

+ +
+ + + + +
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/css/announcement.css b/css/announcement.css new file mode 100644 index 0000000..2923426 --- /dev/null +++ b/css/announcement.css @@ -0,0 +1,86 @@ +body { + margin: 0; + font-family: Quicksand, serif; + background-color: #f5f5f5; + overflow-y: auto; + padding: 0 20px; +} + +h1 { + font-size: 40px; + padding: 20px; + background-color: #4a8d60; + color: white; + border-radius: 10px; + text-align: center; + margin-bottom: 20px; +} + +textarea { + width: 100%; + padding: 10px; + height: 35px; + border: 2px solid #9da7a1; + border-radius: 10px; + font-size: 14px; + resize: none; + box-sizing: border-box; + margin-bottom: 20px; +} + +button { + padding: 10px 20px; + font-size: 16px; + background-color: #4a8d60; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.3s; +} + +button:hover { + background-color: #2d6436; +} + +#login-section { + text-align: center; + margin-bottom: 20px; +} + +#announcements-display { + margin-top: 40px; +} + +.announcement-item { + background-color: #fff; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + margin-bottom: 20px; + padding: 15px; +} + +.announcement-item p { + font-size: 16px; + color: #333; +} + +.back-button { + padding: 10px 20px; + font-size: 16px; + background-color: #e0e0e0; + color: #333; + border: none; + border-radius: 5px; + cursor: pointer; + text-align: center; + text-decoration: none; + display: inline-block; + transition: background-color 0.3s; + margin-bottom: 20px; + } + + .back-button:hover { + background-color: #ccc; + } + \ No newline at end of file diff --git a/css/comment.css b/css/comment.css new file mode 100644 index 0000000..7eeca60 --- /dev/null +++ b/css/comment.css @@ -0,0 +1,98 @@ + +body { + margin: 0; + font-family: Quicksand, serif; + background-color: #f5f5f5; + overflow-y: auto; + padding: 0 20px; +} + +h1 { + font-size: 40px; + padding: 20px; + background-color: #4a8d60; + color: white; + border-radius: 10px; + text-align: center; + margin-bottom: 20px; +} + +textarea { + width: 100%; + padding: 10px; + border: 2px solid #9da7a1; + border-radius: 10px; + font-size: 14px; + resize: none; + box-sizing: border-box; + margin-bottom: 20px; +} + +button { + padding: 10px 20px; + font-size: 16px; + background-color: #4a8d60; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.3s; +} + +button:hover { + background-color: #2d6436; +} + +#comments-display { + margin-top: 40px; +} + +.comment-item { + background-color: #fff; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + margin-bottom: 20px; + padding: 15px; + transition: transform 0.3s, box-shadow 0.3s; +} + +.comment-item:hover { + transform: scale(1.05); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); +} + +.comment-item p { + font-size: 16px; + color: #333; +} + +#comments-display p { + font-size: 18px; + text-align: center; + color: #999; +} + +form { + display: flex; + flex-direction: column; + margin-bottom: 30px; +} + +.back-button { + padding: 10px 20px; + font-size: 16px; + background-color: #e0e0e0; + color: #333; + border: none; + border-radius: 5px; + cursor: pointer; + text-align: center; + text-decoration: none; + display: inline-block; + transition: background-color 0.3s; + margin-bottom: 20px; +} + +.back-button:hover { + background-color: #ccc; +} diff --git a/css/map.css b/css/map.css new file mode 100644 index 0000000..828408f --- /dev/null +++ b/css/map.css @@ -0,0 +1,187 @@ +body { + margin: 0; + font-family: Quicksand, serif; + overflow-y: hidden; + overflow-x: hidden; +} + +.main-title { + width: 100%; + padding: 35px; + margin: 0; + text-align: left; + font-size: 50px; + position: relative; +} + +.main-title .logo { + width: 160px; + height: auto; + margin-right: 15px; +} + +.main-title .bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0.3; + object-fit: cover; + z-index: -1; +} + +h1 { + font-size: 35px; + padding: 10px; + border-radius: 15px; + color: rgb(49 83 51); + font-weight: bold; +} + +.container { + display: flex; + height: 100vh; +} + +.sidebar { + width: 400px; + padding: 20px; + background: linear-gradient(to bottom, #fff 40%, #d0d0d0); + overflow-y: auto; +} + +#map { + flex-grow: 1; + height: 100vh; + width: auto; +} + +h3 { + font-size: 25px; + background-color: #f0f0f0; + padding: 10px; + border-radius: 5px; + color: rgb(96 119 80); +} + +.searchbox { + width: 60%; + height: 35px; + padding: 10px; + border: 2px solid #9da7a1; + border-radius: 10px; + font-size: 14px; + box-sizing: border-box; +} + + +.filterbutton { + padding: 8px 12px; + font-size: 14px; + background-color: #4a8d60; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; +} + +.filterbutton:hover { + background-color: #2d6436; +} + +.filterbutton-reset{ + padding: 8px 12px; + font-size: 14px; + border: none; + background-color: #e0e0e0; + border-radius: 4px; + cursor: pointer; +} + +.filterbutton-reset:hover{ + background-color: #afafaf; +} + +input[type="checkbox"] { + transform: scale(1.5); + margin-right: 10px; + border-radius: 10px; + cursor: pointer; +} + +.reset-button { + padding: 8px 12px; + font-size: 14px; + background-color: #4a8d60; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; +} + +.reset-button:hover { + background-color: #2d6436; +} + +.meal-types label { + display: block; + margin-bottom: 5px; +} + +.days-open label { + display: block; + margin-bottom: 5px; +} + +.site-list { + font-family: Itim, cursive; + margin-top: 20px; +} + +.site-item { + margin-bottom: 5px; + padding: 5px; + border-radius: 8px; + background-color: #e0e0e0; + transition: background-color 0.3s; +} + +.site-item:hover { + background-color: #e0faea; +} + +.site-name { + font-size: 18px; + font-weight: bold; + color: #000; +} + +.site-address { + font-size: 14px; + color: #888; +} + +.site-phone { + font-size: 14px; + color: #888; +} + +.jump-button { + padding: 10px 20px; + font-size: 20px; + background-color: #e0e0e0; + color: #333; + border: none; + border-radius: 5px; + cursor: pointer; + text-align: center; + text-decoration: none; + width: 100%; + transition: background-color 0.3s; + margin-bottom: 20px; +} + +.jump-button:hover { + background-color: #ccc; +} diff --git a/data/SummerMeals.geojson b/data/SummerMeals.geojson new file mode 100644 index 0000000..05198ad --- /dev/null +++ b/data/SummerMeals.geojson @@ -0,0 +1,257 @@ +{ +"type": "FeatureCollection", +"name": "Summer_Meals_Sites", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "OBJECTID": 1, "NAME": "St. Mary's Baptist Church", "ADDRESS": "8008 EASTERN AVENUE NW", "PHONE": "202-726-2424", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-06-28T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Shermaine", "CONTACT_LAS_NAME": "Mounonbai", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-785-9356", "ZIPCODE": "20012", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.98700804, "LONGITUDE": -77.03035721000001, "XCOORD": 397369.91, "YCOORD": 146564.37, "MAR_ID": 256945, "GIS_ID": "SummerMealSitePt_205", "GLOBALID": "{E9BAD347-9B9E-4E05-A0C2-D9DEABA1BF52}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.030359510929003, 38.987015505366173 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2, "NAME": "Shepard Park Library", "ADDRESS": "7420 GEORGIA AVENUE NW", "PHONE": "202-541-6100", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Mirna", "CONTACT_LAS_NAME": "Turcois", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-541-6100", "ZIPCODE": "20012", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.98028088, "LONGITUDE": -77.02703545, "XCOORD": 397657.48, "YCOORD": 145817.5, "MAR_ID": 253522, "GIS_ID": "SummerMealSitePt_201", "GLOBALID": "{DA2BE3AF-6DF1-422D-9E07-C7E59E30E013}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.027037745680659, 38.980288354068108 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3, "NAME": "Fort Stevens Recreation Center", "ADDRESS": "1327 VAN BUREN STREET NW", "PHONE": "202-541-3754", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Nicole", "CONTACT_LAS_NAME": "Carroll", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-541-3754", "ZIPCODE": "20012", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.97026948, "LONGITUDE": -77.03109081, "XCOORD": 397305.72, "YCOORD": 144706.25, "MAR_ID": 290152, "GIS_ID": "SummerMealSitePt_140", "GLOBALID": "{7F519EF2-26E3-49F6-B81A-3468985A8607}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.031093104136175, 38.970276948866051 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4, "NAME": "Takoma Community Center", "ADDRESS": "300 VAN BUREN STREET NW", "PHONE": "202-576-7114", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Rochelle ", "CONTACT_LAS_NAME": "Bradshaw", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-279-0479", "ZIPCODE": "20012", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.96888702, "LONGITUDE": -77.01805168, "XCOORD": 398435.64, "YCOORD": 144552.48, "MAR_ID": 296168, "GIS_ID": "SummerMealSitePt_209", "GLOBALID": "{1BF2FC70-7FCD-4E08-959F-11A5178BD531}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.018053969556902, 38.968894491797116 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 5, "NAME": "Lamond Recreation Center", "ADDRESS": "20 TUCKERMAN STREET NE", "PHONE": "202-576-9541", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Lyndon", "CONTACT_LAS_NAME": "Debellote", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-9541", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.96777948, "LONGITUDE": -77.008234, "XCOORD": 399286.43, "YCOORD": 144429.41, "MAR_ID": 296166, "GIS_ID": "SummerMealSitePt_162", "GLOBALID": "{ECD60D28-B253-4CA0-9C44-9D8CC5B3584A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.008236286464523, 38.967786951038271 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 6, "NAME": "Lamond", "ADDRESS": "6200 KANSAS AVENUE NE", "PHONE": "202-722-4421", "SPONSORING": "Hope Community PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:45 - 12:15", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Trina ", "CONTACT_LAS_NAME": "Gross", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-722-4421", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:30 - 8:30", "COMMENTS": null, "LATITUDE": 38.96571909, "LONGITUDE": -77.00860715, "XCOORD": 399254.07, "YCOORD": 144200.69, "MAR_ID": 304055, "GIS_ID": "SummerMealSitePt_249", "GLOBALID": "{C4433964-4C34-4068-9E81-78D0B9F2F56C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.008609444730027, 38.965726558012356 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 7, "NAME": "Sela PCS", "ADDRESS": "6015 CHILLUM PLACE NE", "PHONE": "202-670-7352", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B", "WARD": "Ward 4", "CONTACT_FI_NAME": "Camerra", "CONTACT_LAS_NAME": "Taliaferro", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-670-7352", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.96387483, "LONGITUDE": -77.00736469, "XCOORD": 399361.73, "YCOORD": 143995.95, "MAR_ID": 288763, "GIS_ID": "SummerMealSitePt_47", "GLOBALID": "{8541D2D9-88B2-4DF1-997B-EACEECEB1046}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.007366983924015, 38.96388229380775 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 8, "NAME": "Higher Achievement- Brightwood", "ADDRESS": "6008 GEORGIA AVENUE NW", "PHONE": "202-423-6504", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-29T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Chavonte", "CONTACT_LAS_NAME": "Harris ", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-423-6504", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:15", "COMMENTS": null, "LATITUDE": 38.96319196, "LONGITUDE": -77.02832854, "XCOORD": 397544.85, "YCOORD": 143920.5, "MAR_ID": 253198, "GIS_ID": "SummerMealSitePt_44", "GLOBALID": "{583BF338-C12A-47E6-BF40-FB8F8222149B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.028330834239412, 38.96319942072207 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 9, "NAME": "The Kennedy (Freedom School)", "ADDRESS": "701 OGLETHORPE STREET NW", "PHONE": "240-372-3818", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "LaMont", "CONTACT_LAS_NAME": "Geddis", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-372-3818", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.96159511, "LONGITUDE": -77.02275844, "XCOORD": 398027.55, "YCOORD": 143743.1, "MAR_ID": 250438, "GIS_ID": "SummerMealSitePt_215", "GLOBALID": "{D8C5434F-F7C3-49DA-86FF-FB2286597509}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022760729753827, 38.961602573380993 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 10, "NAME": "Brightwood EC", "ADDRESS": "1300 NICHOLSON STREET NW", "PHONE": "202-722-5670", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.96053573, "LONGITUDE": -77.03068885, "XCOORD": 397340.19, "YCOORD": 143625.7, "MAR_ID": 294515, "GIS_ID": "SummerMealSitePt_57", "GLOBALID": "{E0222E32-6557-42ED-80F0-C02E77540C95}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.030691143018444, 38.960543191189338 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 11, "NAME": "Riggs LaSalle Recreation Center", "ADDRESS": "501 RIGGS ROAD NE", "PHONE": "202-674-6619", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Zenobia", "CONTACT_LAS_NAME": "Moton", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-674-6619", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.95997214, "LONGITUDE": -76.99988254, "XCOORD": 400010.18, "YCOORD": 143562.69, "MAR_ID": 294489, "GIS_ID": "SummerMealSitePt_196", "GLOBALID": "{42FCC76E-47C6-428D-92E6-7B41BE4E926A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999884831417219, 38.959979609350128 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 12, "NAME": "Emery Heights Community Center", "ADDRESS": "5701 GEORGIA AVENUE NW", "PHONE": "202-576-3211", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-22T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Robert ", "CONTACT_LAS_NAME": "Robinson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-288-1623", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.95863524, "LONGITUDE": -77.02784907, "XCOORD": 397586.25, "YCOORD": 143414.65, "MAR_ID": 309352, "GIS_ID": "SummerMealSitePt_133", "GLOBALID": "{AAD39E44-AC70-4E87-A3B8-8E873925F219}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.027851362902268, 38.958642708952851 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 13, "NAME": "The C.H.I.L.D. Center", "ADDRESS": "202 RIGGS ROAD NE", "PHONE": "202-269-6805", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Jacqueline", "CONTACT_LAS_NAME": "Oliver", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-330-9258", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.95635122, "LONGITUDE": -77.00344239, "XCOORD": 399701.63, "YCOORD": 143160.74, "MAR_ID": 302032, "GIS_ID": "SummerMealSitePt_36", "GLOBALID": "{010D2EFF-FBB7-416B-8524-448256973CB0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.003444674283571, 38.956358687771278 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 14, "NAME": "Lamond-Riggs Library", "ADDRESS": "5401 SOUTH DAKOTA AVENUE NE", "PHONE": "202-541-6265", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Robin ", "CONTACT_LAS_NAME": "Imperial", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-541-6265", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.95512813, "LONGITUDE": -76.99958432, "XCOORD": 400036.03, "YCOORD": 143024.96, "MAR_ID": 288645, "GIS_ID": "SummerMealSitePt_163", "GLOBALID": "{3E25F4CF-1ED7-410F-8456-E54B3B93A573}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999586604746767, 38.95513559548462 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 15, "NAME": "DC Bilingual / Kids and Kulture Camp", "ADDRESS": "33 RIGGS ROAD NE", "PHONE": "202-643-8787", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:15- 1:15", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Jania", "CONTACT_LAS_NAME": "Otey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-643-8787", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:45 - 8:30", "COMMENTS": null, "LATITUDE": 38.95492264, "LONGITUDE": -77.00663786, "XCOORD": 399424.65, "YCOORD": 143002.17, "MAR_ID": 155991, "GIS_ID": "SummerMealSitePt_128", "GLOBALID": "{F872F137-E01D-4D29-BD29-3AF37A1F6FDC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.006640145393604, 38.954930109115324 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 16, "NAME": "Truesdell EC", "ADDRESS": "800 INGRAHAM STREET NW", "PHONE": "202-576-6205", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.95396869, "LONGITUDE": -77.02507158, "XCOORD": 397826.84, "YCOORD": 142896.55, "MAR_ID": 294497, "GIS_ID": "SummerMealSitePt_95", "GLOBALID": "{1186CCBD-EA58-4641-B982-CE0C2CB0E222}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.025073870550145, 38.953976155311075 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 17, "NAME": "Washington Latin PCS", "ADDRESS": "5200 2ND STREET NW", "PHONE": "202-223-1111", "SPONSORING": "Washington Latin PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Martita", "CONTACT_LAS_NAME": "Fleming", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-223-1111", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.95388895, "LONGITUDE": -77.01381902, "XCOORD": 398802.19, "YCOORD": 142887.49, "MAR_ID": 294608, "GIS_ID": "SummerMealSitePt_250", "GLOBALID": "{FD3A5C7F-E05E-474E-BA97-2D51886498C0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.013821315264224, 38.953896412358958 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 18, "NAME": "Deal MS", "ADDRESS": "3815 FORT DRIVE NW", "PHONE": "202-939-2010", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-05T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 3", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20016", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.95289674, "LONGITUDE": -77.07519907, "XCOORD": 393481.78, "YCOORD": 142779.94, "MAR_ID": 277548, "GIS_ID": "SummerMealSitePt_63", "GLOBALID": "{FAF7E65F-C5A3-43EA-B397-94A9F6AC1CD9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.075201378054615, 38.952904202814963 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 19, "NAME": "The Davis Center", "ADDRESS": "5000 14TH STREET NW", "PHONE": "202-277-6110", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Beatrice", "CONTACT_LAS_NAME": "Williams", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-277-6110", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:00", "COMMENTS": null, "LATITUDE": 38.95097432, "LONGITUDE": -77.03406352, "XCOORD": 397047.31, "YCOORD": 142564.4, "MAR_ID": 255780, "GIS_ID": "SummerMealSitePt_212", "GLOBALID": "{197D3DE3-A014-456D-BB54-3E87F3007B96}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.034065818834478, 38.950981783201868 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 20, "NAME": "The Kingsbury Center/Kids and Culture Camp", "ADDRESS": "5000 14TH STREET NW", "PHONE": "240-643-8787", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:15 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Jania", "CONTACT_LAS_NAME": "Otey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-643-8787", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:45 - 8:30", "COMMENTS": null, "LATITUDE": 38.95097432, "LONGITUDE": -77.03406352, "XCOORD": 397047.31, "YCOORD": 142564.4, "MAR_ID": 255780, "GIS_ID": "SummerMealSitePt_216", "GLOBALID": "{44369D7E-40D2-46F7-ACB4-6E52F92BCF64}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.034065818834478, 38.950981783201868 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 21, "NAME": "Woodrow Wilson HS", "ADDRESS": "3950 CHESAPEAKE STREET NW", "PHONE": "202-282-0120", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 3", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20016", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.95015672, "LONGITUDE": -77.0777757, "XCOORD": 393258.18, "YCOORD": 142475.96, "MAR_ID": 294587, "GIS_ID": "SummerMealSitePt_99", "GLOBALID": "{8CD8CDAB-2375-4764-BF8F-35EBEADFDA8E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.077778006698566, 38.950164181033365 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 22, "NAME": "North Michigan Park Recreation Center", "ADDRESS": "1333 EMERSON STREET NE", "PHONE": "202-541-3526", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Joseph", "CONTACT_LAS_NAME": "Clark", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-541-3526", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.94996155, "LONGITUDE": -76.98638201, "XCOORD": 401180.45, "YCOORD": 142451.51, "MAR_ID": 296163, "GIS_ID": "SummerMealSitePt_181", "GLOBALID": "{14E05C9C-A5AC-4371-9D02-04907C6B8E25}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.986384289276714, 38.949969010153318 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 23, "NAME": "Church of Christ", "ADDRESS": "4801 16TH STREET NW", "PHONE": "202-882-6168", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-22T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Edward", "CONTACT_LAS_NAME": "Wilson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-882-6168", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.94851162, "LONGITUDE": -77.03593684000001, "XCOORD": 396884.82, "YCOORD": 142291.08, "MAR_ID": 255733, "GIS_ID": "SummerMealSitePt_121", "GLOBALID": "{B226ABF0-89E5-465B-812D-18864EE9E5F5}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.03593913342219, 38.948519079939274 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 24, "NAME": "The Preparatory School of DC", "ADDRESS": "4501 16TH STREET NW", "PHONE": "202-722-5080", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Basma", "CONTACT_LAS_NAME": "Muhammed", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-722-5080", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.94546003, "LONGITUDE": -77.03575777, "XCOORD": 396900.21, "YCOORD": 141952.32, "MAR_ID": 255485, "GIS_ID": "SummerMealSitePt_218", "GLOBALID": "{D6131BA8-4A7D-46FE-9A8C-50D30C73E285}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.035760062822746, 38.945467489201249 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 25, "NAME": "YMCA Calomiris #2", "ADDRESS": "1918 ALLISON STREET NE", "PHONE": "202-526-4233", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Vanessa", "CONTACT_LAS_NAME": "Wright", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-526-4233", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.94543587, "LONGITUDE": -76.97757825, "XCOORD": 401943.71, "YCOORD": 141949.27, "MAR_ID": 310297, "GIS_ID": "SummerMealSitePt_236", "GLOBALID": "{6994C76B-B98A-43E3-9C92-A7CE49E53D40}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.977580534147407, 38.945443334699966 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 26, "NAME": "YMCA Calomiris #1", "ADDRESS": "1906 ALLISON STREET NE", "PHONE": "202-526-4233", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Vanessa ", "CONTACT_LAS_NAME": "Wright", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-526-4233", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.94541072, "LONGITUDE": -76.97794405, "XCOORD": 401912.0, "YCOORD": 141946.47, "MAR_ID": 302514, "GIS_ID": "SummerMealSitePt_235", "GLOBALID": "{D6778E95-7FEF-4CA8-A71D-3512C2ECAC45}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.977946334034556, 38.94541818107944 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 27, "NAME": "Macfarland ES", "ADDRESS": "4400 IOWA AVENUE NW", "PHONE": "202-671-6033", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.94360856, "LONGITUDE": -77.02777641, "XCOORD": 397592.04, "YCOORD": 141746.55, "MAR_ID": 294595, "GIS_ID": "SummerMealSitePt_76", "GLOBALID": "{090FCC15-38C1-46CB-8817-179D3FEABAD5}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.027778702823682, 38.943616023377416 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 28, "NAME": "Upshur Recreation Center", "ADDRESS": "4300 ARKANSAS AVENUE NW", "PHONE": "202-576-6842", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-22T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Robert", "CONTACT_LAS_NAME": "Robinson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-6842", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.94331373, "LONGITUDE": -77.0323147, "XCOORD": 397198.6, "YCOORD": 141713.95, "MAR_ID": 295147, "GIS_ID": "SummerMealSitePt_226", "GLOBALID": "{902B084D-4864-4259-8908-4DA470DEB7E0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.032316997449044, 38.943321186548708 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 29, "NAME": "Mobile Meals at Upshur Pool", "ADDRESS": "4300 ARKANSAS AVENUE NW", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "2:00 - 3:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.94331373, "LONGITUDE": -77.0323147, "XCOORD": 397198.6, "YCOORD": 141713.95, "MAR_ID": 295147, "GIS_ID": "SummerMealSitePt_23", "GLOBALID": "{F9637319-8B3D-4638-B27A-7A3AD6EAB4C9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.032316997449044, 38.943321186548708 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 30, "NAME": "Petworth Library", "ADDRESS": "4200 KANSAS AVENUE NW", "PHONE": "202-243-1187", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Jeff", "CONTACT_LAS_NAME": "Neher", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-243-1188", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.94220022, "LONGITUDE": -77.02613743000001, "XCOORD": 397734.08, "YCOORD": 141590.17, "MAR_ID": 295146, "GIS_ID": "SummerMealSitePt_189", "GLOBALID": "{C8141A94-9DC0-4532-A712-73B07B86D868}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.026139719672315, 38.942207685179064 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 31, "NAME": "Petworth Recreation Center ", "ADDRESS": "801 TAYLOR STREET NW", "PHONE": "202-576-6850", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Rocehelle", "CONTACT_LAS_NAME": "Bradshaw", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-279-0479", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.9410097, "LONGITUDE": -77.02400351, "XCOORD": 397919.04, "YCOORD": 141457.96, "MAR_ID": 296169, "GIS_ID": "SummerMealSitePt_190", "GLOBALID": "{73A5FAA2-E321-48ED-AA57-09A772DBC314}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.024005801321081, 38.941017156759465 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 32, "NAME": "Michigan Park Christian Church", "ADDRESS": "1600 TAYLOR STREET NE", "PHONE": "202-288-8622", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-27T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Dellie", "CONTACT_LAS_NAME": "Reed", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-288-8622", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.94098207, "LONGITUDE": -76.98220189, "XCOORD": 401542.99, "YCOORD": 141454.77, "MAR_ID": 286330, "GIS_ID": "SummerMealSitePt_175", "GLOBALID": "{6FE89ADC-502E-4B5F-A79E-B6211778CD95}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982204169068808, 38.940989531420605 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 33, "NAME": "Boys and Girls Club- George Ferris", "ADDRESS": "801 SHEPHERD STREET NW", "PHONE": "202-576-7285", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Tonia", "CONTACT_LAS_NAME": "Young", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-7285", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.94008927, "LONGITUDE": -77.02381045, "XCOORD": 397935.75, "YCOORD": 141355.78, "MAR_ID": 252510, "GIS_ID": "SummerMealSitePt_38", "GLOBALID": "{A78904D6-EFD6-477E-B287-73E86B632952}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.023812746883323, 38.9400967288815 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 34, "NAME": "Mary's Center", "ADDRESS": "3912 GEORGIA AVENUE NW", "PHONE": "202-851-3968", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-26T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Kony", "CONTACT_LAS_NAME": "Serrano Portillo", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-851-3968", "ZIPCODE": "20011", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.93924978, "LONGITUDE": -77.02511, "XCOORD": 397823.06, "YCOORD": 141262.62, "MAR_ID": 224825, "GIS_ID": "SummerMealSitePt_171", "GLOBALID": "{CA8C82DC-1285-4284-B56B-D7F46F0FC917}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.025112294158419, 38.939257244181142 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 35, "NAME": "Brookland MS", "ADDRESS": "1150 MICHIGAN AVENUE NE", "PHONE": "202-759-1999", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.93874518, "LONGITUDE": -76.99114684, "XCOORD": 400767.54, "YCOORD": 141206.38, "MAR_ID": 294507, "GIS_ID": "SummerMealSitePt_58", "GLOBALID": "{9693F665-A74D-4C22-B07C-34C0281E6765}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.991149125420876, 38.93875298070602 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 36, "NAME": "Turkey Thicket Recreation Center", "ADDRESS": "1100 MICHIGAN AVENUE NE", "PHONE": "202-576-9238", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Paula ", "CONTACT_LAS_NAME": "Allen", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-9238", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.93806432, "LONGITUDE": -76.99260002, "XCOORD": 400641.56, "YCOORD": 141130.75, "MAR_ID": 74603, "GIS_ID": "SummerMealSitePt_225", "GLOBALID": "{E5D4891E-E0DF-4B0F-89EA-97E39B617C96}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.992602307530277, 38.938071784232477 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 37, "NAME": "Raymond Recreation Center", "ADDRESS": "3725 10TH STREET NW", "PHONE": "202-671-2182", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 4", "CONTACT_FI_NAME": "Rochelle ", "CONTACT_LAS_NAME": "Bradshaw", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-279-0479", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.93643168, "LONGITUDE": -77.02663393, "XCOORD": 397690.85, "YCOORD": 140949.86, "MAR_ID": 310493, "GIS_ID": "SummerMealSitePt_194", "GLOBALID": "{6688091A-6FD0-4BDF-BC30-7EF86E318BD2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.026636223322129, 38.936439471650189 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 38, "NAME": "Parkview Recreation Center", "ADDRESS": "693 OTIS PLACE NW", "PHONE": "202-279-0479", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Rochelle ", "CONTACT_LAS_NAME": "Bradshaw", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-279-0479", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.93500321, "LONGITUDE": -77.02135031, "XCOORD": 398148.9, "YCOORD": 140791.13, "MAR_ID": 295160, "GIS_ID": "SummerMealSitePt_186", "GLOBALID": "{EF191DE5-41AD-42A6-9DC1-6DDE036C52AB}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.021352606605319, 38.935010668741299 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 39, "NAME": "Bancroft ES", "ADDRESS": "1755 NEWTON STREET NW", "PHONE": "202-673-7280", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.93431836, "LONGITUDE": -77.04055344, "XCOORD": 396483.93, "YCOORD": 140715.67, "MAR_ID": 294528, "GIS_ID": "SummerMealSitePt_53", "GLOBALID": "{FE42A200-9109-48A4-B9B8-90E84C47B8EA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.040555742301137, 38.934325816193443 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 40, "NAME": "Park Morton Community Room", "ADDRESS": "615 MORTON STREET NW", "PHONE": "202-549-0439", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Shonta'", "CONTACT_LAS_NAME": "High", "STATUS": "Open", "ADDRESS2": "#2", "CONTACT_PHONE": "202-549-0439", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.93235979, "LONGITUDE": -77.02194926, "XCOORD": 398096.9, "YCOORD": 140497.7, "MAR_ID": 285316, "GIS_ID": "SummerMealSitePt_183", "GLOBALID": "{2BB509A5-CE75-4E3F-BBFE-884220B4A215}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.021951553200495, 38.932367250946989 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 41, "NAME": "Park Road Community Church", "ADDRESS": "1019 PARK ROAD NW", "PHONE": "202-740-7890", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Seretha ", "CONTACT_LAS_NAME": "Pearsall", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-740-7890", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.93223693, "LONGITUDE": -77.02781235, "XCOORD": 397588.54, "YCOORD": 140484.2, "MAR_ID": 230971, "GIS_ID": "SummerMealSitePt_184", "GLOBALID": "{A4381569-A010-43B0-8DD0-FEFD7D6CCB63}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.027814639119313, 38.932244390452965 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 42, "NAME": "The Dance Institute of Washington", "ADDRESS": "3400 14TH STREET NW", "PHONE": "202-899-3842", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Mark ", "CONTACT_LAS_NAME": "Henderson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-899-3842", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.93160618, "LONGITUDE": -77.03295837, "XCOORD": 397142.33, "YCOORD": 140414.33, "MAR_ID": 302547, "GIS_ID": "SummerMealSitePt_211", "GLOBALID": "{C03AC794-E1F9-4FE6-BD9D-47FCF74CDA3B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.032960670003604, 38.931613641936963 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 43, "NAME": "Salvation Army ", "ADDRESS": "3335 SHERMAN AVENUE NW", "PHONE": "202-829-0100", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-12T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Srikant", "CONTACT_LAS_NAME": "Bhatnagar", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-829-0100", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.93158191, "LONGITUDE": -77.0263815, "XCOORD": 397712.58, "YCOORD": 140411.45, "MAR_ID": 284641, "GIS_ID": "SummerMealSitePt_200", "GLOBALID": "{592143B0-8341-4A4D-8F0B-614A4C7E6EB7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.026383792673712, 38.931589367843998 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 44, "NAME": "Mount Pleasant Library", "ADDRESS": "3160 16TH STREET NW", "PHONE": "202-671-3126", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Katie", "CONTACT_LAS_NAME": "Nye", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-3126", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.93046772, "LONGITUDE": -77.0371446, "XCOORD": 396779.31, "YCOORD": 140288.09, "MAR_ID": 295138, "GIS_ID": "SummerMealSitePt_178", "GLOBALID": "{B0B34086-EC51-4763-A1B8-B810056E51C2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.037146898072137, 38.930475177313774 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 45, "NAME": "Dance Place", "ADDRESS": "3225 8TH STREET NE", "PHONE": "202-269-1600", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Brenna", "CONTACT_LAS_NAME": "Dames", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-269-1600", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.93035269, "LONGITUDE": -76.9945626, "XCOORD": 400471.46, "YCOORD": 140274.68, "MAR_ID": 38045, "GIS_ID": "SummerMealSitePt_127", "GLOBALID": "{6C4BD7DF-08A6-401A-8178-FBC24C251EFF}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.994564888321719, 38.930360153563001 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 46, "NAME": "Columbia Heights Farmer's Market", "ADDRESS": "PARK ROAD NW AND 14TH STREET NW", "PHONE": "530-262-9359", "SPONSORING": "Centronia", "DATE_OPEN": "2019-06-26T04:00:00Z", "DATE_CLOSE": "2019-08-14T04:00:00Z", "DAYS_OPEN": "W,SA", "HOURS_OPEN": null, "LUNCH_TIME": "10:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": "4:00 - 6:30", "MEAL_TYPES": "L,S", "WARD": null, "CONTACT_FI_NAME": "Anthony", "CONTACT_LAS_NAME": "Beck", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "530-262-9359", "ZIPCODE": null, "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": "Farmer's Market on Wednesdays will serve supper between 4:00 pm- 6:30 pm and on Saturdays a lunch will be served from 10:00 AM to 12:30 PM.", "LATITUDE": 38.9302311, "LONGITUDE": -77.03274851, "XCOORD": 397160.47106731997, "YCOORD": 140261.67798358999, "MAR_ID": 906284, "GIS_ID": "SummerMealSitePt_3", "GLOBALID": "{0AB513AB-6C70-4453-B2BF-05EC7FA5B94F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.032750812635626, 38.930238564448267 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 47, "NAME": "Woodridge", "ADDRESS": "2959 CARLTON AVENUE NE", "PHONE": "202-635-6500", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 5", "CONTACT_FI_NAME": "Katrina", "CONTACT_LAS_NAME": "Fitzgerald", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-635-6500", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92958893, "LONGITUDE": -76.96656971, "XCOORD": 402898.67, "YCOORD": 140190.45, "MAR_ID": 42808, "GIS_ID": "SummerMealSitePt_244", "GLOBALID": "{694C0584-0C1C-4269-A6C1-2FA6EF7905DA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.966571980844293, 38.929596729887194 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 48, "NAME": "Columbia Heights Education Campus ", "ADDRESS": "3101 16TH STREET NW", "PHONE": "202-939-4380", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20010", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92954477, "LONGITUDE": -77.03585831, "XCOORD": 396890.8, "YCOORD": 140185.59, "MAR_ID": 234375, "GIS_ID": "SummerMealSitePt_62", "GLOBALID": "{E3B9EC64-0FD9-40CD-9682-A2B26F637C30}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.035860605961119, 38.929552227177084 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 49, "NAME": "Latin American Youth Center", "ADDRESS": "1419 COLUMBIA ROAD NW", "PHONE": "415-412-3505", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Julia", "CONTACT_LAS_NAME": "Kann", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "415-412-3505", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92776673, "LONGITUDE": -77.03335782000001, "XCOORD": 397107.54, "YCOORD": 139988.13, "MAR_ID": 234363, "GIS_ID": "SummerMealSitePt_17", "GLOBALID": "{1C2499F2-17B3-4E63-8153-F0F2EC834BF5}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.033360117297022, 38.927774186120189 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 50, "NAME": "Woodridge Neighborhood Library", "ADDRESS": "1801 HAMLIN STREET NE", "PHONE": "202-541-6226", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-19T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Janette ", "CONTACT_LAS_NAME": "Graham", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-541-6226", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92744073, "LONGITUDE": -76.97862566000001, "XCOORD": 401853.38, "YCOORD": 139951.63, "MAR_ID": 286483, "GIS_ID": "SummerMealSitePt_233", "GLOBALID": "{EEE1EC0C-569C-4E68-AF5D-C230BCABEC25}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.978627934199409, 38.927448190698463 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 51, "NAME": "Tolson", "ADDRESS": "2917 8TH STREET NE", "PHONE": "202-832-7370", "SPONSORING": "Hope Community PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Trina ", "CONTACT_LAS_NAME": "Gross", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-832-7370", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 8:00", "COMMENTS": null, "LATITUDE": 38.9269508, "LONGITUDE": -76.99461626, "XCOORD": 400466.83, "YCOORD": 139897.04, "MAR_ID": 43392, "GIS_ID": "SummerMealSitePt_248", "GLOBALID": "{A1B81710-9BF5-42B0-B583-3CCF9D6DB8C1}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.99461854324133, 38.926958256746147 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 52, "NAME": "Langdon Park Community Center", "ADDRESS": "2901 20TH STREET NE", "PHONE": "202-576-6596", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Donniel", "CONTACT_LAS_NAME": "Bush", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-6596", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92682275, "LONGITUDE": -76.97578849, "XCOORD": 402099.41, "YCOORD": 139883.09, "MAR_ID": 287283, "GIS_ID": "SummerMealSitePt_164", "GLOBALID": "{A682B9F7-48E6-4A6B-B063-C46E95B224F6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.975790770276475, 38.926830207509283 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 53, "NAME": "Columbia Heights Recreation Center", "ADDRESS": "1480 GIRARD STREET NW", "PHONE": "202-671-0373", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Christopher", "CONTACT_LAS_NAME": "Reed", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-0373", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92523903, "LONGITUDE": -77.03509525, "XCOORD": 396956.78, "YCOORD": 139707.59, "MAR_ID": 284045, "GIS_ID": "SummerMealSitePt_124", "GLOBALID": "{593D09CF-615C-4FB9-AB0F-B7216774823C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.035097540850799, 38.925246483920446 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 54, "NAME": "The Greater First Baptist Church", "ADDRESS": "2701 13TH STREET NW", "PHONE": "202-529-5420", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Gloria", "CONTACT_LAS_NAME": "Balton", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-529-5420", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:15 - 9:00", "COMMENTS": null, "LATITUDE": 38.9250147, "LONGITUDE": -77.02926755, "XCOORD": 397462.11, "YCOORD": 139682.51, "MAR_ID": 231841, "GIS_ID": "SummerMealSitePt_213", "GLOBALID": "{09112E3F-DF7E-4DA5-A2D5-E5FB4EDD5343}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.029269843051381, 38.925022160265534 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 55, "NAME": "Jubilee Housing Activity Zone", "ADDRESS": "1630 FULLER STREET NW", "PHONE": "202-559-2377", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-07-08T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Jumoke ", "CONTACT_LAS_NAME": "Patterson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-559-2377", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92459067, "LONGITUDE": -77.0380565, "XCOORD": 396699.97, "YCOORD": 139635.72, "MAR_ID": 235861, "GIS_ID": "SummerMealSitePt_31", "GLOBALID": "{00E9144D-1390-4536-84B3-9426F38298A5}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.038058798995579, 38.924598129055695 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 56, "NAME": "Jubilee Housing Early Start", "ADDRESS": "1650 FULLER STREET NW", "PHONE": "202-525-2532", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-07-08T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Eduardo", "CONTACT_LAS_NAME": "Herrera", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "703-268-9698", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92453545, "LONGITUDE": -77.03834628, "XCOORD": 396674.84, "YCOORD": 139629.6, "MAR_ID": 235864, "GIS_ID": "SummerMealSitePt_32", "GLOBALID": "{48354826-8C5A-42CB-9804-5FEF2FC9BEBE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.038348572797261, 38.924542903399846 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 57, "NAME": "Arcadia Mobile Market at Edgewood", "ADDRESS": "EDGEWOOD STREET NE AND EVARTS STREET NE", "PHONE": "571-781-0287", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-28T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "F", "HOURS_OPEN": null, "LUNCH_TIME": "3:00 - 6:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": null, "CONTACT_FI_NAME": "Erin ", "CONTACT_LAS_NAME": "Close", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "724-991-1080", "ZIPCODE": null, "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92449008, "LONGITUDE": -76.99737631000001, "XCOORD": 400227.51001416001, "YCOORD": 139623.87001499999, "MAR_ID": 903941, "GIS_ID": "SummerMealSitePt_6", "GLOBALID": "{0F4AF2A0-1847-47B8-9BB7-E7B2F9AC2AA4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.997378604330763, 38.924497549003505 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 58, "NAME": "Theodore R Hagans Cultural Center", "ADDRESS": "3201 FORT LINCOLN DRIVE NE", "PHONE": "202-698-1794", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Rita", "CONTACT_LAS_NAME": "Robinson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-698-1794", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92420389, "LONGITUDE": -76.95834822, "XCOORD": 403611.81, "YCOORD": 139592.92, "MAR_ID": 295140, "GIS_ID": "SummerMealSitePt_219", "GLOBALID": "{DAC1590E-5C24-42A6-9A87-A1A4ED41897D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.958350496113127, 38.924211349797723 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 59, "NAME": "H.D. Cooke ES", "ADDRESS": "2525 17TH STREET NW", "PHONE": "202-939-5390", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92394309, "LONGITUDE": -77.03881058, "XCOORD": 396634.55, "YCOORD": 139563.86, "MAR_ID": 235863, "GIS_ID": "SummerMealSitePt_68", "GLOBALID": "{83EC0431-4111-4002-87EA-7C1D9C8A9289}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.038812881249882, 38.92395054307427 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 60, "NAME": "Beacon House Community Ministry, Inc. Youth Gateway", "ADDRESS": "601 EDGEWOOD STREET NE", "PHONE": "202-529-7376", "SPONSORING": "Beacon House Community Ministry", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Esther ", "CONTACT_LAS_NAME": "Rodriguez", "STATUS": "Open", "ADDRESS2": "Suite 15", "CONTACT_PHONE": "202-832-5108", "ZIPCODE": "20017", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.92390014, "LONGITUDE": -76.99749766, "XCOORD": 400216.99, "YCOORD": 139558.38, "MAR_ID": 289571, "GIS_ID": "SummerMealSitePt_2", "GLOBALID": "{0449514E-9A94-4F24-A8F1-E21EFAEE3973}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.997499943272857, 38.923907596754269 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 61, "NAME": "Benjamin Banneker HS", "ADDRESS": "800 EUCLID STREET NW", "PHONE": "202-671-6320", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92383276, "LONGITUDE": -77.02397697000001, "XCOORD": 397920.84, "YCOORD": 139551.17, "MAR_ID": 294496, "GIS_ID": "SummerMealSitePt_55", "GLOBALID": "{D5D0C53E-6D5C-4FCB-ADB0-A00973FB7CA4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.0239792607167, 38.923840212875291 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 62, "NAME": "Brookland Manor", "ADDRESS": "2525 14TH STREET NE", "PHONE": "202-529-6529", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": "12:00am - 12:45am", "DINNER_SUP": "4:00 - 4:45", "MEAL_TYPES": "M, S", "WARD": "Ward 5", "CONTACT_FI_NAME": "Malkia ", "CONTACT_LAS_NAME": "Wharton", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-529-6529", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92356879, "LONGITUDE": -76.98579465, "XCOORD": 401231.82, "YCOORD": 139521.69, "MAR_ID": 150453, "GIS_ID": "SummerMealSitePt_26", "GLOBALID": "{AEE1E3EA-19DB-4F5F-9266-133E08BBEBB3}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.985796928637569, 38.923576245305746 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 63, "NAME": "Mobile Meals at Banneker Pool", "ADDRESS": "2500 GEORGIA AVENUE NW", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92270429, "LONGITUDE": -77.02258308, "XCOORD": 398041.68, "YCOORD": 139425.87, "MAR_ID": 232292, "GIS_ID": "SummerMealSitePt_18", "GLOBALID": "{CFAD997E-CEA0-49F3-94C8-0E5574EC4892}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022585370405409, 38.922711747819619 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 64, "NAME": "Banneker Recreation Center", "ADDRESS": "2500 GEORGIA AVENUE NW", "PHONE": "202-673-6861", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Henry", "CONTACT_LAS_NAME": "Plater", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-673-6861", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92270429, "LONGITUDE": -77.02258308, "XCOORD": 398041.68, "YCOORD": 139425.87, "MAR_ID": 232292, "GIS_ID": "SummerMealSitePt_109", "GLOBALID": "{842E800A-0AB4-4F07-A46E-B9EBBE39E8CB}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022585370405409, 38.922711747819619 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 65, "NAME": "Garfield Terrace (HA)", "ADDRESS": "2379 11TH STREET NW", "PHONE": "202-986-0406", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Lethia ", "CONTACT_LAS_NAME": "Summers", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-986-0406", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92223742, "LONGITUDE": -77.02592231, "XCOORD": 397752.1, "YCOORD": 139374.12, "MAR_ID": 290649, "GIS_ID": "SummerMealSitePt_142", "GLOBALID": "{7030B793-69D4-4C3F-918B-527F17D10669}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.025924598749882, 38.922244873941978 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 66, "NAME": "Cardozo EC", "ADDRESS": "1200 CLIFTON STREET NW", "PHONE": "202-673-7385", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92217286, "LONGITUDE": -77.02847069000001, "XCOORD": 397531.11, "YCOORD": 139367.02, "MAR_ID": 294513, "GIS_ID": "SummerMealSitePt_60", "GLOBALID": "{7D8D8E95-AF33-4FB3-8569-5FCFDE0966FE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.028472983631147, 38.922180321670581 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 67, "NAME": "Education Plus 2 ", "ADDRESS": "1350 CLIFTON STREET NW", "PHONE": "202-518-1288", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Wilma", "CONTACT_LAS_NAME": "Harvey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-763-8385", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.9221042, "LONGITUDE": -77.0313792, "XCOORD": 397278.89, "YCOORD": 139359.48, "MAR_ID": 232074, "GIS_ID": "SummerMealSitePt_29", "GLOBALID": "{CFF4AEE6-50B2-401D-BF06-FDDE622764D6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.031381499318954, 38.922111654001561 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 68, "NAME": "Rita Bright FYC", "ADDRESS": "2500 14TH STREET NW", "PHONE": "202-673-6941", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "John", "CONTACT_LAS_NAME": "Holmes", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-673-6941", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.92199907, "LONGITUDE": -77.03236212, "XCOORD": 397193.65, "YCOORD": 139347.84, "MAR_ID": 234200, "GIS_ID": "SummerMealSitePt_197", "GLOBALID": "{E575D10B-4BE7-4E71-A730-70F4FC8CBC52}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.032364419713915, 38.922006529000711 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 69, "NAME": "Brentwood Recreation Center", "ADDRESS": "2311 14TH STREET NE", "PHONE": "202-576-6667", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Gregory", "CONTACT_LAS_NAME": "Poag", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-576-6667", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.92104004, "LONGITUDE": -76.98291733000001, "XCOORD": 401481.38, "YCOORD": 139241.02, "MAR_ID": 286825, "GIS_ID": "SummerMealSitePt_114", "GLOBALID": "{3A5E1EBF-AC36-46C0-B73E-36E36B88E24B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982919606660062, 38.921047494004604 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 70, "NAME": "Montana Terrace Community Center", "ADDRESS": "1625 MONTANA AVENUE NE", "PHONE": "202-271-1962", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": "3:30pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L,A", "WARD": "Ward 5", "CONTACT_FI_NAME": "Tanora ", "CONTACT_LAS_NAME": "Gibbs", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-271-1962", "ZIPCODE": "20018", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.92100011, "LONGITUDE": -76.98104391, "XCOORD": 401643.84, "YCOORD": 139236.62, "MAR_ID": 290552, "GIS_ID": "SummerMealSitePt_177", "GLOBALID": "{29FD2419-3459-473A-9F00-8CA37CEE99F2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.981046193886627, 38.921007568564001 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 71, "NAME": "Kalorama Recreation Center", "ADDRESS": "1875 COLUMBIA ROAD NW", "PHONE": "202-673-7606", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Christopher", "CONTACT_LAS_NAME": "Reed", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-673-7606", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.92072514, "LONGITUDE": -77.04435735, "XCOORD": 396153.39, "YCOORD": 139206.86, "MAR_ID": 284143, "GIS_ID": "SummerMealSitePt_154", "GLOBALID": "{87749D25-4782-4559-AB75-C0F00111AF03}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.044359649349801, 38.920732597251359 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 72, "NAME": "Washington Metropolitan HS", "ADDRESS": "300 BRYANT STREET NW", "PHONE": "202-939-3610", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92043047, "LONGITUDE": -77.01558101000001, "XCOORD": 398648.83, "YCOORD": 139173.33, "MAR_ID": 294475, "GIS_ID": "SummerMealSitePt_96", "GLOBALID": "{65112032-6EA7-4F03-BBEF-AABD4E462EEE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.015583300417063, 38.92043792904294 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 73, "NAME": "Bishop Alfred Owens Family Life Community Center", "ADDRESS": "605 RHODE ISLAND AVENUE NE", "PHONE": "202-529-2299", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Carrie", "CONTACT_LAS_NAME": "Clark", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "917-971-3423", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.92036122, "LONGITUDE": -76.99774698, "XCOORD": 400195.38, "YCOORD": 139165.53, "MAR_ID": 288769, "GIS_ID": "SummerMealSitePt_11", "GLOBALID": "{080B4D6C-7F52-404C-A664-C1F8B421F05D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.997749262686199, 38.920368681772239 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 74, "NAME": "Ledroit/Kelly Miller (HA)", "ADDRESS": "238 W STREET NW", "PHONE": "240-468-2561", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Clarence", "CONTACT_LAS_NAME": "Miles", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-468-2561", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.91920515, "LONGITUDE": -77.01629245, "XCOORD": 398587.11, "YCOORD": 139037.32, "MAR_ID": 290650, "GIS_ID": "SummerMealSitePt_167", "GLOBALID": "{DB1F82E6-2918-41B0-83A7-BFF3BD64B435}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.016294744535941, 38.919212609312694 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 75, "NAME": "Marie Reed Recreation Center", "ADDRESS": "2200 CHAMPLAIN STREET NW", "PHONE": "202-673-7768", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Christopher", "CONTACT_LAS_NAME": "Reed", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-673-7768", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.91916764, "LONGITUDE": -77.04052995000001, "XCOORD": 396485.22, "YCOORD": 139033.81, "MAR_ID": 235577, "GIS_ID": "SummerMealSitePt_169", "GLOBALID": "{3E3B7CCD-113C-4D2C-814D-0FBB130CB7E1}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.04053225052327, 38.919175096292925 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 76, "NAME": "Marie Reed ES", "ADDRESS": "2201 18TH STREET NW", "PHONE": "202-673-7308", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.91911214, "LONGITUDE": -77.04082224, "XCOORD": 396459.87, "YCOORD": 139027.66, "MAR_ID": 310614, "GIS_ID": "SummerMealSitePt_77", "GLOBALID": "{1B727E88-F030-4F91-B008-442CB31E310C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.040824537102125, 38.919119593312246 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 77, "NAME": "Pick up the Pieces- Store Fronts", "ADDRESS": "2033 11TH STREET NW", "PHONE": "301-395-9120", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 12:15", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Kevin", "CONTACT_LAS_NAME": "Hart", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-395-9120", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:00", "COMMENTS": null, "LATITUDE": 38.91791521, "LONGITUDE": -77.0267911, "XCOORD": 397676.62, "YCOORD": 138894.34, "MAR_ID": 239193, "GIS_ID": "SummerMealSitePt_46", "GLOBALID": "{564E8806-8417-4D9A-A206-D7B2DFFC8B71}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.026793394321771, 38.91792266248784 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 78, "NAME": "Arcadia Mobile Market at LeDroit Park", "ADDRESS": "ELM STREET NW AND 3RD STREET NW", "PHONE": "571-781-0287", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-26T04:00:00Z", "DATE_CLOSE": "2019-08-21T04:00:00Z", "DAYS_OPEN": "W", "HOURS_OPEN": null, "LUNCH_TIME": "3:00 - 7:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": null, "CONTACT_FI_NAME": "Erin ", "CONTACT_LAS_NAME": "Close", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "724-991-1080", "ZIPCODE": null, "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.91750586, "LONGITUDE": -77.01595778, "XCOORD": 398616.09999666997, "YCOORD": 138848.67999827999, "MAR_ID": 906248, "GIS_ID": "SummerMealSitePt_8", "GLOBALID": "{0D3FBC4D-0B32-4CA7-BE92-913D57403C1A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.015960071774444, 38.917513324071876 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 79, "NAME": "Jelleff Recreation Center", "ADDRESS": "3265 S STREET NW", "PHONE": "202-462-1317", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Tarayra", "CONTACT_LAS_NAME": "Staton", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-462-1317", "ZIPCODE": "20007", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.91571742, "LONGITUDE": -77.066859, "XCOORD": 394201.67, "YCOORD": 138652.15, "MAR_ID": 273636, "GIS_ID": "SummerMealSitePt_151", "GLOBALID": "{A5FAFBB5-B90E-4130-9368-2955673E248A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.066861308665523, 38.915724876456935 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 80, "NAME": "McKinley Tech MS/HS", "ADDRESS": "151 T STREET NE", "PHONE": "202-281-3950", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.91522012, "LONGITUDE": -77.00412244, "XCOORD": 399642.48, "YCOORD": 138594.83, "MAR_ID": 296345, "GIS_ID": "SummerMealSitePt_78", "GLOBALID": "{35FCE8B0-E90F-468A-871B-FB9584BFFB86}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.004124724810339, 38.915227575952812 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 81, "NAME": "Langley ES", "ADDRESS": "101 T STREET NE", "PHONE": "202-724-4223", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.91516879, "LONGITUDE": -77.00588662, "XCOORD": 399489.48, "YCOORD": 138589.14, "MAR_ID": 285757, "GIS_ID": "SummerMealSitePt_73", "GLOBALID": "{8DC887B5-11DE-497F-B2A5-107A28006AE0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.005888911030297, 38.915176242899882 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 82, "NAME": "Cleveland", "ADDRESS": "1825 8TH STREET NW", "PHONE": "202-698-4500", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.91514529, "LONGITUDE": -77.02270718, "XCOORD": 398030.71, "YCOORD": 138586.76, "MAR_ID": 294531, "GIS_ID": "SummerMealSitePt_61", "GLOBALID": "{5EFFBE92-45CA-4F53-8831-C604E0240AB8}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022709467575766, 38.915152744378226 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 83, "NAME": "YWCA National Capital Area", "ADDRESS": "1816 12TH STREET NW", "PHONE": "202-626-0700", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-19T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 1", "CONTACT_FI_NAME": "Cheryl", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": "Lower Level", "CONTACT_PHONE": "202-626-0700", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.91492908, "LONGITUDE": -77.02849017, "XCOORD": 397529.17, "YCOORD": 138562.9, "MAR_ID": 279410, "GIS_ID": "SummerMealSitePt_238", "GLOBALID": "{67B337FF-F2B6-4127-AB75-9EB7CA9E1720}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.02849246085762, 38.914936538354098 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 84, "NAME": "Harry Thomas Recreation Center", "ADDRESS": "1743 LINCOLN ROAD NE", "PHONE": "202-576-5642", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Rochelle", "CONTACT_LAS_NAME": "Bradshaw", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-279-0479", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.91398606, "LONGITUDE": -77.00786815, "XCOORD": 399317.62, "YCOORD": 138457.86, "MAR_ID": 296786, "GIS_ID": "SummerMealSitePt_144", "GLOBALID": "{E05D716C-B990-46D7-AB12-51DB3CD02974}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.007870437695601, 38.913993511783168 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 85, "NAME": "Mobile Meals at Harry Thomas Pool", "ADDRESS": "1743 LINCOLN ROAD NE", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "2:00 - 3:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.91398606, "LONGITUDE": -77.00786815, "XCOORD": 399317.62, "YCOORD": 138457.86, "MAR_ID": 296786, "GIS_ID": "SummerMealSitePt_19", "GLOBALID": "{54DA1C8D-74D4-4C33-B505-0C9F8AEC8AE9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.007870437695601, 38.913993511783168 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 86, "NAME": "Garrison ES", "ADDRESS": "1200 S STREET NW", "PHONE": "202-673-7263", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.91390129, "LONGITUDE": -77.02861256, "XCOORD": 397518.52, "YCOORD": 138448.81, "MAR_ID": 294509, "GIS_ID": "SummerMealSitePt_67", "GLOBALID": "{A7406115-BE0E-4601-8AE7-9D6249641C05}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.028614849454527, 38.913908747255654 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 87, "NAME": "Arboretum Community Center", "ADDRESS": "2412 RAND PLACE NE", "PHONE": "202-538-1503", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-22T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Brian", "CONTACT_LAS_NAME": "Williams", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-538-1503", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.91371648, "LONGITUDE": -76.97116925, "XCOORD": 402500.41, "YCOORD": 138428.3, "MAR_ID": 296167, "GIS_ID": "SummerMealSitePt_104", "GLOBALID": "{5D035095-AF85-4C9F-8649-941BC6523737}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.971171522711629, 38.913723934746706 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 88, "NAME": "Watha T Daniel / Shaw Neighborhood Library", "ADDRESS": "1630 7TH STREET NW", "PHONE": "202-727-1288", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Kevin", "CONTACT_LAS_NAME": "Osborne", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-727-1288", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.91244216, "LONGITUDE": -77.02221836, "XCOORD": 398073.03, "YCOORD": 138286.68, "MAR_ID": 308201, "GIS_ID": "SummerMealSitePt_230", "GLOBALID": "{2D82156D-54F1-4F07-B60F-068261A98B15}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022220648406119, 38.91244961628977 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 89, "NAME": "Chidren & Charity International, Mt. Gilead Baptist Church", "ADDRESS": "1625 13TH STREET NW", "PHONE": "202-462-0427", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Marilyn ", "CONTACT_LAS_NAME": "James", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-234-0013", "ZIPCODE": "20009", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:00", "COMMENTS": null, "LATITUDE": 38.91189381, "LONGITUDE": -77.029224, "XCOORD": 397465.42, "YCOORD": 138225.98, "MAR_ID": 240892, "GIS_ID": "SummerMealSitePt_120", "GLOBALID": "{19FA2315-4FCB-4303-B4C0-3C6F168A4B99}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.029226293329202, 38.911901267571267 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 90, "NAME": "Miles Educational Building / Third Baptist Church", "ADDRESS": "1546 5TH STREET NW", "PHONE": "240-476-2661", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:15 - 1:15", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "TaWanda", "CONTACT_LAS_NAME": "Franklin", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-476-2661", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:15 - 9:15", "COMMENTS": null, "LATITUDE": 38.9109356, "LONGITUDE": -77.01923151, "XCOORD": 398332.04, "YCOORD": 138119.38, "MAR_ID": 279234, "GIS_ID": "SummerMealSitePt_176", "GLOBALID": "{A84CBE1B-DE9F-4184-9FEB-664F913E7A69}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.019233802964678, 38.910943050661814 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 91, "NAME": "Seaton ES", "ADDRESS": "1503 10TH STREET NW", "PHONE": "202-673-7215", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.9106187, "LONGITUDE": -77.02488247, "XCOORD": 397841.92, "YCOORD": 138084.32, "MAR_ID": 279203, "GIS_ID": "SummerMealSitePt_91", "GLOBALID": "{15213C63-5B56-4074-8A94-4F04C3E8CA74}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.024884758470833, 38.910626151177439 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 92, "NAME": "Stead Recreation Center", "ADDRESS": "1625 P STREET NW", "PHONE": "202-673-4465", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Vincent ", "CONTACT_LAS_NAME": "Hill", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-673-4465", "ZIPCODE": "20036", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.91002497, "LONGITUDE": -77.03762074, "XCOORD": 396737.09, "YCOORD": 138018.79, "MAR_ID": 295822, "GIS_ID": "SummerMealSitePt_206", "GLOBALID": "{E8701AB9-B923-4A02-93AC-664D4B2913E5}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.037623039459959, 38.910032426794778 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 93, "NAME": "The Community Church of Washington DC-UCC", "ADDRESS": "1405 15TH STREET NW", "PHONE": "202-387-3131", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-15T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Francesca", "CONTACT_LAS_NAME": "Sanchez", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-387-3131", "ZIPCODE": "20005", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.90916399, "LONGITUDE": -77.03428683, "XCOORD": 397026.21, "YCOORD": 137923.1, "MAR_ID": 276237, "GIS_ID": "SummerMealSitePt_210", "GLOBALID": "{E734231C-EF80-412E-92D9-77A1FD3DDF81}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.034289124652901, 38.909171444258064 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 94, "NAME": "Armstrong", "ADDRESS": "1400 1ST STREET NW", "PHONE": "202-518-3927", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 5", "CONTACT_FI_NAME": "Melissa", "CONTACT_LAS_NAME": "Bright", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-518-3927", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.90908026, "LONGITUDE": -77.0132191, "XCOORD": 398853.47, "YCOORD": 137913.33, "MAR_ID": 238253, "GIS_ID": "SummerMealSitePt_239", "GLOBALID": "{93625EAC-B6FB-433D-9E27-5C1FC6C39ACB}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.013221389802013, 38.909087716502022 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 95, "NAME": "Kennedy Recreation Center", "ADDRESS": "1401 7TH STREET NW", "PHONE": "202-671-4794", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Adrian", "CONTACT_LAS_NAME": "Sibert", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-4794", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.90899011, "LONGITUDE": -77.02153646, "XCOORD": 398132.08, "YCOORD": 137903.46, "MAR_ID": 279127, "GIS_ID": "SummerMealSitePt_158", "GLOBALID": "{E4948F90-4AC7-400B-A928-EA7DB7A2B9E2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.021538747041319, 38.908997566755083 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 96, "NAME": "Deanwood Recreation Center", "ADDRESS": "1350 49TH STREET NE", "PHONE": "202-671-3077", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-06T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Cortney", "CONTACT_LAS_NAME": "Williams", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-3077", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90844496, "LONGITUDE": -76.93215558, "XCOORD": 405884.39, "YCOORD": 137844.91, "MAR_ID": 307551, "GIS_ID": "SummerMealSitePt_129", "GLOBALID": "{383BF36B-AED5-4F3B-9D19-DDE2F9B5428D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.93215784256401, 38.908452418628229 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 97, "NAME": "Kenilworth Recreation Center", "ADDRESS": "4321 ORD STREET NE", "PHONE": "202-549-7042", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Brandon", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-549-7042", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90833743, "LONGITUDE": -76.94095192, "XCOORD": 405121.46, "YCOORD": 137832.48, "MAR_ID": 314577, "GIS_ID": "SummerMealSitePt_157", "GLOBALID": "{FAA6A81A-5FE2-45BE-9149-C9075A5DBC05}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.940954181636016, 38.908345221187631 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 98, "NAME": "Spring Academy", "ADDRESS": "1375 MOUNT OLIVET ROAD NE", "PHONE": "202-909-2585", "SPONSORING": "KIPP ", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-12T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Dionna", "CONTACT_LAS_NAME": "Day", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-909-2585", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.90807397, "LONGITUDE": -76.98113601, "XCOORD": 401636.15, "YCOORD": 137801.71, "MAR_ID": 286108, "GIS_ID": "SummerMealSitePt_247", "GLOBALID": "{6EF75DF3-2418-4EE3-AA00-63BAE24B8DA9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.981138290285529, 38.90808143103591 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 99, "NAME": "Dunbar HS", "ADDRESS": "101 N STREET NW", "PHONE": "202-698-3762", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90762655, "LONGITUDE": -77.01269148, "XCOORD": 398899.21, "YCOORD": 137751.95, "MAR_ID": 309947, "GIS_ID": "SummerMealSitePt_64", "GLOBALID": "{B59F2D3A-2413-4D8F-B64F-62CFE312C729}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.012693764207285, 38.907634008020054 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 100, "NAME": "School Without Walls @Francis Stevens ", "ADDRESS": "2425 N STREET NW", "PHONE": "202-724-4841", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-06-28T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20037", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.9074695, "LONGITUDE": -77.052321, "XCOORD": 395461.95, "YCOORD": 137735.74, "MAR_ID": 294544, "GIS_ID": "SummerMealSitePt_90", "GLOBALID": "{385910C2-DF60-468B-87BE-A2DA886CB793}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.05232329698579, 38.907476955475509 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 101, "NAME": "Ron Brown HS", "ADDRESS": "4800 MEADE STREET NE", "PHONE": "202-729-4343", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-07T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90656271, "LONGITUDE": -76.93270478, "XCOORD": 405836.91, "YCOORD": 137635.93, "MAR_ID": 294601, "GIS_ID": "SummerMealSitePt_87", "GLOBALID": "{1CCE7146-7462-4D46-8495-D6C361569705}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.932707042045848, 38.906570171124791 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 102, "NAME": "Trinidad Recreation", "ADDRESS": "1310 CHILDRESS STREET NE", "PHONE": "202-727-1293", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Elliott", "CONTACT_LAS_NAME": "Brown", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-727-1293", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90644074, "LONGITUDE": -76.98274212, "XCOORD": 401496.88, "YCOORD": 137620.38, "MAR_ID": 68509, "GIS_ID": "SummerMealSitePt_222", "GLOBALID": "{7444CFC5-407F-48A3-9F07-83C5CD3F56EA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982744399039774, 38.906448195388961 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 103, "NAME": "King Towers Community Center", "ADDRESS": "1220 12TH STREET NW", "PHONE": "202-507-8433", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 2", "CONTACT_FI_NAME": "Nancy", "CONTACT_LAS_NAME": "Romero", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-507-8433", "ZIPCODE": "20005", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90627252, "LONGITUDE": -77.02846042, "XCOORD": 397531.45, "YCOORD": 137601.95, "MAR_ID": 240913, "GIS_ID": "SummerMealSitePt_16", "GLOBALID": "{AA0DD7C4-23FC-4516-97CE-7244D876054A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.028462716094722, 38.906279977963734 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 104, "NAME": "Paradise at Parkside", "ADDRESS": "3517 JAY STREET NE", "PHONE": "202-398-2375", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Tina", "CONTACT_LAS_NAME": "Beeks", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-398-2375", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.9059251, "LONGITUDE": -76.95097079, "XCOORD": 404252.63, "YCOORD": 137564.14, "MAR_ID": 295237, "GIS_ID": "SummerMealSitePt_182", "GLOBALID": "{C4E4B05C-DAB1-4BB0-80B4-2B8B56C454B6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.950973055395522, 38.905932554008167 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 105, "NAME": "Perry School Community Services Center", "ADDRESS": "128 M STREET NW", "PHONE": "240-367-3849", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Kisha", "CONTACT_LAS_NAME": "Harvey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-367-3849", "ZIPCODE": "20001", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90537989, "LONGITUDE": -77.01335077, "XCOORD": 398841.99, "YCOORD": 137502.56, "MAR_ID": 279016, "GIS_ID": "SummerMealSitePt_188", "GLOBALID": "{0C8ECF71-B946-40AC-9E14-06A8CC7981C7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.01335305748043, 38.905387342155862 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 106, "NAME": "Center City PCS - Trinidad", "ADDRESS": "1217 WEST VIRGINIA AVENUE NE", "PHONE": "202-589-0202", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-19T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Christine", "CONTACT_LAS_NAME": "Edwards", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-397-1614", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.90529915, "LONGITUDE": -76.99120218, "XCOORD": 400763.1, "YCOORD": 137493.55, "MAR_ID": 285938, "GIS_ID": "SummerMealSitePt_119", "GLOBALID": "{F3EFF874-45DE-46F1-947B-6163FDAFB4C9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.991204463640585, 38.905306609295984 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 107, "NAME": "Peace Fellowship Church", "ADDRESS": "1027 45TH STREET NE", "PHONE": "443-995-6125", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-08-05T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Brian ", "CONTACT_LAS_NAME": "Gorman", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "443-995-6125", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:00", "COMMENTS": null, "LATITUDE": 38.90454891, "LONGITUDE": -76.93710358, "XCOORD": 405455.53, "YCOORD": 137412.11, "MAR_ID": 75296, "GIS_ID": "SummerMealSitePt_187", "GLOBALID": "{07C650F0-1C05-4F4F-8E8E-483872394077}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.937105846848084, 38.904556372144967 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 108, "NAME": "IDEA Public Charter School", "ADDRESS": "1027 45TH STREET NE", "PHONE": "202-399-4750", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Nicole", "CONTACT_LAS_NAME": "Seward", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-399-4750", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.90454891, "LONGITUDE": -76.93710358, "XCOORD": 405455.53, "YCOORD": 137412.11, "MAR_ID": 75296, "GIS_ID": "SummerMealSitePt_148", "GLOBALID": "{8193149A-D90D-4305-9B59-1796637A3E36}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.937105846848084, 38.904556372144967 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 109, "NAME": "Wheatley EC", "ADDRESS": "1299 NEAL STREET NE", "PHONE": "202-939-5970", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90411774, "LONGITUDE": -76.98850077, "XCOORD": 400997.43, "YCOORD": 137362.43, "MAR_ID": 294512, "GIS_ID": "SummerMealSitePt_98", "GLOBALID": "{1ADF2A6F-FF37-4657-BA3B-9D1F61A42282}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.988503051063404, 38.904125199532501 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 110, "NAME": "Joseph Cole Recreation Center", "ADDRESS": "1299 NEAL STREET NE", "PHONE": "202-442-9262", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Zakiya", "CONTACT_LAS_NAME": "Brown", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-442-9262", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.90411774, "LONGITUDE": -76.98850077, "XCOORD": 400997.43, "YCOORD": 137362.43, "MAR_ID": 294512, "GIS_ID": "SummerMealSitePt_153", "GLOBALID": "{B3CD00DC-5D7B-4545-AE10-39923A4FB0A7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.988503051063404, 38.904125199532501 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 111, "NAME": "Carver Terrace Apartments", "ADDRESS": "2026 MARYLAND AVENUE NE", "PHONE": "202-320-5072", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Thelma", "CONTACT_LAS_NAME": "Duren", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-320-5072", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90407589, "LONGITUDE": -76.97447616, "XCOORD": 402213.91, "YCOORD": 137358.03, "MAR_ID": 52408, "GIS_ID": "SummerMealSitePt_116", "GLOBALID": "{3D2B7983-FB4A-4A8E-BDA2-83EAEB2AF13B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.974478435848738, 38.904083341132207 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 112, "NAME": "Mayfair Mansions Community Center", "ADDRESS": "3744 1/2 HAYES STREET NE", "PHONE": "202-577-6954", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Gail", "CONTACT_LAS_NAME": "Massey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-450-6684", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.9035198, "LONGITUDE": -76.94872214, "XCOORD": 404447.82, "YCOORD": 137297.24, "MAR_ID": 307816, "GIS_ID": "SummerMealSitePt_173", "GLOBALID": "{04633B20-5F76-449C-9106-CF998AB3D7B6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.948724408497583, 38.903527259112259 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 113, "NAME": "Assembly of The Saints CDC ", "ADDRESS": "4605 KANE PLACE NE", "PHONE": "202-399-5091", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Stefani", "CONTACT_LAS_NAME": "Costen", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-399-5091", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "6:45 - 8:45", "COMMENTS": null, "LATITUDE": 38.90348037, "LONGITUDE": -76.93566827, "XCOORD": 405580.11, "YCOORD": 137293.58, "MAR_ID": 19383, "GIS_ID": "SummerMealSitePt_106", "GLOBALID": "{2D3D48A5-953A-412A-A53F-ED584289508A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.935670535846171, 38.903487830240401 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 114, "NAME": "J.O. Wilson ES", "ADDRESS": "660 K STREET NE", "PHONE": "202-698-4733", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.902758, "LONGITUDE": -76.99658902, "XCOORD": 400295.87, "YCOORD": 137211.43, "MAR_ID": 288841, "GIS_ID": "SummerMealSitePt_69", "GLOBALID": "{E06CE15E-814A-45F6-9072-32AB3E954F29}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.996591304365921, 38.902765453788703 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 115, "NAME": "Phelps Highschool ", "ADDRESS": "704 26TH STREET NE", "PHONE": "202-729-4360", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.90199202, "LONGITUDE": -76.97189763, "XCOORD": 402437.64, "YCOORD": 137126.77, "MAR_ID": 294495, "GIS_ID": "SummerMealSitePt_84", "GLOBALID": "{827184B0-5AB8-4311-9381-2365D71E3743}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.971899905845831, 38.901999477082882 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 116, "NAME": "Greater Love Church", "ADDRESS": "4421 JAY STREET NE", "PHONE": "202-396-5600", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-07-08T04:00:00Z", "DATE_CLOSE": "2019-07-31T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Karen", "CONTACT_LAS_NAME": "Bonner", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-423-4622", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90127383, "LONGITUDE": -76.93758963000001, "XCOORD": 405413.62, "YCOORD": 137048.52, "MAR_ID": 21682, "GIS_ID": "SummerMealSitePt_15", "GLOBALID": "{E4E360BB-0879-4EA8-A612-3E0A2143FB7E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.937591889829633, 38.901281284010579 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 117, "NAME": "Kids Are People Too II", "ADDRESS": "4315 NANNIE HELEN BURROUGHS AVENUE NE", "PHONE": "202-397-1200", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": "4:00pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L,A", "WARD": "Ward 7", "CONTACT_FI_NAME": "Shevone", "CONTACT_LAS_NAME": "Edmunds", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-397-1200", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.90089596, "LONGITUDE": -76.94058352, "XCOORD": 405153.95, "YCOORD": 137006.4, "MAR_ID": 310999, "GIS_ID": "SummerMealSitePt_160", "GLOBALID": "{15BB83EC-0CD7-4F7B-988F-48D0D5EE2CBA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.940585785426862, 38.90090341278389 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 118, "NAME": "KBEC Culinary Arts and Work Force @ Riverside Community Center", "ADDRESS": "801 DIVISION AVENUE NE", "PHONE": "202-999-2749", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Ronald", "CONTACT_LAS_NAME": "Sykes", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-999-2750", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.90056577, "LONGITUDE": -76.92445918, "XCOORD": 406552.65, "YCOORD": 136970.78, "MAR_ID": 289787, "GIS_ID": "SummerMealSitePt_155", "GLOBALID": "{2E1B4900-5016-41A5-93D4-901FBBBC95F1}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.924461439851186, 38.900573222055279 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 119, "NAME": "Atlas Performing Arts Center - City at Peace", "ADDRESS": "1333 H STREET NE", "PHONE": "202-412-0684", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-25T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Sandra", "CONTACT_LAS_NAME": "Holloway", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-412-0684", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89997287, "LONGITUDE": -76.98721697000001, "XCOORD": 401108.85, "YCOORD": 136902.33, "MAR_ID": 286066, "GIS_ID": "SummerMealSitePt_107", "GLOBALID": "{52A8D66B-460F-4D1F-882B-40B1085412EB}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.987219247807076, 38.899980321082495 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 120, "NAME": "The Pentacle Community Center", "ADDRESS": "1507 BENNING ROAD NE", "PHONE": "202-617-8185", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "3:30 - 4:00", "MEAL_TYPES": "B, S", "WARD": "Ward 7", "CONTACT_FI_NAME": "Joseph ", "CONTACT_LAS_NAME": "Chaney", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-838-6251", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "11:30 - 12:00", "COMMENTS": null, "LATITUDE": 38.89982073, "LONGITUDE": -76.98309879, "XCOORD": 401466.08, "YCOORD": 136885.5, "MAR_ID": 295836, "GIS_ID": "SummerMealSitePt_25", "GLOBALID": "{AD7F2CC2-5E29-4AC0-ABF9-D4DC72215C53}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.983101067763585, 38.899828187324495 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 121, "NAME": "Langston Dwellings (HA)", "ADDRESS": "701 24TH STREET NE", "PHONE": "240-468-2561", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Clarence", "CONTACT_LAS_NAME": "Miles", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-468-2561", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.89934399, "LONGITUDE": -76.97214906000001, "XCOORD": 402415.92, "YCOORD": 136832.81, "MAR_ID": 288862, "GIS_ID": "SummerMealSitePt_165", "GLOBALID": "{B41E30BC-B4D6-4EB7-8064-D867136B293D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.972151339006857, 38.89935143989009 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 122, "NAME": "FH Faunteroy Community Enrichment Center", "ADDRESS": "4800 NANNIE HELEN BURROUGHS AVENUE NE", "PHONE": "202-397-5454", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": "3:30pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L,A", "WARD": "Ward 7", "CONTACT_FI_NAME": "Tanishia", "CONTACT_LAS_NAME": "Resper", "STATUS": "Open", "ADDRESS2": "#106", "CONTACT_PHONE": "202-397-5454", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89911152, "LONGITUDE": -76.93344534000001, "XCOORD": 405773.28, "YCOORD": 136808.74, "MAR_ID": 302568, "GIS_ID": "SummerMealSitePt_136", "GLOBALID": "{EF240FE9-96A6-4337-9038-4642716A7797}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.933447600971249, 38.899118971581728 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 123, "NAME": "Benning Courts Community Center", "ADDRESS": "1713 BENNING ROAD NE", "PHONE": "202-396-1268", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 7", "CONTACT_FI_NAME": "Sareka ", "CONTACT_LAS_NAME": "Robinson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-396-1268", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89878416, "LONGITUDE": -76.97781887, "XCOORD": 401924.11, "YCOORD": 136770.53, "MAR_ID": 297825, "GIS_ID": "SummerMealSitePt_9", "GLOBALID": "{02E36ADE-B70E-4E23-B638-D146F0094864}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.977821143379387, 38.898791613002672 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 124, "NAME": "Sherwood Recreation Center", "ADDRESS": "640 10TH STREET NE", "PHONE": "202-538-1503", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-22T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Brandon", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-538-1503", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.89854562, "LONGITUDE": -76.99301682, "XCOORD": 400605.76, "YCOORD": 136743.84, "MAR_ID": 301075, "GIS_ID": "SummerMealSitePt_202", "GLOBALID": "{EFD9E670-57CC-4FBB-B02B-7CF9D5214F28}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.993019105580359, 38.898553076310499 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 125, "NAME": "Capitol Hill Montessori @ Logan ", "ADDRESS": "215 G STREET NE", "PHONE": "202-698-4467", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-26T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89853031, "LONGITUDE": -77.00256647, "XCOORD": 399777.37, "YCOORD": 136742.12, "MAR_ID": 286687, "GIS_ID": "SummerMealSitePt_59", "GLOBALID": "{E57D975D-7251-466B-BBB5-0F18DA05F59F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.002568752930756, 38.898537762094264 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 126, "NAME": "Langston Golf Course", "ADDRESS": "2600 BENNING ROAD NE", "PHONE": "202-253-3995", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-25T04:00:00Z", "DATE_CLOSE": "2019-06-25T04:00:00Z", "DAYS_OPEN": "T", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 5", "CONTACT_FI_NAME": "Ray ", "CONTACT_LAS_NAME": "Savoy", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-253-3995", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89842884, "LONGITUDE": -76.96992902, "XCOORD": 402608.53, "YCOORD": 136731.32, "MAR_ID": 295161, "GIS_ID": "SummerMealSitePt_166", "GLOBALID": "{343D79F7-DF0B-44BA-955F-EFE941D3DC27}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.969931298987646, 38.898436630897059 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 127, "NAME": "Healthy Babies Project Inc.", "ADDRESS": "4501 GRANT STREET NE", "PHONE": "202-396-2809", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Regine", "CONTACT_LAS_NAME": "Elie", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-396-2809", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.8981246, "LONGITUDE": -76.93754811, "XCOORD": 405417.46, "YCOORD": 136698.97, "MAR_ID": 20650, "GIS_ID": "SummerMealSitePt_145", "GLOBALID": "{11E40790-643B-4473-8914-4065F7AB7EB0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.937550377400242, 38.898132388585857 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 128, "NAME": "School Without Walls @ Goding ", "ADDRESS": "2130 G STREET NW", "PHONE": "202-645-9690", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 2", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20037", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89812412, "LONGITUDE": -77.04818647, "XCOORD": 395820.01, "YCOORD": 136698.13, "MAR_ID": 242528, "GIS_ID": "SummerMealSitePt_89", "GLOBALID": "{232CE9A6-2DBC-4ABA-ABF1-D52000C1034D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.048188764065955, 38.898131572671375 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 129, "NAME": "Blow Pierce Junior Academy", "ADDRESS": "725 19TH STREET NE", "PHONE": "202-572-1070", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 7", "CONTACT_FI_NAME": "Karen", "CONTACT_LAS_NAME": "Sellers", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-572-1070", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89782045, "LONGITUDE": -76.97648125000001, "XCOORD": 402040.17, "YCOORD": 136663.58, "MAR_ID": 288919, "GIS_ID": "SummerMealSitePt_240", "GLOBALID": "{F0348DFA-9BA6-40A2-9E5A-664330F36A86}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.97648352133622, 38.897827906961766 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 130, "NAME": "Rosedale Recreation Center", "ADDRESS": "1701 GALES STREET NE", "PHONE": "202-549-7042", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Brandon", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-549-7042", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.89781195, "LONGITUDE": -76.97913403, "XCOORD": 401810.05, "YCOORD": 136662.58, "MAR_ID": 307101, "GIS_ID": "SummerMealSitePt_198", "GLOBALID": "{5BF19525-A7E2-4BCA-B368-96D9EF662628}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.979136311398634, 38.897819402449763 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 131, "NAME": "Mobile Meals at Rosedale Pool", "ADDRESS": "1701 GALES STREET NE", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89781195, "LONGITUDE": -76.97913403, "XCOORD": 401810.05, "YCOORD": 136662.58, "MAR_ID": 307101, "GIS_ID": "SummerMealSitePt_22", "GLOBALID": "{DAB65BC4-5B65-4D93-9C6D-597403AECCBC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.979136311398634, 38.897819402449763 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 132, "NAME": "Woodson Collegiate", "ADDRESS": "4095 MINNESOTA AVENUE NE", "PHONE": "202-529-7500", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 7", "CONTACT_FI_NAME": "Aldena", "CONTACT_LAS_NAME": "Richardson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-529-7500", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.8975498, "LONGITUDE": -76.94634663, "XCOORD": 404654.26, "YCOORD": 136634.64, "MAR_ID": 288100, "GIS_ID": "SummerMealSitePt_245", "GLOBALID": "{5909F3F5-114A-4C02-86C3-5F08BED0C2C0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.946348899927941, 38.897557252433806 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 133, "NAME": "Miner ES", "ADDRESS": "601 15TH STREET NE", "PHONE": "202-397-3960", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89737602, "LONGITUDE": -76.98290432, "XCOORD": 401483.0, "YCOORD": 136614.12, "MAR_ID": 289548, "GIS_ID": "SummerMealSitePt_79", "GLOBALID": "{A48CC6E0-CFC5-4C23-AA66-1ED1C67F1577}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982906596905096, 38.897383469566478 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 134, "NAME": "Aiton ES", "ADDRESS": "533 48TH PLACE NE", "PHONE": "202-671-6060", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89700181, "LONGITUDE": -76.93370092000001, "XCOORD": 405751.28, "YCOORD": 136574.53, "MAR_ID": 294490, "GIS_ID": "SummerMealSitePt_48", "GLOBALID": "{8157FA36-93F4-4D63-9165-F3FF221B1115}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.933703178825397, 38.897009267546551 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 135, "NAME": "Woodson HS", "ADDRESS": "540 55TH STREET NE", "PHONE": "202-939-2030", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89678662, "LONGITUDE": -76.92232826, "XCOORD": 406737.85, "YCOORD": 136551.42, "MAR_ID": 309633, "GIS_ID": "SummerMealSitePt_100", "GLOBALID": "{E7559CC0-2B72-4EA5-A553-5A2C1BFB8CAD}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.922330514870879, 38.896794076579894 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 136, "NAME": "Stuart- Hobson MS", "ADDRESS": "410 E STREET NE", "PHONE": "202-671-6010", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-06T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8962977, "LONGITUDE": -77.00000438, "XCOORD": 399999.62, "YCOORD": 136494.28, "MAR_ID": 294483, "GIS_ID": "SummerMealSitePt_94", "GLOBALID": "{34A2E5A5-A3AF-429B-98A2-6DBE0AF999F6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.000006663799141, 38.896305157337558 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 137, "NAME": "Life Pieces to Masterpieces", "ADDRESS": "5600 EADS STREET NE", "PHONE": "202-399-7703", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-08T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 12:15", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Maurice", "CONTACT_LAS_NAME": "Kie", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-399-7703", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89599397, "LONGITUDE": -76.91992701, "XCOORD": 406946.23, "YCOORD": 136463.61, "MAR_ID": 277686, "GIS_ID": "SummerMealSitePt_45", "GLOBALID": "{C61636A6-AA59-446E-B7B8-40E1B3080440}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.919929266276696, 38.896001430487622 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 138, "NAME": "N.E. Performing Arts Group", "ADDRESS": "3431 BENNING ROAD NE", "PHONE": "202-388-1274", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Carrington ", "CONTACT_LAS_NAME": "Lassiter", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-388-1274", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 8:00", "COMMENTS": null, "LATITUDE": 38.89599711, "LONGITUDE": -76.95652052, "XCOORD": 403771.79, "YCOORD": 136461.81, "MAR_ID": 287893, "GIS_ID": "SummerMealSitePt_179", "GLOBALID": "{9AC4B267-9343-45F0-BE66-6D5A5F380A3F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.956522785664703, 38.896004565744249 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 139, "NAME": "River Terrace ", "ADDRESS": "405 ANACOSTIA AVENUE NE", "PHONE": "202-442-7111", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8952415, "LONGITUDE": -76.95896387000001, "XCOORD": 403559.87, "YCOORD": 136377.87, "MAR_ID": 313230, "GIS_ID": "SummerMealSitePt_86", "GLOBALID": "{B88855B7-C9C1-4E7A-A14C-B7EBDD487DB3}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.958966138632448, 38.895249287089499 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 140, "NAME": "City Gate @ Richardson Dwellings", "ADDRESS": "5319 1/2 DIX STREET NE", "PHONE": "202-550-3157", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Alicia", "CONTACT_LAS_NAME": "Vicks", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-550-3157", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.89446198, "LONGITUDE": -76.9240585, "XCOORD": 406587.97, "YCOORD": 136293.24, "MAR_ID": 290956, "GIS_ID": "SummerMealSitePt_123", "GLOBALID": "{8F03FF4B-C9D5-4588-BC70-03B7A0366AF8}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.924060758242291, 38.894469433049579 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 141, "NAME": "Dorothy L Heights/ Benning Library", "ADDRESS": "3935 BENNING ROAD NE", "PHONE": "202-281-2586", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Winnell", "CONTACT_LAS_NAME": "Montague", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-281-2583", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.89418122, "LONGITUDE": -76.94777105, "XCOORD": 404530.91, "YCOORD": 136260.63, "MAR_ID": 295144, "GIS_ID": "SummerMealSitePt_130", "GLOBALID": "{3EE3703A-1304-48C3-834C-BBBCC866BEA7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.947773320419955, 38.894188678043157 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 142, "NAME": "Kelly Miller MS", "ADDRESS": "301 49TH STREET NE", "PHONE": "202-388-6870", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-29T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89331541, "LONGITUDE": -76.93245515, "XCOORD": 405859.65, "YCOORD": 136165.39, "MAR_ID": 294476, "GIS_ID": "SummerMealSitePt_71", "GLOBALID": "{FC1D79F8-55D0-4C6F-9BF1-FDFCE8281B36}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.932457410532848, 38.893322869213705 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 143, "NAME": "Peabody ES", "ADDRESS": "425 C STREET NE", "PHONE": "202-698-3277", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89289632, "LONGITUDE": -76.99985799, "XCOORD": 400012.32, "YCOORD": 136116.7, "MAR_ID": 288145, "GIS_ID": "SummerMealSitePt_83", "GLOBALID": "{8F7662AF-121C-4628-822E-B94F10FD27DE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999860269867042, 38.89290377730601 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 144, "NAME": "Boys and Girls Club- Richard England", "ADDRESS": "4103 BENNING ROAD NE", "PHONE": "202-430-9749", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Calvin", "CONTACT_LAS_NAME": "Dascent", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-430-9749", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89280965, "LONGITUDE": -76.94359431, "XCOORD": 404893.34, "YCOORD": 136108.59, "MAR_ID": 288111, "GIS_ID": "SummerMealSitePt_37", "GLOBALID": "{4ACB0255-9CD4-4C03-8E59-C63D5AF32483}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.943596580611242, 38.892817103115469 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 145, "NAME": "Eliot-Hine MS", "ADDRESS": "1830 CONSTITUTION AVENUE NE", "PHONE": "202-939-5380", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-08-12T04:00:00Z", "DATE_CLOSE": "2019-08-13T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89243149, "LONGITUDE": -76.97897792000001, "XCOORD": 401823.73, "YCOORD": 136065.31, "MAR_ID": 286499, "GIS_ID": "SummerMealSitePt_66", "GLOBALID": "{CE2B2BA4-1D72-493F-81E9-56BCB0A77CBC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.978980195729818, 38.892438946299301 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 146, "NAME": "Marvin Gaye Recreation Center", "ADDRESS": "15 61ST STREET NE", "PHONE": "202-549-7042", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Brandon", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-549-7042", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.8914305, "LONGITUDE": -76.91282043, "XCOORD": 407563.2, "YCOORD": 135957.63, "MAR_ID": 320321, "GIS_ID": "SummerMealSitePt_170", "GLOBALID": "{F09B241F-A2E6-4597-8336-190A01CAA40B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.912822687498561, 38.891438286024439 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 147, "NAME": "Faith Tabernacle/Faith 4 The City", "ADDRESS": "300 A STREET NE", "PHONE": "202-549-0900", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-26T04:00:00Z", "DATE_CLOSE": "2019-08-04T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Danette", "CONTACT_LAS_NAME": "White", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-350-1738", "ZIPCODE": "20002", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.89114031, "LONGITUDE": -77.00179656, "XCOORD": 399844.14, "YCOORD": 135921.77, "MAR_ID": 42712, "GIS_ID": "SummerMealSitePt_134", "GLOBALID": "{1B91A798-FD95-40EA-B43D-FE621081EBCD}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.001798844553221, 38.891147761341564 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 148, "NAME": "DC Prep- Benning", "ADDRESS": "100 41ST STREET NE", "PHONE": "563-554-7202", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-07-08T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Emily", "CONTACT_LAS_NAME": "Johannsen", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "563-554-7202", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:00", "COMMENTS": null, "LATITUDE": 38.8910218, "LONGITUDE": -76.94482148, "XCOORD": 404787.0, "YCOORD": 135910.06, "MAR_ID": 294468, "GIS_ID": "SummerMealSitePt_42", "GLOBALID": "{D767D025-6944-45B8-8798-5D4464B1C9E8}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.944823748365508, 38.891029256528718 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 149, "NAME": "Project Transformation - Hughes Memorial UMC", "ADDRESS": "25 53RD STREET NE", "PHONE": "615-429-0996", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-08T04:00:00Z", "DAYS_OPEN": "M,T,W,TH", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Rachel", "CONTACT_LAS_NAME": "Luna", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "615-429-0996", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.89053489, "LONGITUDE": -76.92577692, "XCOORD": 406439.25, "YCOORD": 135857.18, "MAR_ID": 287077, "GIS_ID": "SummerMealSitePt_192", "GLOBALID": "{90B5DB49-0029-4B6D-9E63-FE8BF236C38A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.925779184635502, 38.89054234537349 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 150, "NAME": "Eastern HS", "ADDRESS": "1700 EAST CAPITOL STREET NE", "PHONE": "202-698-4500", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.89040266, "LONGITUDE": -76.97968429, "XCOORD": 401762.5, "YCOORD": 135840.08, "MAR_ID": 289529, "GIS_ID": "SummerMealSitePt_65", "GLOBALID": "{D59FAC81-5CF8-4F0B-A63E-EB17825654D3}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.979686569941848, 38.890410115128169 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 151, "NAME": "Maya Angelou Public Charter School", "ADDRESS": "5600 EAST CAPITOL STREET NE", "PHONE": "202-379-4335", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Heather", "CONTACT_LAS_NAME": "Hesslink", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-379-4335", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.89029144, "LONGITUDE": -76.92063526, "XCOORD": 406885.34, "YCOORD": 135830.53, "MAR_ID": 289793, "GIS_ID": "SummerMealSitePt_172", "GLOBALID": "{A9E029C3-090A-4541-B662-20D1E36B0CA9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.920637522764011, 38.89029889194947 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 152, "NAME": "Capitol View Library", "ADDRESS": "5001 CENTRAL AVENUE SE", "PHONE": "202-645-0435", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Marcus", "CONTACT_LAS_NAME": "Wade", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-645-0435", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.88895483, "LONGITUDE": -76.92957721000001, "XCOORD": 406109.69, "YCOORD": 135681.52, "MAR_ID": 15509, "GIS_ID": "SummerMealSitePt_115", "GLOBALID": "{FA298924-5B31-4764-80A1-4D33FEB50962}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.929579473743573, 38.888962286299936 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 153, "NAME": "Benning Stoddert Recreation Center", "ADDRESS": "100 STODDERT PLACE SE", "PHONE": "202-697-1873", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-06T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "James", "CONTACT_LAS_NAME": "Battle", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-697-1873", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.88884082, "LONGITUDE": -76.94824432, "XCOORD": 404490.19, "YCOORD": 135667.78, "MAR_ID": 295821, "GIS_ID": "SummerMealSitePt_112", "GLOBALID": "{A5E783BE-AA21-470B-94D4-79C98B69B212}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.948246584361144, 38.888848273358185 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 154, "NAME": "Southern Homes & Garden", "ADDRESS": "5880 SOUTHERN AVENUE SE", "PHONE": "240-486-1824", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Selina", "CONTACT_LAS_NAME": "Brown", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-486-1824", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.88850722, "LONGITUDE": -76.9162192, "XCOORD": 407268.64, "YCOORD": 135632.81, "MAR_ID": 298152, "GIS_ID": "SummerMealSitePt_204", "GLOBALID": "{7E0CD206-6173-4E7E-86B3-0582A1E15017}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.916221459761701, 38.888514671056939 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 155, "NAME": "Washington Tennis and Education Foundation ", "ADDRESS": "200 STODDERT PLACE SE", "PHONE": "202-660-0132", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Mike", "CONTACT_LAS_NAME": "Ragland", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-660-0132", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.88851874, "LONGITUDE": -76.94716292, "XCOORD": 404584.03, "YCOORD": 135632.08, "MAR_ID": 309622, "GIS_ID": "SummerMealSitePt_229", "GLOBALID": "{DF55E9A5-9355-4E10-9A00-204535A146EC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.947165185948194, 38.888526190070415 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 156, "NAME": "American Youth Chorus Summer Music Camp", "ADDRESS": "301 A STREET SE", "PHONE": "202-629-3140", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": "2:30pm - 3:00pm", "DINNER_SUP": null, "MEAL_TYPES": "B,A", "WARD": "Ward 6", "CONTACT_FI_NAME": "Katie", "CONTACT_LAS_NAME": "Kovacovich", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-629-3140", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.88850374, "LONGITUDE": -77.0017882, "XCOORD": 399844.86, "YCOORD": 135629.09, "MAR_ID": 278305, "GIS_ID": "SummerMealSitePt_101", "GLOBALID": "{D6B16D11-CC93-4E16-A5E1-1AC2765F505A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.001790479037339, 38.888511189818303 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 157, "NAME": "Plummer ES", "ADDRESS": "4601 TEXAS AVENUE SE", "PHONE": "202-939-4360", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8872402, "LONGITUDE": -76.93993468, "XCOORD": 405211.23, "YCOORD": 135490.54, "MAR_ID": 19536, "GIS_ID": "SummerMealSitePt_85", "GLOBALID": "{8CE0E446-D0F0-43F0-8D49-A2CC9020E36E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.939936939656221, 38.887247650633569 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 158, "NAME": "Stoddert/Fort DuPont", "ADDRESS": "155 RIDGE ROAD SE", "PHONE": "202-674-4165", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Kenneth", "CONTACT_LAS_NAME": "Council", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-509-1148", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.88602724, "LONGITUDE": -76.94971038, "XCOORD": 404363.17, "YCOORD": 135355.38, "MAR_ID": 286318, "GIS_ID": "SummerMealSitePt_208", "GLOBALID": "{61A104E9-7BA2-44A9-8730-04944D80B2ED}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.949712650096345, 38.886034695262516 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 159, "NAME": "Nalle ES", "ADDRESS": "219 50TH STREET SE", "PHONE": "202-671-6280", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88595442, "LONGITUDE": -76.93079651, "XCOORD": 406004.16, "YCOORD": 135348.37, "MAR_ID": 294474, "GIS_ID": "SummerMealSitePt_81", "GLOBALID": "{D25C82E7-261D-4511-B9E8-37C2EA163D49}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.930798766459944, 38.885961872248849 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 160, "NAME": "Payne ES", "ADDRESS": "1445 C STREET SE", "PHONE": "202-698-3262", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-29T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88517068, "LONGITUDE": -76.98498373, "XCOORD": 401302.84, "YCOORD": 135259.2, "MAR_ID": 289721, "GIS_ID": "SummerMealSitePt_82", "GLOBALID": "{88963D47-2192-4B72-99F5-B37E3785858A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.984986008838973, 38.885178128699508 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 161, "NAME": "Brent ES", "ADDRESS": "301 NORTH CAROLINA AVENUE SE", "PHONE": "202-698-3363", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88480121, "LONGITUDE": -77.00145985, "XCOORD": 399873.34, "YCOORD": 135218.08, "MAR_ID": 294479, "GIS_ID": "SummerMealSitePt_56", "GLOBALID": "{471F77E1-0E3C-412B-89D7-D743460EA256}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.001462132923393, 38.88480865948609 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 162, "NAME": "Ebenezer United Methodist Church/Vacation Bible School ", "ADDRESS": "400 D STREET SE", "PHONE": "202-544-1415", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-08-05T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Merle", "CONTACT_LAS_NAME": "Hassell", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-787-2123", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.88446448, "LONGITUDE": -77.00033332, "XCOORD": 399971.08, "YCOORD": 135180.7, "MAR_ID": 28548, "GIS_ID": "SummerMealSitePt_132", "GLOBALID": "{3C13BFB4-440A-4FFD-A63D-6A7220C5B73A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.000335605437172, 38.884471934753677 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 163, "NAME": "The Horizion", "ADDRESS": "5004 D STREET SE", "PHONE": "202-710-7822", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": "4:00pm - 5:00pm", "DINNER_SUP": null, "MEAL_TYPES": "L,A", "WARD": "Ward 7", "CONTACT_FI_NAME": "Dr. Marla ", "CONTACT_LAS_NAME": "Wyche", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-710-7822", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.88403524, "LONGITUDE": -76.93024906, "XCOORD": 406051.82, "YCOORD": 135135.4, "MAR_ID": 15335, "GIS_ID": "SummerMealSitePt_214", "GLOBALID": "{4CD85A30-A792-41E6-8DA1-F5A679BCD5C6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.930251316373145, 38.884043030486829 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 164, "NAME": "Sousa MS", "ADDRESS": "3650 ELY PLACE SE", "PHONE": "202-729-3260", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88389441, "LONGITUDE": -76.95315884, "XCOORD": 404064.1, "YCOORD": 135118.46, "MAR_ID": 294584, "GIS_ID": "SummerMealSitePt_93", "GLOBALID": "{523AB0F3-EEEC-4190-8962-9026896D9270}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.953161113172527, 38.883901862321153 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 165, "NAME": "Watkins ES", "ADDRESS": "420 12TH STREET SE", "PHONE": "202-698-3355", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88346701, "LONGITUDE": -76.98999677, "XCOORD": 400867.92, "YCOORD": 135070.02, "MAR_ID": 294486, "GIS_ID": "SummerMealSitePt_97", "GLOBALID": "{7D9E27D8-565F-47B6-9911-D443D511CF02}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989999048725267, 38.883474459102217 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 166, "NAME": "For Love of Children", "ADDRESS": "1301 PENNSYLVANIA AVENUE SE", "PHONE": "202-349-3510", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Trynita", "CONTACT_LAS_NAME": "Romeo", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-349-3510", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.88110817, "LONGITUDE": -76.98811539, "XCOORD": 401031.19, "YCOORD": 134808.19, "MAR_ID": 149897, "GIS_ID": "SummerMealSitePt_137", "GLOBALID": "{F6B6FEF9-A51F-4C9F-B7D2-C38A9B4A3690}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.988117668976997, 38.881115616523516 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 167, "NAME": "Therapeutic Recreation Center", "ADDRESS": "3030 G STREET SE", "PHONE": "202-698-1794", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Priscilla", "CONTACT_LAS_NAME": "Jones", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-698-1794", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.88087191, "LONGITUDE": -76.96320323, "XCOORD": 403192.75, "YCOORD": 134782.54, "MAR_ID": 288770, "GIS_ID": "SummerMealSitePt_220", "GLOBALID": "{2BACE4F8-71C1-4EBD-9945-A442FF4CF211}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.963205499290737, 38.88087936028154 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 168, "NAME": "Step by Step Therapeutic @ G Street", "ADDRESS": "4625 G STREET SE", "PHONE": "202-827-8717", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-04T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Tiffany ", "CONTACT_LAS_NAME": "Dicks", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-827-8717", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.88057544, "LONGITUDE": -76.93474698, "XCOORD": 405661.84, "YCOORD": 134751.01, "MAR_ID": 18817, "GIS_ID": "SummerMealSitePt_207", "GLOBALID": "{755851F4-F1E2-4E38-A9AE-15E18E078BB8}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.934749241930604, 38.880582894553548 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 169, "NAME": "Benning Park Community Center", "ADDRESS": "601 53RD STREET SE", "PHONE": "202-582-6221", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 7", "CONTACT_FI_NAME": "Triston", "CONTACT_LAS_NAME": "Cooper", "STATUS": "Open", "ADDRESS2": "Unit T-2", "CONTACT_PHONE": "202-582-6221", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.88030212, "LONGITUDE": -76.92698075, "XCOORD": 406335.72, "YCOORD": 134721.18, "MAR_ID": 288760, "GIS_ID": "SummerMealSitePt_10", "GLOBALID": "{42A04925-7421-420F-AA4D-08B4CB05797B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.926983013237077, 38.880309577137197 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 170, "NAME": "Little Lights 1212 Potomac Gardens Center", "ADDRESS": "1212 I STREET SE", "PHONE": "202-591-1376", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": "2:00pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L, A", "WARD": "Ward 6", "CONTACT_FI_NAME": "LeMara", "CONTACT_LAS_NAME": "Perry", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "773-680-3050", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87994036, "LONGITUDE": -76.98947345000001, "XCOORD": 400913.37, "YCOORD": 134678.54, "MAR_ID": 290336, "GIS_ID": "SummerMealSitePt_33", "GLOBALID": "{240B4F74-7431-4446-BC45-1602BDCF7B5E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989475733679612, 38.879947808846815 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 171, "NAME": "Total Family Care Coalition", "ADDRESS": "1214 I STREET SE", "PHONE": "202-249-1020", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Monica", "CONTACT_LAS_NAME": "Fuller", "STATUS": "Open", "ADDRESS2": "#12", "CONTACT_PHONE": "202-249-1000", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.87992565, "LONGITUDE": -76.98923904, "XCOORD": 400933.71, "YCOORD": 134676.91, "MAR_ID": 290338, "GIS_ID": "SummerMealSitePt_221", "GLOBALID": "{9817220F-2602-467F-9A99-7EF13EBAA7B2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989241318299705, 38.879933103812789 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 172, "NAME": "Jefferson Middle ", "ADDRESS": "801 7TH STREET SW", "PHONE": "202-729-3270", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-07-15T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20024", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.87987093, "LONGITUDE": -77.02291066, "XCOORD": 398012.08, "YCOORD": 134671.03, "MAR_ID": 276812, "GIS_ID": "SummerMealSitePt_70", "GLOBALID": "{41E91688-2664-41A7-B785-C302F5DAEC64}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.022912949810475, 38.879878381785311 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 173, "NAME": "Benning Park Recreation Center", "ADDRESS": "5100 SOUTHERN AVENUE SE", "PHONE": "202-341-6765", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-06T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Cecilia", "CONTACT_LAS_NAME": "Graves", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-341-6765", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.87979934, "LONGITUDE": -76.92693816000001, "XCOORD": 406339.46, "YCOORD": 134665.37, "MAR_ID": 296175, "GIS_ID": "SummerMealSitePt_111", "GLOBALID": "{EAA9C2A3-E900-4C14-9B92-974994C821C0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.926940424455594, 38.87980679198985 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 174, "NAME": "Amidon-Bowen ES", "ADDRESS": "401 I STREET SW", "PHONE": "202-724-4867", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20024", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8795154, "LONGITUDE": -77.0181253, "XCOORD": 398427.29, "YCOORD": 134631.47, "MAR_ID": 294482, "GIS_ID": "SummerMealSitePt_49", "GLOBALID": "{06EBDC77-EE0E-4F4F-8518-44584764B8F2}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.018127587236819, 38.879522850651654 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 175, "NAME": "Little Lights Center", "ADDRESS": "760 7TH STREET SE", "PHONE": "202-544-7508", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": "2:00pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L, A", "WARD": "Ward 6", "CONTACT_FI_NAME": "Pearilya", "CONTACT_LAS_NAME": "Thomas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "404-663-6184", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87949269, "LONGITUDE": -76.99599487, "XCOORD": 400347.52, "YCOORD": 134628.8, "MAR_ID": 79100, "GIS_ID": "SummerMealSitePt_34", "GLOBALID": "{62431FAC-3AFA-43CF-91FF-0620D57D0064}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.995997154875653, 38.879500136877347 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 176, "NAME": "Chamberlain", "ADDRESS": "1345 POTOMAC AVENUE SE", "PHONE": "202-547-5800", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 6", "CONTACT_FI_NAME": "Andrea", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-547-5800", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87938499, "LONGITUDE": -76.9868023, "XCOORD": 401145.15, "YCOORD": 134616.92, "MAR_ID": 66334, "GIS_ID": "SummerMealSitePt_241", "GLOBALID": "{48640901-B63C-43D0-8D97-EFD6F35860D3}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.986804582155699, 38.879392440491081 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 177, "NAME": "Jan's Tutoring House", "ADDRESS": "1529 PENNSYLVANIA AVENUE SE", "PHONE": "202-547-1345", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Tonya ", "CONTACT_LAS_NAME": "Woods", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-908-2471", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.87882791, "LONGITUDE": -76.9826861, "XCOORD": 401502.32, "YCOORD": 134555.14, "MAR_ID": 61206, "GIS_ID": "SummerMealSitePt_150", "GLOBALID": "{BE0178B4-36FD-4BF1-A124-7607E9A1C82B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982688380914041, 38.878835364406804 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 178, "NAME": "Little Lights Hopkins Center", "ADDRESS": "1000 12TH STREET SE", "PHONE": "202-600-2248", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": "2:00pm - 4:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L, A", "WARD": "Ward 6", "CONTACT_FI_NAME": "Cierra", "CONTACT_LAS_NAME": "Peterson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-286-0832", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87819492, "LONGITUDE": -76.98974085, "XCOORD": 400890.19, "YCOORD": 134484.78, "MAR_ID": 280103, "GIS_ID": "SummerMealSitePt_35", "GLOBALID": "{DE798F92-693B-4F0C-A4CA-84E47C7F0F85}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989743132996779, 38.878202366305587 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 179, "NAME": "Arthur Capper Recreation Center", "ADDRESS": "1000 5TH STREET SE", "PHONE": "202-297-7432", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-22T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Otis", "CONTACT_LAS_NAME": "Grandson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-297-7432", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.8779046, "LONGITUDE": -76.99912655, "XCOORD": 400075.79, "YCOORD": 134452.54, "MAR_ID": 289437, "GIS_ID": "SummerMealSitePt_105", "GLOBALID": "{B8241DA2-0A1F-4809-8680-95C7E10E84C7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999128830727997, 38.877912382638193 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 180, "NAME": "Greenleaf Gardens Extension Resident Council", "ADDRESS": "205 L STREET SW", "PHONE": "202-803-1349", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Andrenia", "CONTACT_LAS_NAME": "Walker", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-803-1349", "ZIPCODE": "20024", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.87768454, "LONGITUDE": -77.01415312, "XCOORD": 398771.92, "YCOORD": 134428.17, "MAR_ID": 150264, "GIS_ID": "SummerMealSitePt_143", "GLOBALID": "{DFC71D83-9E4A-4064-9F5A-FBEE91B2B7B1}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.014155402156007, 38.877691993157484 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 181, "NAME": "PSI Services, Inc. ", "ADDRESS": "770 M STREET SE", "PHONE": "202-547-3870", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Dr. Sheila", "CONTACT_LAS_NAME": "Pandit", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-385-8036", "ZIPCODE": "20003", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 8:30", "COMMENTS": null, "LATITUDE": 38.87699771, "LONGITUDE": -76.99557668, "XCOORD": 400383.82, "YCOORD": 134351.84, "MAR_ID": 288946, "GIS_ID": "SummerMealSitePt_193", "GLOBALID": "{E962582E-9791-4142-9ECD-86EB699A46AC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.995578956126892, 38.877005156795128 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 182, "NAME": "Mobile Meals at Ridge Road Pool", "ADDRESS": "830 RIDGE ROAD SE", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "2:00 - 3:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87652787, "LONGITUDE": -76.9407557, "XCOORD": 405140.77, "YCOORD": 134301.38, "MAR_ID": 310262, "GIS_ID": "SummerMealSitePt_21", "GLOBALID": "{AA60830E-9331-4092-8302-53F36D4193A7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.940757965455944, 38.876535651752647 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 183, "NAME": "Ridge Road Recreation Center", "ADDRESS": "830 RIDGE ROAD SE", "PHONE": "202-215-7208", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Michelle", "CONTACT_LAS_NAME": "Mundey", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-215-7208", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.87652787, "LONGITUDE": -76.9407557, "XCOORD": 405140.77, "YCOORD": 134301.38, "MAR_ID": 310262, "GIS_ID": "SummerMealSitePt_195", "GLOBALID": "{198BFE89-7F18-4C22-806F-FEE196BA172B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.940757965455944, 38.876535651752647 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 184, "NAME": "King Greenleaf Recreation Center", "ADDRESS": "201 N STREET SW", "PHONE": "202-645-7454", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Otis", "CONTACT_LAS_NAME": "Grandson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-297-7432", "ZIPCODE": "20024", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.87501614, "LONGITUDE": -77.01279251, "XCOORD": 398889.94, "YCOORD": 134131.94, "MAR_ID": 52917, "GIS_ID": "SummerMealSitePt_161", "GLOBALID": "{1E563217-BB88-470B-8E78-F065EED6B8ED}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.01279479135377, 38.875023592503531 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 185, "NAME": "James Creek Resident Council", "ADDRESS": "100 N STREET SW", "PHONE": "202-510-3120", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:30 - 3:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 6", "CONTACT_FI_NAME": "Christine", "CONTACT_LAS_NAME": "Spencer", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-803-2231", "ZIPCODE": "20024", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:30 - 10:30", "COMMENTS": null, "LATITUDE": 38.87447019, "LONGITUDE": -77.01236452000001, "XCOORD": 398927.07, "YCOORD": 134071.33, "MAR_ID": 289108, "GIS_ID": "SummerMealSitePt_149", "GLOBALID": "{CED78134-7CEC-4379-A4F1-A9AF41F21E9E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.012366804650171, 38.874477639478997 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 186, "NAME": "Lawrence E. Boone ES", "ADDRESS": "2200 MINNESOTA AVENUE SE", "PHONE": "202-671-6240", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8725643, "LONGITUDE": -76.97389661, "XCOORD": 402265.18, "YCOORD": 133860.05, "MAR_ID": 294539, "GIS_ID": "SummerMealSitePt_74", "GLOBALID": "{2397A6D6-ADB5-4934-B429-A456215D41DE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.973898881013895, 38.872572082851605 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 187, "NAME": "Vee's Early Education Center", "ADDRESS": "2130 MINNESOTA AVENUE SE", "PHONE": "240-687-1229", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Cherrealle", "CONTACT_LAS_NAME": "Moore", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "240-687-1229", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:15 - 8:15", "COMMENTS": null, "LATITUDE": 38.87140693, "LONGITUDE": -76.9753838, "XCOORD": 402136.16, "YCOORD": 133731.5, "MAR_ID": 51303, "GIS_ID": "SummerMealSitePt_228", "GLOBALID": "{E0EAFFB8-E03D-475E-8525-BCB81949785A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.975386076422154, 38.871414375329998 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 188, "NAME": "Anancostia HS ", "ADDRESS": "1601 16TH STREET SE", "PHONE": "202-698-2155", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.87008406, "LONGITUDE": -76.98307725, "XCOORD": 401468.56, "YCOORD": 133584.5, "MAR_ID": 155922, "GIS_ID": "SummerMealSitePt_50", "GLOBALID": "{B2C94988-6343-456F-985C-49C682587F60}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.983079530504611, 38.870091507625673 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 189, "NAME": "Champions- Rocketship Legacy", "ADDRESS": "4250 MASSACHUSETTS AVENUE SE", "PHONE": "301-237-2005", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": "2:30pm - 3:15pm", "DINNER_SUP": "5:00 - 5:45", "MEAL_TYPES": "A, S", "WARD": "Ward 7", "CONTACT_FI_NAME": "Temika", "CONTACT_LAS_NAME": "Hill", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-237-2005", "ZIPCODE": "20019", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.87001696, "LONGITUDE": -76.94023576, "XCOORD": 405186.36, "YCOORD": 133578.65, "MAR_ID": 278515, "GIS_ID": "SummerMealSitePt_40", "GLOBALID": "{F4F0F4F3-6F89-456F-BFB2-78FB80D1CDF4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.940238020379311, 38.870024742774085 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 190, "NAME": "Fort Davis Recreation Center", "ADDRESS": "1400 41ST STREET SE", "PHONE": "202-549-7042", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Brandon", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-549-7042", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.86919053, "LONGITUDE": -76.94468395, "XCOORD": 404800.4, "YCOORD": 133486.63, "MAR_ID": 295122, "GIS_ID": "SummerMealSitePt_138", "GLOBALID": "{DB057BB4-6DE5-4099-AA4C-9630EE6F5FC4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.944686215372158, 38.869197980582761 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 191, "NAME": "Ketcham ES", "ADDRESS": "1919 15TH STREET SE", "PHONE": "202-698-1122", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.86604269, "LONGITUDE": -76.98362116, "XCOORD": 401421.44, "YCOORD": 133135.87, "MAR_ID": 286537, "GIS_ID": "SummerMealSitePt_72", "GLOBALID": "{0C0B9525-6C7B-4C44-974D-89A02A239686}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.983623438695361, 38.866050141935062 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 192, "NAME": "Urban Ed, Inc.", "ADDRESS": "2041 MARTIN LUTHER KING JR AVENUE SE", "PHONE": "202-610-2344", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-27T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Violet", "CONTACT_LAS_NAME": "Browne", "STATUS": "Open", "ADDRESS2": "Suite M-2", "CONTACT_PHONE": "202-610-2344", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.86592269, "LONGITUDE": -76.98982639, "XCOORD": 400882.92, "YCOORD": 133122.47, "MAR_ID": 278056, "GIS_ID": "SummerMealSitePt_227", "GLOBALID": "{200EA32F-7520-47FC-B52D-031FB93CD139}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.98982866632619, 38.865930134482376 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 193, "NAME": "Anacostia Neighborhood Library", "ADDRESS": "1800 GOOD HOPE ROAD SE", "PHONE": "202-715-7707", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Yvette", "CONTACT_LAS_NAME": "Davis", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-715-7707", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.8659082, "LONGITUDE": -76.97862553, "XCOORD": 401854.99, "YCOORD": 133121.03, "MAR_ID": 53560, "GIS_ID": "SummerMealSitePt_102", "GLOBALID": "{EC7423B9-9C2E-4B20-AEA8-0486D7CBFF03}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.978627807395, 38.865915649665865 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 194, "NAME": "Francis Gregory Library", "ADDRESS": "3660 ALABAMA AVENUE SE", "PHONE": "202-698-6373", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Maria", "CONTACT_LAS_NAME": "Escher", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-698-6373", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.8648716, "LONGITUDE": -76.95420121, "XCOORD": 403974.72, "YCOORD": 133006.74, "MAR_ID": 290019, "GIS_ID": "SummerMealSitePt_141", "GLOBALID": "{626DDC75-06BC-4889-B677-D8D3A6DAEC76}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.954203480108959, 38.864879053411606 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 195, "NAME": "Arcadia Mobile Market at Anacostia", "ADDRESS": "13TH STREET SE AND W STREET SE", "PHONE": "571-781-0287", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-24T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "10:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": null, "CONTACT_FI_NAME": "Erin ", "CONTACT_LAS_NAME": "Close", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "724-991-1080", "ZIPCODE": null, "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.86454528, "LONGITUDE": -76.98781003000001, "XCOORD": 401057.93001493998, "YCOORD": 132969.59000883001, "MAR_ID": 900583, "GIS_ID": "SummerMealSitePt_4", "GLOBALID": "{781D5971-8003-43D9-995C-BAC84351C572}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.987812315183604, 38.86455273501533 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 196, "NAME": "Beers ES ", "ADDRESS": "3600 ALABAMA AVENUE SE", "PHONE": "202-939-4800", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.86434984, "LONGITUDE": -76.95560475000001, "XCOORD": 403852.94, "YCOORD": 132948.76, "MAR_ID": 278406, "GIS_ID": "SummerMealSitePt_54", "GLOBALID": "{768D1745-F13F-4CDF-81C9-6B36AA94E292}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.955607017560084, 38.864357287429307 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 197, "NAME": "Cedar Tree Academy Public Charter School", "ADDRESS": "701 HOWARD ROAD SE", "PHONE": "202-610-4193", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-08T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Robinette", "CONTACT_LAS_NAME": "Lewis-Breedlove", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-610-4193", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.86421603, "LONGITUDE": -76.99919401, "XCOORD": 400069.95, "YCOORD": 132932.97, "MAR_ID": 300872, "GIS_ID": "SummerMealSitePt_117", "GLOBALID": "{0F28A39B-95D6-4F84-823F-FB233A0070C8}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999196288333323, 38.864223479915296 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 198, "NAME": "Bethel Christian Fellowship CDC", "ADDRESS": "2220 MARTIN LUTHER KING JR AVENUE SE", "PHONE": "202-701-8490", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Wanda", "CONTACT_LAS_NAME": "Edwards", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-701-8490", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.86411245, "LONGITUDE": -76.98990557, "XCOORD": 400876.07, "YCOORD": 132921.52, "MAR_ID": 50017, "GIS_ID": "SummerMealSitePt_113", "GLOBALID": "{00AAA928-D7F7-4727-A997-CE11EB17BDBD}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989907852694714, 38.864119900337897 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 199, "NAME": "Park Naylor Community Center", "ADDRESS": "2574 NAYLOR ROAD SE", "PHONE": "202-575-2544", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 7", "CONTACT_FI_NAME": "Eric", "CONTACT_LAS_NAME": "Washington", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-575-2544", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.86389887, "LONGITUDE": -76.96931745000001, "XCOORD": 402662.87, "YCOORD": 132898.21, "MAR_ID": 287117, "GIS_ID": "SummerMealSitePt_24", "GLOBALID": "{64559185-AF06-471A-AF1C-EDB83BB35471}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.969319720302536, 38.863906319962965 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 200, "NAME": "Savoy ES", "ADDRESS": "2400 SHANNON PLACE SE", "PHONE": "202-939-2000", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-07-27T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.86285199, "LONGITUDE": -76.99360426, "XCOORD": 400555.08, "YCOORD": 132781.57, "MAR_ID": 278153, "GIS_ID": "SummerMealSitePt_88", "GLOBALID": "{B3AE6EB1-C227-493B-B904-CAE190B1D44F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.993606540641025, 38.862859433361635 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 201, "NAME": "Cedar Heights", "ADDRESS": "1528 BUTLER STREET SE", "PHONE": "202-735-0490", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 8", "CONTACT_FI_NAME": "James ", "CONTACT_LAS_NAME": "Jones", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-702-6364", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:30 - 10:00", "COMMENTS": null, "LATITUDE": 38.86245831, "LONGITUDE": -76.98409082000001, "XCOORD": 401380.75, "YCOORD": 132737.97, "MAR_ID": 286301, "GIS_ID": "SummerMealSitePt_27", "GLOBALID": "{A7404E35-8425-4FE7-874C-88215C1145AE}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.984093096615908, 38.862465757988886 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 202, "NAME": "Frederick Douglass Community Center", "ADDRESS": "1427 CEDAR STREET SE", "PHONE": "202-889-3850", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 8", "CONTACT_FI_NAME": "Samira", "CONTACT_LAS_NAME": "Thompson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-889-3850", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.8616706, "LONGITUDE": -76.98613027, "XCOORD": 401203.76, "YCOORD": 132650.5, "MAR_ID": 148134, "GIS_ID": "SummerMealSitePt_14", "GLOBALID": "{EE5DD9E6-5556-4388-B7AB-C561AF09FB11}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.9861325519133, 38.861678051520542 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 203, "NAME": "Barry Farm Recreation Center", "ADDRESS": "1230 SUMNER ROAD SE", "PHONE": "202-391-2432", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Marcus ", "CONTACT_LAS_NAME": "Coates", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-391-2432", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.86032509, "LONGITUDE": -76.99630335000001, "XCOORD": 400320.84, "YCOORD": 132501.09, "MAR_ID": 285960, "GIS_ID": "SummerMealSitePt_110", "GLOBALID": "{D88B7521-C9D7-4298-9C82-1941E03BC143}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.996305630573332, 38.860332868201453 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 204, "NAME": "Hillcrest Recreation Center", "ADDRESS": "3100 DENVER STREET SE", "PHONE": "202-645-9200", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-06T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 7", "CONTACT_FI_NAME": "Nika", "CONTACT_LAS_NAME": "Phillips", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-645-9201", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.85860646, "LONGITUDE": -76.96263149000001, "XCOORD": 403243.37, "YCOORD": 132310.93, "MAR_ID": 296174, "GIS_ID": "SummerMealSitePt_147", "GLOBALID": "{0218B2DF-8B79-4D4B-9333-BCE3AC0EF40A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.962633757551416, 38.858613906121612 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 205, "NAME": "Fort Stanton Recreation Center", "ADDRESS": "1812 ERIE STREET SE", "PHONE": "202-671-1040", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Elliott", "CONTACT_LAS_NAME": "Brown", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-1040", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.85758267, "LONGITUDE": -76.97872838000001, "XCOORD": 401846.28, "YCOORD": 132196.87, "MAR_ID": 296165, "GIS_ID": "SummerMealSitePt_139", "GLOBALID": "{6D515213-C693-4270-B6DB-260D3A23210C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.978730650847709, 38.857590446802256 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 206, "NAME": "Moten ES", "ADDRESS": "1565 MORRIS ROAD SE", "PHONE": "202-698-1111", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.856656, "LONGITUDE": -76.98294368000001, "XCOORD": 401480.43, "YCOORD": 132093.89, "MAR_ID": 294524, "GIS_ID": "SummerMealSitePt_80", "GLOBALID": "{0E29187D-6F36-430D-A2FC-EB719D3A1AB7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.982945956678179, 38.856663450724263 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 207, "NAME": "New Parkchester Housing Co-Op", "ADDRESS": "2900 POMEROY ROAD SE", "PHONE": "202-889-3712", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Darnese", "CONTACT_LAS_NAME": "Baker", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-889-3712", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.85662747, "LONGITUDE": -76.99636748, "XCOORD": 400315.29, "YCOORD": 132090.59, "MAR_ID": 278295, "GIS_ID": "SummerMealSitePt_180", "GLOBALID": "{398549A7-60FF-4130-8312-AF7A55789E84}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.99636976447519, 38.856634911783978 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 208, "NAME": "Discover", "ADDRESS": "2600 DOUGLASS ROAD SE", "PHONE": "202-909-2585", "SPONSORING": "KIPP ", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-12T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Dionna", "CONTACT_LAS_NAME": "Day", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-909-2585", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.85662232, "LONGITUDE": -76.98804884, "XCOORD": 401037.32, "YCOORD": 132090.08, "MAR_ID": 311456, "GIS_ID": "SummerMealSitePt_246", "GLOBALID": "{851E677F-E330-47F8-9793-BBBCA43FCA26}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.988051119518744, 38.856629762622767 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 209, "NAME": "Emmanuel Baptist Church", "ADDRESS": "2409 AINGER PLACE SE", "PHONE": "202-678-0884", "SPONSORING": "Ainger Place Development Corporation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Deborah", "CONTACT_LAS_NAME": "Short", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-378-2668", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:15", "COMMENTS": null, "LATITUDE": 38.85655846, "LONGITUDE": -76.97185469, "XCOORD": 402442.92, "YCOORD": 132083.3, "MAR_ID": 150401, "GIS_ID": "SummerMealSitePt_1", "GLOBALID": "{C9E5E60D-66D1-479F-971E-16FFDBDF046E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.971856958899679, 38.856565905279339 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 210, "NAME": "Champions- Rocketship Rise", "ADDRESS": "2335 RAYNOLDS PLACE SE", "PHONE": "301-237-2005", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": "4:30pm - 5:30pm", "DINNER_SUP": null, "MEAL_TYPES": "L, A", "WARD": "Ward 8", "CONTACT_FI_NAME": "Temika", "CONTACT_LAS_NAME": "Hill", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "301-237-2005", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.85579528, "LONGITUDE": -76.9745675, "XCOORD": 402207.48, "YCOORD": 131998.55, "MAR_ID": 48301, "GIS_ID": "SummerMealSitePt_41", "GLOBALID": "{53F3B495-127C-47DB-A987-B79E3190A66D}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.974569777441303, 38.855803063306432 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 211, "NAME": "The Learning Curve CDC", "ADDRESS": "2490 ALABAMA AVENUE SE", "PHONE": "202-607-1665", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Tanetta", "CONTACT_LAS_NAME": "Merritt", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-607-1665", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:45 - 8:30", "COMMENTS": null, "LATITUDE": 38.85526357, "LONGITUDE": -76.97033478, "XCOORD": 402574.89, "YCOORD": 131939.6, "MAR_ID": 278169, "GIS_ID": "SummerMealSitePt_217", "GLOBALID": "{4E29A144-DCE6-4B60-9633-B695386CE2C7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.970337046753301, 38.855271017758717 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 212, "NAME": "Horton's Kids", "ADDRESS": "2500 POMEROY ROAD SE", "PHONE": "202-889-2559", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-08-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": "12:00pm - 1:00pm", "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "A, S", "WARD": "Ward 8", "CONTACT_FI_NAME": "Sarah", "CONTACT_LAS_NAME": "Cannington", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "239-826-8061", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.85492933, "LONGITUDE": -76.98955502, "XCOORD": 400906.61, "YCOORD": 131902.13, "MAR_ID": 289831, "GIS_ID": "SummerMealSitePt_30", "GLOBALID": "{81E245EE-337C-431B-BFCF-A2AE84DC1F18}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989557301977641, 38.854936772797458 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 213, "NAME": "Douglass Community Center", "ADDRESS": "1922 FREDERICK DOUGLASS COURT SE", "PHONE": "202-316-4989", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "James", "CONTACT_LAS_NAME": "Berry", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-316-4989", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.85256838, "LONGITUDE": -76.97770431000001, "XCOORD": 401935.3, "YCOORD": 131640.27, "MAR_ID": 314542, "GIS_ID": "SummerMealSitePt_131", "GLOBALID": "{C1F0F403-8EAC-4BAE-9B19-1CC7266AECCF}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.977706586604384, 38.852576163489935 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 214, "NAME": "Project Transformation - Brighter Days Ministries", "ADDRESS": "2525 12TH PLACE SE", "PHONE": "615-429-0996", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-08T04:00:00Z", "DAYS_OPEN": "M,T,W,TH", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Rachel", "CONTACT_LAS_NAME": "Luna", "STATUS": "Open ", "ADDRESS2": null, "CONTACT_PHONE": "615-429-0996", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:15 - 10:15", "COMMENTS": null, "LATITUDE": 38.8515508, "LONGITUDE": -76.98533607, "XCOORD": 401272.87, "YCOORD": 131527.14, "MAR_ID": 46354, "GIS_ID": "SummerMealSitePt_191", "GLOBALID": "{0D01F0CC-C786-4996-8557-5BD09F286FC9}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.985338344642599, 38.85155824704448 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 215, "NAME": "YMCA Capital View", "ADDRESS": "2118 RIDGECREST COURT SE", "PHONE": "202-889-0643", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Tanisha", "CONTACT_LAS_NAME": "Bellamy", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-889-0643", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.84888407, "LONGITUDE": -76.9725663, "XCOORD": 402381.41, "YCOORD": 131231.37, "MAR_ID": 278066, "GIS_ID": "SummerMealSitePt_237", "GLOBALID": "{8D4C1010-71CC-4169-B38A-13AAB52269EA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.972568575836277, 38.848891519545305 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 216, "NAME": "Tech Prep", "ADDRESS": "2705 MARTIN LUTHER KING JR AVENUE SE", "PHONE": "202-552-5700", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 8", "CONTACT_FI_NAME": "Michia", "CONTACT_LAS_NAME": "Slaughter", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-552-5700", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.84829917, "LONGITUDE": -76.99618589000001, "XCOORD": 400331.09, "YCOORD": 131166.09, "MAR_ID": 289904, "GIS_ID": "SummerMealSitePt_243", "GLOBALID": "{F4A849BB-E30E-4DC2-8E88-913FC779192F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.996188174166747, 38.848306608880186 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 217, "NAME": "Southeast", "ADDRESS": "645 MILWAUKEE PLACE SE", "PHONE": "202-256-2190", "SPONSORING": "Friendship PCS", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-25T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": null, "WARD": "Ward 8", "CONTACT_FI_NAME": "Theresia", "CONTACT_LAS_NAME": "Williams", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-256-2190", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.84779147, "LONGITUDE": -76.99700774, "XCOORD": 400259.75, "YCOORD": 131109.73, "MAR_ID": 1655, "GIS_ID": "SummerMealSitePt_242", "GLOBALID": "{043EC245-F249-4FF5-A7A2-EA913AC3466E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.997010021318403, 38.847798917106942 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 218, "NAME": "Kids Are People Too I", "ADDRESS": "2275 SAVANNAH STREET SE", "PHONE": "202-450-3496", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Kala", "CONTACT_LAS_NAME": "Taylor", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-450-3496", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:30 - 8:30", "COMMENTS": null, "LATITUDE": 38.84762076, "LONGITUDE": -76.97155052, "XCOORD": 402469.63, "YCOORD": 131091.16, "MAR_ID": 278134, "GIS_ID": "SummerMealSitePt_159", "GLOBALID": "{67D40945-18F1-44C5-8029-C75110D4FE95}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.971552789929234, 38.847628203006749 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 219, "NAME": "Malcolm X Recreation Center", "ADDRESS": "1351 ALABAMA AVENUE SE", "PHONE": "202-727-9573", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-19T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Curtis", "CONTACT_LAS_NAME": "Roach", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-5125", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.84497916, "LONGITUDE": -76.98614653, "XCOORD": 401202.63, "YCOORD": 130797.63, "MAR_ID": 289201, "GIS_ID": "SummerMealSitePt_168", "GLOBALID": "{18EAA8B9-B294-47A6-B22C-C5EF286ECD8C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.986148810542829, 38.844986598807864 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 220, "NAME": "Congress Park Community Center", "ADDRESS": "1345 SAVANNAH STREET SE", "PHONE": "202-563-2406", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": null, "SNACK_TIME": null, "DINNER_SUP": "5:30 - 6:00", "MEAL_TYPES": "B, S", "WARD": "Ward 8", "CONTACT_FI_NAME": "Tyla", "CONTACT_LAS_NAME": "Bodrick", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-372-7603", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.84361675, "LONGITUDE": -76.98638617, "XCOORD": 401181.85, "YCOORD": 130646.39, "MAR_ID": 295931, "GIS_ID": "SummerMealSitePt_13", "GLOBALID": "{8825F392-D529-423A-8811-CEEDD0A1BF50}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.98638844156136, 38.843624189619398 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 221, "NAME": "Boys and Girls Club- THEARC", "ADDRESS": "1901 MISSISSIPPI AVENUE SE", "PHONE": "202-610-9707", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-18T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Kerron", "CONTACT_LAS_NAME": "Kalloo", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-610-9707", "ZIPCODE": "20020", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.84355746, "LONGITUDE": -76.97532187, "XCOORD": 402142.37, "YCOORD": 130640.01, "MAR_ID": 295845, "GIS_ID": "SummerMealSitePt_39", "GLOBALID": "{C7FD9A20-5990-4CBF-8703-36D614C8D984}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.975324143870296, 38.843564901385875 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 222, "NAME": "Tucker's Child Development Center", "ADDRESS": "3215 11TH PLACE SE", "PHONE": "202-562-0703", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Bertha", "CONTACT_LAS_NAME": "Tucker", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-562-0703", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:00 - 8:30", "COMMENTS": null, "LATITUDE": 38.84343879, "LONGITUDE": -76.9917398, "XCOORD": 400717.09, "YCOORD": 130626.58, "MAR_ID": 38378, "GIS_ID": "SummerMealSitePt_224", "GLOBALID": "{386DE956-EA0E-4125-B07D-DBDBFA072EBF}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.991742075224593, 38.843446233690699 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 223, "NAME": "Children's Health Center at THEARC", "ADDRESS": "1801 MISSISSIPPI AVENUE SE", "PHONE": "202-473-3076", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-24T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "11:00 - 12:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Ellen", "CONTACT_LAS_NAME": "Wiggins", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-473-3076", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.84337425, "LONGITUDE": -76.9770855, "XCOORD": 401989.27, "YCOORD": 130619.67, "MAR_ID": 313139, "GIS_ID": "SummerMealSitePt_12", "GLOBALID": "{27E2B897-F0D3-4FD6-8F9A-CA93FC9F5383}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.977087774085518, 38.84338202902876 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 224, "NAME": "Congress Heights Recreation Center", "ADDRESS": "611 ALABAMA AVENUE SE", "PHONE": "202-297-7432", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Otis", "CONTACT_LAS_NAME": "Grandson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-297-7432", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.84225587, "LONGITUDE": -76.99688783000001, "XCOORD": 400270.18, "YCOORD": 130495.24, "MAR_ID": 307835, "GIS_ID": "SummerMealSitePt_126", "GLOBALID": "{81AB4B85-796E-4052-93B5-86132763E67C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.996890111156418, 38.842263314709015 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 225, "NAME": "Center City - Congress Heights", "ADDRESS": "220 HIGHVIEW PLACE SE", "PHONE": "202-562-7070", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-18T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Chris ", "CONTACT_LAS_NAME": "DeTurris", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-562-7070", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.84158668, "LONGITUDE": -77.00444463, "XCOORD": 399614.14, "YCOORD": 130420.96, "MAR_ID": 303702, "GIS_ID": "SummerMealSitePt_118", "GLOBALID": "{5F35EF92-AB9F-4F02-BF0C-DFE632A74413}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.004446910307621, 38.841594123678156 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 226, "NAME": "Meadowbrook Run Community Center/CPDC", "ADDRESS": "3635 6TH STREET SE", "PHONE": "202-506-3031", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Nicole", "CONTACT_LAS_NAME": "Johnson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-506-3031", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:30", "COMMENTS": null, "LATITUDE": 38.83884333, "LONGITUDE": -76.99915605, "XCOORD": 400073.27, "YCOORD": 130116.42, "MAR_ID": 295893, "GIS_ID": "SummerMealSitePt_174", "GLOBALID": "{24ADA1CD-0AE2-49EF-8A01-8AB750DDF068}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999158332394217, 38.838850771521422 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 227, "NAME": "Ballou Stay ", "ADDRESS": "3401 4TH STREET SE", "PHONE": "202-645-3390", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.83851166, "LONGITUDE": -77.0013625, "XCOORD": 399881.71, "YCOORD": 130079.64, "MAR_ID": 294567, "GIS_ID": "SummerMealSitePt_52", "GLOBALID": "{75C9568D-E04D-4E48-9A8C-4750582FCBF0}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.001364775723204, 38.838519435597846 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 228, "NAME": "Ballou HS", "ADDRESS": "3401 4TH STREET SE", "PHONE": "202-645-3400", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-20T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.83851166, "LONGITUDE": -77.0013625, "XCOORD": 399881.71, "YCOORD": 130079.64, "MAR_ID": 294567, "GIS_ID": "SummerMealSitePt_51", "GLOBALID": "{910D5689-96D3-48DF-90C7-5137ABFCAE8B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.001364775723204, 38.838519435597846 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 229, "NAME": "Southeast Tennis Learning Center", "ADDRESS": "701 MISSISSIPPI AVENUE SE", "PHONE": "202-645-6221", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "George", "CONTACT_LAS_NAME": "Henry", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-645-6221", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.83851133, "LONGITUDE": -76.99454725, "XCOORD": 400473.4, "YCOORD": 130079.58, "MAR_ID": 295830, "GIS_ID": "SummerMealSitePt_203", "GLOBALID": "{75751FB0-56CC-4C2D-A2B6-A109747760B4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.994549531732858, 38.838518775931888 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 230, "NAME": "Wheeler Terrace Community Center", "ADDRESS": "1217 VALLEY AVENUE SE", "PHONE": "202-562-1920", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Cora", "CONTACT_LAS_NAME": "Clark", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-562-1920", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.83728504, "LONGITUDE": -76.98966726, "XCOORD": 400897.09, "YCOORD": 129943.49, "MAR_ID": 71378, "GIS_ID": "SummerMealSitePt_231", "GLOBALID": "{70EE9E96-8B3B-4760-865E-8DB0F32C7D5A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989669534155695, 38.83729248545383 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 231, "NAME": "Royal Courts Apartments", "ADDRESS": "3719 4TH STREET SE", "PHONE": "202-561-1788", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Lucinda ", "CONTACT_LAS_NAME": "Easley", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-561-1788", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.83677795, "LONGITUDE": -77.00178771, "XCOORD": 399844.79, "YCOORD": 129887.15, "MAR_ID": 147492, "GIS_ID": "SummerMealSitePt_199", "GLOBALID": "{33B56EF5-A596-4466-AB05-9EC454A87E95}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.00178998665649, 38.836785392234695 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 232, "NAME": "Mobile Meals at Oxon Run Pool", "ADDRESS": "501 MISSISSIPPI AVENUE SE", "PHONE": "202-601-7309", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-22T04:00:00Z", "DATE_CLOSE": "2019-08-17T04:00:00Z", "DAYS_OPEN": "SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Crystal", "CONTACT_LAS_NAME": "Nicholas", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-601-7309", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.83675634, "LONGITUDE": -76.99893125, "XCOORD": 400092.79, "YCOORD": 129884.75, "MAR_ID": 310268, "GIS_ID": "SummerMealSitePt_20", "GLOBALID": "{9E60E9AD-ECF4-46E6-872D-E9C63BD5B752}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.998933525871834, 38.836763780842027 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 233, "NAME": "Simon ES", "ADDRESS": "401 MISSISSIPPI AVENUE SE", "PHONE": "202-645-3360", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.83598054, "LONGITUDE": -77.000195, "XCOORD": 399983.07, "YCOORD": 129798.63, "MAR_ID": 294481, "GIS_ID": "SummerMealSitePt_92", "GLOBALID": "{2F62B4C4-2BEE-4265-9BBC-202B67D4ADB7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.000197277003309, 38.835987977174767 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 234, "NAME": "Arbor View Community Center", "ADDRESS": "1220 SOUTHERN AVENUE SE", "PHONE": "202-562-1920", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Cora", "CONTACT_LAS_NAME": "Clark", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-562-1920", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.83466543, "LONGITUDE": -76.98659888, "XCOORD": 401163.53, "YCOORD": 129652.73, "MAR_ID": 285942, "GIS_ID": "SummerMealSitePt_103", "GLOBALID": "{CFE8CA9C-FDAF-4C56-B249-18BB86804AFA}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.986601151052724, 38.834672874341933 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 235, "NAME": "Higher Achievement- Achievement Prep", "ADDRESS": "908 WAHLER PLACE SE", "PHONE": "202-423-6649", "SPONSORING": "Child Care Resources", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-29T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Nyasha", "CONTACT_LAS_NAME": "Rusununguko", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-423-6649", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:15", "COMMENTS": null, "LATITUDE": 38.83432822, "LONGITUDE": -76.99226882000001, "XCOORD": 400671.25, "YCOORD": 129615.24, "MAR_ID": 294502, "GIS_ID": "SummerMealSitePt_43", "GLOBALID": "{AC4B9EDD-8B1A-410B-A39D-D92FAC0290A4}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.992271095121851, 38.834335660255825 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 236, "NAME": "True Gospel Tabernacle Baptist Church", "ADDRESS": "4201 WHEELER ROAD SE", "PHONE": "202-621-4566", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Pam", "CONTACT_LAS_NAME": "Hermans", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-621-4566", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.83315538, "LONGITUDE": -76.98954554, "XCOORD": 400907.71, "YCOORD": 129485.07, "MAR_ID": 25556, "GIS_ID": "SummerMealSitePt_223", "GLOBALID": "{EABE0B55-B7F2-4F80-BD16-55E9F04F4724}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.989547816685146, 38.833162816800233 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 237, "NAME": "Ferebee Hope Recreation Center", "ADDRESS": "3999 8TH STREET SE", "PHONE": "202-297-7432", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Otis", "CONTACT_LAS_NAME": "Grandson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-297-7432", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.8323439, "LONGITUDE": -76.99516344, "XCOORD": 400419.94, "YCOORD": 129394.95, "MAR_ID": 294588, "GIS_ID": "SummerMealSitePt_135", "GLOBALID": "{FAEB7AA6-491E-448D-B98E-2F65F9E8B930}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.995165715758318, 38.832351341953292 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 238, "NAME": "Jewel's New Beginning Learning Center", "ADDRESS": "3927 SOUTH CAPITOL STREET SW", "PHONE": "202-525-3639", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 12:45", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Jewel", "CONTACT_LAS_NAME": "Parker-Frye", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-525-3623", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": null, "LATITUDE": 38.83192303, "LONGITUDE": -77.00836552, "XCOORD": 399273.65, "YCOORD": 129348.29, "MAR_ID": 276604, "GIS_ID": "SummerMealSitePt_152", "GLOBALID": "{6406D84C-C34B-4232-BC93-90B3E60BA8FC}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.008367801435639, 38.831930806963285 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 239, "NAME": "Arcadia Mobile Market at Bellevue Library", "ADDRESS": "115 ATLANTIC STREET SW", "PHONE": "571-781-0287", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-27T04:00:00Z", "DATE_CLOSE": "2109-08-22T04:00:00Z", "DAYS_OPEN": "TH", "HOURS_OPEN": null, "LUNCH_TIME": "3:00 - 6:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Erin ", "CONTACT_LAS_NAME": "Close", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "724-991-1080", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.83132585, "LONGITUDE": -77.0093649, "XCOORD": 399186.87, "YCOORD": 129281.97, "MAR_ID": 302935, "GIS_ID": "SummerMealSitePt_5", "GLOBALID": "{7ED252A0-1362-4E8A-BF81-248FC3AA0F7E}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.009367186108292, 38.831333289666397 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 240, "NAME": "WOL/ Bellevue Neighborhood Library", "ADDRESS": "115 ATLANTIC STREET SW", "PHONE": "202-243-1185", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Maria ", "CONTACT_LAS_NAME": "Perry", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-243-1185", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.83132585, "LONGITUDE": -77.0093649, "XCOORD": 399186.87, "YCOORD": 129281.97, "MAR_ID": 302935, "GIS_ID": "SummerMealSitePt_232", "GLOBALID": "{34AF6E63-23FA-4B45-A9BB-C29DE44B0C45}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.009367186108292, 38.831333289666397 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 241, "NAME": "Highland Community Center", "ADDRESS": "662 ATLANTIC STREET SE", "PHONE": "202-805-2472", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Vanessa ", "CONTACT_LAS_NAME": "Phillips", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-805-2472", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.83114677, "LONGITUDE": -76.99709413, "XCOORD": 400252.31, "YCOORD": 129262.09, "MAR_ID": 291032, "GIS_ID": "SummerMealSitePt_146", "GLOBALID": "{E1B289FF-77EC-4CF9-B870-B37BCE761D87}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.997096404879528, 38.831154541391314 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 242, "NAME": "Arcadia Mobile Markets at Hendley Elementary", "ADDRESS": "425 CHESAPEAKE STREET SE", "PHONE": "571-781-0287", "SPONSORING": "DC Central Kitchen", "DATE_OPEN": "2019-06-25T04:00:00Z", "DATE_CLOSE": "2019-08-20T04:00:00Z", "DAYS_OPEN": "T", "HOURS_OPEN": null, "LUNCH_TIME": "3:00 - 6:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Erin ", "CONTACT_LAS_NAME": "Close", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "724-991-1080", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": null, "COMMENTS": null, "LATITUDE": 38.82898591, "LONGITUDE": -76.99918485000001, "XCOORD": 400070.78, "YCOORD": 129022.18, "MAR_ID": 24445, "GIS_ID": "SummerMealSitePt_7", "GLOBALID": "{51AD94C4-EF2C-47CA-9AF8-59E8BEB25AD7}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999187124960486, 38.828993353467766 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 243, "NAME": "Community of Hope - Triumph", "ADDRESS": "4225 6TH STREET SE", "PHONE": "202-747-8878", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-07-01T04:00:00Z", "DATE_CLOSE": "2019-08-09T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "1:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Gail", "CONTACT_LAS_NAME": "Avent", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-747-8878", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.8282595, "LONGITUDE": -76.99903986, "XCOORD": 400083.37, "YCOORD": 128941.58, "MAR_ID": 314996, "GIS_ID": "SummerMealSitePt_125", "GLOBALID": "{142F7651-06F4-420E-AEBA-D477FB2464A6}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.99904213903028, 38.82826726981309 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 244, "NAME": "Leckie EC", "ADDRESS": "4201 MARTIN LUTHER KING JR AVENUE SW", "PHONE": "202-645-3330", "SPONSORING": "DC Public Schools", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "11:30 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Laura", "CONTACT_LAS_NAME": "Cochrun", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-768-4835", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.82819678, "LONGITUDE": -77.01289191, "XCOORD": 398880.58, "YCOORD": 128934.66, "MAR_ID": 294592, "GIS_ID": "SummerMealSitePt_75", "GLOBALID": "{FC3F8EF1-710B-4FFA-BF58-8D89470D926F}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.012894196272157, 38.828204222584098 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 245, "NAME": "YMCA Avalon - Calomiris 3", "ADDRESS": "820 SOUTHERN AVENUE SE", "PHONE": "202-604-4685", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Jessie", "CONTACT_LAS_NAME": "White", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-604-4685", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:00 - 9:00", "COMMENTS": null, "LATITUDE": 38.82816784, "LONGITUDE": -76.99326809, "XCOORD": 400584.54, "YCOORD": 128931.39, "MAR_ID": 288996, "GIS_ID": "SummerMealSitePt_234", "GLOBALID": "{B804CE35-4FC1-48D9-BF08-4B71F76F93FF}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.993270366072025, 38.828175283518831 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 246, "NAME": "Park Southern Apartments", "ADDRESS": "800 SOUTHERN AVENUE SE", "PHONE": "202-561-4600", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-23T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F,SA", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Kendra ", "CONTACT_LAS_NAME": "Britt ", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-561-4600", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "8:30 - 9:30", "COMMENTS": "Saturday Meal Service, Lunch, 12:00PM to 2:00PM, 10, End Date: 8/10", "LATITUDE": 38.82735337, "LONGITUDE": -76.99461836, "XCOORD": 400467.3, "YCOORD": 128840.97, "MAR_ID": 79579, "GIS_ID": "SummerMealSitePt_185", "GLOBALID": "{3D187385-FD44-4EF6-A233-7723F69F614B}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.994620633537039, 38.827360807715756 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 247, "NAME": "KD's Klubhouse Child Care Center", "ADDRESS": "700 SOUTHERN AVENUE SE", "PHONE": "202-562-7000", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:30 - 2:30", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Rushaun", "CONTACT_LAS_NAME": "Turner", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-562-7000", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "7:45 - 8:45", "COMMENTS": null, "LATITUDE": 38.82607, "LONGITUDE": -76.9962685, "XCOORD": 400324.02, "YCOORD": 128698.5, "MAR_ID": 298216, "GIS_ID": "SummerMealSitePt_156", "GLOBALID": "{71E07469-162E-450F-B39E-613D2371923A}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.99627078008379, 38.826077435195934 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 248, "NAME": "City Gate at Merrick Center ", "ADDRESS": "4275 4TH STREET SE", "PHONE": "202-237-1799", "SPONSORING": "Capital Area Food Bank", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-08-02T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B, L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Loretta", "CONTACT_LAS_NAME": "Jones", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-237-1799", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.82509183, "LONGITUDE": -76.99995509, "XCOORD": 400003.9, "YCOORD": 128589.91, "MAR_ID": 276628, "GIS_ID": "SummerMealSitePt_28", "GLOBALID": "{905B886D-8AB9-4070-8BAF-AFC0BBF81229}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999957366173561, 38.825099264650966 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 249, "NAME": "City Gate @ Merrick Center", "ADDRESS": "4275 4TH STREET SE", "PHONE": "202-237-1799", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-24T04:00:00Z", "DATE_CLOSE": "2019-07-26T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 1:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "Ralph", "CONTACT_LAS_NAME": "Jackson", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-237-1799", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 9:30", "COMMENTS": null, "LATITUDE": 38.82509183, "LONGITUDE": -76.99995509, "XCOORD": 400003.9, "YCOORD": 128589.91, "MAR_ID": 276628, "GIS_ID": "SummerMealSitePt_122", "GLOBALID": "{E2CA544C-8AC5-4A5E-BCFD-5CF1101D07FD}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -76.999957366173561, 38.825099264650966 ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 250, "NAME": "Bald Eagle Recreation Center", "ADDRESS": "100 JOLIET STREET SW", "PHONE": "202-671-5125", "SPONSORING": "Department of Parks and Recreation", "DATE_OPEN": "2019-06-17T04:00:00Z", "DATE_CLOSE": "2019-08-16T04:00:00Z", "DAYS_OPEN": "M,T,W,TH,F", "HOURS_OPEN": null, "LUNCH_TIME": "12:00 - 2:00", "SNACK_TIME": null, "DINNER_SUP": null, "MEAL_TYPES": "B,L", "WARD": "Ward 8", "CONTACT_FI_NAME": "James", "CONTACT_LAS_NAME": "Berry", "STATUS": "Open", "ADDRESS2": null, "CONTACT_PHONE": "202-671-5125", "ZIPCODE": "20032", "STATE_REFERENCE": null, "CITY": "Washington", "ST": "DC", "EXT": null, "BREAKFAST_TIME": "9:00 - 10:00", "COMMENTS": null, "LATITUDE": 38.81889022, "LONGITUDE": -77.01016173, "XCOORD": 399117.53, "YCOORD": 127901.54, "MAR_ID": 301277, "GIS_ID": "SummerMealSitePt_108", "GLOBALID": "{712789DC-26E0-4502-917E-F73549EB635C}", "CREATOR": null, "CREATED": null, "EDITOR": null, "EDITED": null }, "geometry": { "type": "Point", "coordinates": [ -77.010164011936808, 38.818897655965785 ] } } +] +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..c84dd92 --- /dev/null +++ b/index.html @@ -0,0 +1,102 @@ + + + + + + + Dashboard + + + + + + + + + +

+ + DC Youth Meals Program Explorer + bg +

+
+ +
+
+ + diff --git a/js/comments.js b/js/comments.js new file mode 100644 index 0000000..e69de29 diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..973ff59 --- /dev/null +++ b/js/main.js @@ -0,0 +1,341 @@ +const mapElement = document.querySelector('#map'); +const map = L.map(mapElement).setView([38.9072, -77.0369], 13); + +// Map Style +const mapboxKey = 'pk.eyJ1IjoiZWNoaW5saSIsImEiOiJjbTEybWVsY3kwZW1nMmxwbTY4bGx1dDM1In0.Cncmmjeonp1yp1AXZrOqvQ'; +const mapboxStyle = 'echinli/cm36cc1uc014n01qk9ysq22e4'; + +// The Base Tile Layer +const baseTileLayer = L.tileLayer(`http://api.mapbox.com/styles/v1/${mapboxStyle}/tiles/512/{z}/{x}/{y}?access_token=${mapboxKey}`, { + tileSize: 512, + zoomOffset: -1, + maxZoom: 16, + attribution: '© Stadia Maps © Stamen Design © OpenStreetMap', +}); +baseTileLayer.addTo(map); + +// Custom Icon +const foodIcon = L.icon({ + iconUrl: 'pic/FoodIcon.svg', + iconSize: [48, 48], +}); + +// Original mapview +const initialCenter = [38.9072, -77.0369]; +const initialZoom = 13; + +// Function to add popups +function onEachFeature(feature, layer) { + if (feature.properties && feature.properties.NAME && feature.properties.ADDRESS) { + const tooltipContent = `${feature.properties.NAME}
Address: ${feature.properties.ADDRESS}`; + layer.bindTooltip(tooltipContent, { + permanent: false, + direction: 'top', + className: 'custom-tooltip', + }); + } +} + +// Save markers +const markers = []; + +// Load GeoJSON +fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + L.geoJSON(data, { + pointToLayer: (feature, latlng) => { + const marker = L.marker(latlng, { icon: foodIcon }); + markers.push({ marker, feature }); + return marker; + }, + onEachFeature: onEachFeature, + }).addTo(map); + + displaySidebarList(data); + }); + +// Show namelist on the left, and add the click function to namelist +// Add click site to displaySidebarList +function displaySidebarList(geojsonData) { + const siteList = document.querySelector('.site-list'); + siteList.innerHTML = '

Site List

'; + + // Recover button below the title + // Create button + const resetButton = document.createElement('button'); + resetButton.textContent = 'Original View'; + resetButton.classList.add('reset-button'); + resetButton.style.marginBottom = '10px'; + resetButton.style.display = 'block'; + + resetButton.addEventListener('click', () => { + map.setView(initialCenter, initialZoom); + displaySidebarList(geojsonData); + }); + + siteList.appendChild(resetButton); + + geojsonData.features.forEach((feature, index) => { + const { NAME, ADDRESS, PHONE } = feature.properties; + + const siteItem = document.createElement('div'); + siteItem.classList.add('site-item'); + + const siteName = document.createElement('h2'); + siteName.textContent = NAME; + siteName.classList.add('site-name'); + siteItem.appendChild(siteName); + + const siteAddress = document.createElement('p'); + siteAddress.textContent = `Address: ${ADDRESS}`; + siteAddress.classList.add('site-address'); + siteItem.appendChild(siteAddress); + + const sitePhone = document.createElement('p'); + sitePhone.textContent = `Tel: ${PHONE}`; + sitePhone.classList.add('site-phone'); + siteItem.appendChild(sitePhone); + + siteItem.addEventListener('click', () => { + // Find the marker and zoom in + const { marker } = markers[index]; + map.setView(marker.getLatLng(), 16); + + // Highlight + marker.openTooltip(); + const highlightCircle = L.circleMarker(marker.getLatLng(), { + radius: 30, + color: 'red', + weight: 2, + fillOpacity: 0.1, + }).addTo(map); + + // Timer to remove highlight + setTimeout(() => map.removeLayer(highlightCircle), 3000); + }); + + // Add site to list + siteList.appendChild(siteItem); + }); +} + +// Filter by Zip and name +const zipFilterButton = document.getElementById('zipFilterButton'); +const nameFilterButton = document.getElementById('nameFilterButton'); +const zipInput = document.getElementById('zipInput'); +const nameInput = document.getElementById('nameInput'); +const resetZipButton = document.getElementById('resetZipButton'); +const resetNameButton = document.getElementById('resetNameButton'); + +// ZIP Code filter +zipFilterButton.addEventListener('click', () => { + const zipCode = zipInput.value.trim(); + + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + const filteredFeatures = data.features.filter((feature) => { + return feature.properties.ZIPCODE === zipCode; + }); + + // Clear current markers + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + + // Add new markers for filtered features + const geoJsonLayer = L.geoJSON(filteredFeatures, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + // Set the map view to the bounds of the filtered markers + if (filteredFeatures.length > 0) { + const group = new L.FeatureGroup(geoJsonLayer.getLayers()); + map.fitBounds(group.getBounds()); + } + + displaySidebarList({ features: filteredFeatures }); + }); +}); + +// Reset zip +resetZipButton.addEventListener('click', () => { + zipInput.value = ''; + + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + // Clear current markers + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + + L.geoJSON(data, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + displaySidebarList(data); + + map.setView(initialCenter, initialZoom); + }); +}); + +// Name filter +nameFilterButton.addEventListener('click', () => { + const nameQuery = nameInput.value.trim().toLowerCase(); + + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + const filteredFeatures = data.features.filter((feature) => { + return feature.properties.NAME.toLowerCase().includes(nameQuery); + }); + + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + + // Add new markers for filtered features + const geoJsonLayer = L.geoJSON(filteredFeatures, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + // Set the map view to the bounds of the filtered markers + if (filteredFeatures.length > 0) { + const group = new L.FeatureGroup(geoJsonLayer.getLayers()); + map.fitBounds(group.getBounds()); + } + + displaySidebarList({ features: filteredFeatures }); + }); +}); + +// Reset name +resetNameButton.addEventListener('click', () => { + nameInput.value = ''; + + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + // Clear current markers + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + + L.geoJSON(data, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + displaySidebarList(data); + + map.setView(initialCenter, initialZoom); + }); +}); + +// Days Open Filter +const dayCheckboxes = document.querySelectorAll('.day-checkbox'); + +dayCheckboxes.forEach((checkbox) => { + checkbox.addEventListener('change', () => { + const selectedDays = Array.from(dayCheckboxes) + .filter((cb) => cb.checked) + .map((cb) => cb.value); + + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + let filteredFeatures; + + if (selectedDays.length > 0) { + filteredFeatures = data.features.filter((feature) => { + const daysOpen = feature.properties.DAYS_OPEN.split(','); + return selectedDays.some((day) => daysOpen.includes(day)); + }); + } else { + // Recover if non-selected + filteredFeatures = data.features; + } + + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + + // Add filtered marker + L.geoJSON(filteredFeatures, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + }).addTo(map); + + displaySidebarList({ features: filteredFeatures }); + }); + }); +}); + +// Meal Type Filter +const mealCheckboxes = document.querySelectorAll('.meal-checkbox'); + +mealCheckboxes.forEach((checkbox) => { + checkbox.addEventListener('change', () => { + const selectedMealTypes = Array.from(mealCheckboxes) + .filter((cb) => cb.checked) + .map((cb) => cb.value); + + // Recover if non-selected + if (selectedMealTypes.length === 0) { + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + // Remove current marker + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + // Add current marker to map + L.geoJSON(data, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + displaySidebarList(data); + }); + } else { + // Filter meal type + fetch('data/SummerMeals.geojson') + .then((response) => response.json()) + .then((data) => { + const filteredFeatures = data.features.filter((feature) => { + const mealTypes = feature.properties.MEAL_TYPES ? feature.properties.MEAL_TYPES.split(',') : []; + return selectedMealTypes.some((type) => mealTypes.includes(type)); + }); + // Remove current marker + map.eachLayer((layer) => { + if (layer instanceof L.Marker) { + map.removeLayer(layer); + } + }); + // Add current marker to map + L.geoJSON(filteredFeatures, { + pointToLayer: (feature, latlng) => L.marker(latlng, { icon: foodIcon }), + onEachFeature: onEachFeature, + }).addTo(map); + + displaySidebarList({ features: filteredFeatures }); + }); + } + }); +}); diff --git a/mockup/css/styles.css b/mockup/css/styles.css new file mode 100644 index 0000000..829ab01 --- /dev/null +++ b/mockup/css/styles.css @@ -0,0 +1,137 @@ +html { + font-size: 24px; + font-family: sans-serif; +} + +body { + padding: 0; + margin: 0; +} + +.map-section { + position: relative; + width: 100%; + height: 50vh; + background-color: silver; +} + +.map-search-controls { + display: flex; + box-sizing: border-box; + margin: 0; + border: none; + padding: 0.5rem; + width: 100%; + gap: 0.5rem; + justify-content: space-between; + position: relative; + z-index: 1; +} + +.map-search-controls input { + box-sizing: border-box; + border: 1px solid gray; + border-radius: 4px; + font-size: 0.9rem; + font-family: monospace; +} + +[name="address-search"] { + background-image: url("../img/location.svg"); + background-size: 1em; + background-repeat: no-repeat; + background-position: 98% center; + padding-right: 1.2em; + width: 60% +} + +[name="time-search"] { + width: 40%; +} + +.map { + position: absolute; + top: 0; + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.bike-search-controls { + border: 0; + padding: 0.5rem; + display: flex; + justify-content: space-between +} + +.station-list { + list-style-type: none; + padding: 0; + margin: 0; +} + +.station-list .station { + display: grid; + grid-template-areas: "name name" + "blank distance" + "bikes-info docks-info" + "drop-off-info pick-up-info" + "details details"; + grid-template-columns: 1fr 1fr; + + padding: 0.5rem; + border-bottom: 1px solid black; +} + +.station-list .station:first-child { + border-top: 1px solid black; +} + +.station .name { + grid-area: name; + font-weight: bold; +} + +.station .distance { + grid-area: distance; + justify-self: end; + + font-size: 0.8em; + font-style: italic; + padding-bottom: 0.5rem +} + +.station .available-bikes { + grid-area: bikes-info; +} + +.station .available-docks { + grid-area: docks-info; + text-align: right; +} + +.station .next-drop-off-est { + grid-area: drop-off-info; +} + +.station .next-pick-up-est { + grid-area: pick-up-info; + text-align: right; +} + +.station .details { + grid-area: details; + justify-self: center; +} + +.station .details .chart { + box-sizing: border-box; + margin-top: 0.5rem; + padding: 0.5rem; + width: 100%; + height: 4rem; + background-color: silver; + +} \ No newline at end of file diff --git a/mockup/img/location.png b/mockup/img/location.png new file mode 100644 index 0000000..7a3e7ef Binary files /dev/null and b/mockup/img/location.png differ diff --git a/mockup/img/location.svg b/mockup/img/location.svg new file mode 100644 index 0000000..fd5e151 --- /dev/null +++ b/mockup/img/location.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/mockup/index.html b/mockup/index.html new file mode 100644 index 0000000..bef07e2 --- /dev/null +++ b/mockup/index.html @@ -0,0 +1,77 @@ + + + + + + + Bikeshare Station Availability Dashboard + + + + +
+
+
+ + +
+ +
Map
+
+ +
+
+ + + +
+ + +
+
+ + \ No newline at end of file diff --git a/pic/FoodIcon.svg b/pic/FoodIcon.svg new file mode 100644 index 0000000..ca2c72d --- /dev/null +++ b/pic/FoodIcon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + \ No newline at end of file diff --git a/pic/bg.png b/pic/bg.png new file mode 100644 index 0000000..cdb9558 Binary files /dev/null and b/pic/bg.png differ diff --git a/pic/logo.png b/pic/logo.png new file mode 100644 index 0000000..8800936 Binary files /dev/null and b/pic/logo.png differ diff --git a/planning.md b/planning.md new file mode 100644 index 0000000..32d8313 --- /dev/null +++ b/planning.md @@ -0,0 +1,18 @@ +Steps: +1. **Figure out what decisions you're enabling.** + - **Choose your domain** -- This might be as general as public transit, bike share, real estate development, national parks, etc. Chances are that, as you're thinking about a domain, you're also thinking about the next point... + - **Choose your users** -- Who do you want to empower with information to make decisions in your domain. For example, if you chose public transit, then are you interested in empowering riders? Dispatchers? If you chose national parks, are you interested in visitors? + - **Decide what your users could do with better information** -- Make a list of the particular decisions you want to enable with your dashboard. This can be a blue-sky list, but you will likely end up refining your scope later. +2. **Figure out what data you need to enable the decisions.** + +You dashboard should be somewhere on the operational spectrum () + +Your dashboard should include some interactivity. That could be: +- Filtering -- Showing the same visualizations for a dynamically chosen subset of available data +- Cross-filtering -- +- Drilling down -- + +Skills that you'll need for this project: +- Requesting data using `fetch` +- Responding to interaction events +- Building maps and charts \ No newline at end of file