Skip to Content

Sponsors

No results

Keywords

No results

Types

No results

Search Results

Events

No results
Search events using: keywords, sponsors, locations or event type
When / Where

Presented By: Matthaei Botanical Gardens & Nichols Arboretum

Wonders of Water Community Art Exhibit

Watercolor painting of a river at dawn with a person in a rowboat Watercolor painting of a river at dawn with a person in a rowboat
Watercolor painting of a river at dawn with a person in a rowboat
Fri, Nov 29 2024 - Sun, Jan 26 2025, All day
Dive into the beauty and significance of North America's rivers with The Wonders of Water, a community art exhibit that pays homage to the vital roles rivers play in our environment and society. Presented in tandem with the Elzada Clover exhibit, which highlights Clover’s groundbreaking river explorations, this art showcase connects to her legacy by emphasizing the life and stories carried by our waterways. Featuring works from local and regional artists, this free exhibit invites visitors to reflect on the powerful presence of rivers as sources of inspiration, biodiversity, and cultural connection. Join us in celebrating the lifelines of our continent and experience the wonders of water through art.

Free and open to the public
Watercolor painting of a river at dawn with a person in a rowboat Watercolor painting of a river at dawn with a person in a rowboat
Watercolor painting of a river at dawn with a person in a rowboat

Explore Similar Events

  •  Loading Similar Events...

'+ '
'+ '

'+ ' '+ ' %_event_title_%'+ ' '+ '

'+ ' '+ '
'+ ''; $('#similar_events_list').empty(); var found_events=0; for (var event in data) { var event_obj=data[event]; var cur_event=event_template; cur_event=cur_event.replace(/%_permalink_%/g,event_obj.permalink); cur_event=cur_event.replace(/%_event_title_%/g,event_obj.event_title); cur_event=cur_event.replace(/%_event_type_name_%/g,event_obj.event_type); cur_event=cur_event.replace(/%25_event_type_%25/g,event_obj.event_type_id); cur_event=cur_event.replace(/%_datetime_%/g,event_obj.datetime_start); cur_event=cur_event.replace(/%_readable_datetime_%/g,formatDate(parseDateString(event_obj.date_start+' '+event_obj.time_start))); cur_event=cur_event.replace(/%_location_name_%/g,event_obj.building_id>0?event_obj.building_name:event_obj.location_name); if (event_obj.building_id>0) cur_event=cur_event.replace(/%25_event_location_%25/g,event_obj.campus_maps_id); else cur_event=cur_event.replace(/%25_event_location_%25/g,1); if (event_obj.image_url !== ""){ var image_url = event_obj.image_url } else { // use placeholder images based on event type switch (+event_obj.event_type_id){ case 1: var image_url = "/images/umicons_auditions.svg" break case 2: var image_url = "/images/umicons_careerfair.svg" break case 3: var image_url = "/images/umicons_ceremony.svg" break case 4: var image_url = "/images/umicons_communityservice.svg" break case 5: var image_url = "/images/umicons_conference.svg" break case 6: var image_url = "/images/umicons_exercise.svg" break case 7: var image_url = "/images/umicons_exhibition.svg" break case 8: var image_url = "/images/umicons_classinstruction.svg" break case 9: var image_url = "/images/umicons_rallymassmeet.svg" break case 10: var image_url = "/images/umicons_fair.svg" break case 11: var image_url = "/images/umicons_filmscreening.svg" break case 12: var image_url = "/images/umicons_healthclinic.svg" break case 13: var image_url = "/images/umicons_lecturediscussion.svg" break case 14: var image_url = "/images/umicons_meeting.svg" break case 15: var image_url = "/images/umicons_performance.svg" break case 16: var image_url = "/images/umicons_presentation.svg" break case 17: var image_url = "/images/umicons_openhouse.svg" break case 18: var image_url = "/images/umicons_recgames.svg" break case 19: var image_url = "/images/umicons_social.svg" break case 20: var image_url = "/images/umicons_sportingevent.svg" break case 21: var image_url = "/images/umicons_workshopseminar.svg" break case 23: var image_url = "/images/umicons_bicentennial.png" break case 24: var image_url = "/images/umicons_livestream.svg" break case 25: var image_url = "/images/umicons_tours.svg" break default: var image_url = "/images/umicons_other.svg" } } cur_event=cur_event.replace(/%_event_image_%/g, image_url) cur_event=cur_event.replace(/%_event_image_description_%/g, event_obj.event_title) $('#similar_events_list').append(cur_event); found_events++; } // We couldn't find any if (found_events<1) { $('#similar_events').hide(); } }, error: function (data){ $('#similar_events').hide(); } }); if ($('#show_sessions_registration').length) { $.ajax({ url : 'https://sessions.studentlife.umich.edu/track//json', type: 'GET', dataType: 'json', beforeSend: function( xhr ) { $('#show_sessions_details').show(); }, statusCode: { 403: function(data) { $('#show_sessions_text').html('Registration for this event is currently closed. Please check back later.'); $('#show_sessions_button').remove(); $('#show_sessions_details').remove(); }, 404: function(data) { $('#show_sessions_text').html('Registration for this event is currently closed. Please check back later.'); $('#show_sessions_button').remove(); $('#show_sessions_details').remove(); }, 200: function(data) { var html='
'+data.name+'
'; var show_event_titles=false; if (data.events.length>1) { show_event_titles=true; } for (var eventKey in data.events) { var event=data.events[eventKey]; if (show_event_titles) html+='
'+event.name+'
'; for (var sessionKey in event.sessions) { var session=event.sessions[sessionKey]; html+=''+session.name+' '; if (session.status=='waitlist') { html+='Waitlist Only'; } else if (session.status=='closed') { html+='Session Has Been Closed'; } else if (session.status=='over') { html+='Session Is Over'; } else if (session.status=='full') { html+='Session Is Full'; } else if (session.status=='open') { if (session.slots) { html+='Available Seats: '+session.slots+''; } else { html+='Seats Are Available'; } } html+='
'; } } $('#show_sessions_details').html(html); } } }); } if (loadLivestreamType!=null && loadLivestreamId!=null) { if (loadLivestreamType=="bluejeans") joinBJN(loadLivestreamId) else if (loadLivestreamType=="zoom") joinZoom(loadLivestreamId) } }); function formatDate(date) { var hours=date.getHours(); var minutes=date.getMinutes(); var ampm=hours>=12?'pm':'am'; if (hours>12) hours-=12; if (minutes<10) minutes='0'+minutes; var strTime=hours+':'+minutes+ampm; return (date.getMonth()+1)+'/'+date.getDate()+'/'+date.getFullYear()+' '+strTime; } function parseDateString(str) { var parsed=Date.parse(str); // Fix for Safari if (isNaN(parsed)) parsed=Date.parse(str.replace(/-/g, '/').replace(/[a-z]+/gi, ' ')); return new Date(parsed); }
Back to Main Content
'+'\n' } else { var returnStr = '
'+'\n'+ ' '+occurrenceNameHtml+'\n'+ ' '+locHtml+'\n'+ '
'+'\n'+ ' '+'\n'+ ' '+'\n'+ ' '+occurrence.datetime_output+'\n'+ ' '+'\n'+ '
'+'\n'+ '
'+'\n' } return returnStr } function getOccurrences() { var occurrences = {}, temp, locStr temp = { "id":21861740, "datetime_start":"20241129T100000", "datetime_end":"20241129T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241129", "date_end":"20241129", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861740/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241129T150000Z/20241129T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861741, "datetime_start":"20241130T100000", "datetime_end":"20241130T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241130", "date_end":"20241130", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861741/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241130T150000Z/20241130T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861742, "datetime_start":"20241201T100000", "datetime_end":"20241201T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241201", "date_end":"20241201", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861742/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241201T150000Z/20241201T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861743, "datetime_start":"20241202T100000", "datetime_end":"20241202T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241202", "date_end":"20241202", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861743/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241202T150000Z/20241202T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861744, "datetime_start":"20241203T100000", "datetime_end":"20241203T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241203", "date_end":"20241203", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861744/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241203T150000Z/20241203T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861745, "datetime_start":"20241204T100000", "datetime_end":"20241204T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20241204", "date_end":"20241204", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861745/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241204T150000Z/20241205T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861746, "datetime_start":"20241205T100000", "datetime_end":"20241205T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241205", "date_end":"20241205", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861746/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241205T150000Z/20241205T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861747, "datetime_start":"20241206T100000", "datetime_end":"20241206T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241206", "date_end":"20241206", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861747/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241206T150000Z/20241206T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861748, "datetime_start":"20241207T100000", "datetime_end":"20241207T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241207", "date_end":"20241207", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861748/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241207T150000Z/20241207T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861749, "datetime_start":"20241208T100000", "datetime_end":"20241208T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241208", "date_end":"20241208", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861749/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241208T150000Z/20241208T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861750, "datetime_start":"20241209T100000", "datetime_end":"20241209T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241209", "date_end":"20241209", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861750/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241209T150000Z/20241209T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861751, "datetime_start":"20241210T100000", "datetime_end":"20241210T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241210", "date_end":"20241210", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861751/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241210T150000Z/20241210T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861752, "datetime_start":"20241211T100000", "datetime_end":"20241211T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20241211", "date_end":"20241211", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861752/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241211T150000Z/20241212T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861753, "datetime_start":"20241212T100000", "datetime_end":"20241212T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241212", "date_end":"20241212", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861753/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241212T150000Z/20241212T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861754, "datetime_start":"20241213T100000", "datetime_end":"20241213T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241213", "date_end":"20241213", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861754/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241213T150000Z/20241213T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861755, "datetime_start":"20241214T100000", "datetime_end":"20241214T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241214", "date_end":"20241214", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861755/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241214T150000Z/20241214T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861756, "datetime_start":"20241215T100000", "datetime_end":"20241215T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241215", "date_end":"20241215", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861756/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241215T150000Z/20241215T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861757, "datetime_start":"20241216T100000", "datetime_end":"20241216T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241216", "date_end":"20241216", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861757/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241216T150000Z/20241216T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861758, "datetime_start":"20241217T100000", "datetime_end":"20241217T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241217", "date_end":"20241217", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861758/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241217T150000Z/20241217T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861759, "datetime_start":"20241218T100000", "datetime_end":"20241218T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20241218", "date_end":"20241218", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861759/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241218T150000Z/20241219T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861760, "datetime_start":"20241219T100000", "datetime_end":"20241219T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241219", "date_end":"20241219", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861760/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241219T150000Z/20241219T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861761, "datetime_start":"20241220T100000", "datetime_end":"20241220T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241220", "date_end":"20241220", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861761/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241220T150000Z/20241220T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861762, "datetime_start":"20241221T100000", "datetime_end":"20241221T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241221", "date_end":"20241221", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861762/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241221T150000Z/20241221T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861763, "datetime_start":"20241222T100000", "datetime_end":"20241222T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241222", "date_end":"20241222", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861763/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241222T150000Z/20241222T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861764, "datetime_start":"20241223T100000", "datetime_end":"20241223T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241223", "date_end":"20241223", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861764/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241223T150000Z/20241223T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861767, "datetime_start":"20241226T100000", "datetime_end":"20241226T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241226", "date_end":"20241226", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861767/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241226T150000Z/20241226T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861768, "datetime_start":"20241227T100000", "datetime_end":"20241227T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241227", "date_end":"20241227", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861768/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241227T150000Z/20241227T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861769, "datetime_start":"20241228T100000", "datetime_end":"20241228T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241228", "date_end":"20241228", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861769/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241228T150000Z/20241228T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861770, "datetime_start":"20241229T100000", "datetime_end":"20241229T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241229", "date_end":"20241229", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861770/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241229T150000Z/20241229T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861771, "datetime_start":"20241230T100000", "datetime_end":"20241230T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20241230", "date_end":"20241230", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861771/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20241230T150000Z/20241230T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861773, "datetime_start":"20250101T100000", "datetime_end":"20250101T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250101", "date_end":"20250101", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861773/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250101T150000Z/20250101T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861774, "datetime_start":"20250102T100000", "datetime_end":"20250102T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250102", "date_end":"20250102", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861774/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250102T150000Z/20250102T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861775, "datetime_start":"20250103T100000", "datetime_end":"20250103T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250103", "date_end":"20250103", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861775/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250103T150000Z/20250103T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861776, "datetime_start":"20250104T100000", "datetime_end":"20250104T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250104", "date_end":"20250104", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861776/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250104T150000Z/20250104T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861777, "datetime_start":"20250105T100000", "datetime_end":"20250105T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250105", "date_end":"20250105", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861777/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250105T150000Z/20250105T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861778, "datetime_start":"20250106T100000", "datetime_end":"20250106T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250106", "date_end":"20250106", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861778/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250106T150000Z/20250106T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861779, "datetime_start":"20250107T100000", "datetime_end":"20250107T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250107", "date_end":"20250107", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861779/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250107T150000Z/20250107T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861780, "datetime_start":"20250108T100000", "datetime_end":"20250108T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20250108", "date_end":"20250108", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861780/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250108T150000Z/20250109T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861781, "datetime_start":"20250109T100000", "datetime_end":"20250109T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250109", "date_end":"20250109", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861781/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250109T150000Z/20250109T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861782, "datetime_start":"20250110T100000", "datetime_end":"20250110T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250110", "date_end":"20250110", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861782/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250110T150000Z/20250110T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861783, "datetime_start":"20250111T100000", "datetime_end":"20250111T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250111", "date_end":"20250111", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861783/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250111T150000Z/20250111T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861784, "datetime_start":"20250112T100000", "datetime_end":"20250112T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250112", "date_end":"20250112", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861784/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250112T150000Z/20250112T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861785, "datetime_start":"20250113T100000", "datetime_end":"20250113T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250113", "date_end":"20250113", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861785/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250113T150000Z/20250113T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861786, "datetime_start":"20250114T100000", "datetime_end":"20250114T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250114", "date_end":"20250114", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861786/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250114T150000Z/20250114T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861787, "datetime_start":"20250115T100000", "datetime_end":"20250115T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20250115", "date_end":"20250115", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861787/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250115T150000Z/20250116T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861788, "datetime_start":"20250116T100000", "datetime_end":"20250116T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250116", "date_end":"20250116", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861788/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250116T150000Z/20250116T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861789, "datetime_start":"20250117T100000", "datetime_end":"20250117T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250117", "date_end":"20250117", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861789/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250117T150000Z/20250117T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861790, "datetime_start":"20250118T100000", "datetime_end":"20250118T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250118", "date_end":"20250118", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861790/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250118T150000Z/20250118T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861791, "datetime_start":"20250119T100000", "datetime_end":"20250119T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250119", "date_end":"20250119", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861791/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250119T150000Z/20250119T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861792, "datetime_start":"20250120T100000", "datetime_end":"20250120T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250120", "date_end":"20250120", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861792/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250120T150000Z/20250120T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861793, "datetime_start":"20250121T100000", "datetime_end":"20250121T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250121", "date_end":"20250121", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861793/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250121T150000Z/20250121T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861794, "datetime_start":"20250122T100000", "datetime_end":"20250122T200000", "has_end_time":1, "datetime_output": "10:00am - 8:00pm", "date_start":"20250122", "date_end":"20250122", "time_start":"10:00:00", "time_end":"20:00:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861794/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250122T150000Z/20250123T010000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861795, "datetime_start":"20250123T100000", "datetime_end":"20250123T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250123", "date_end":"20250123", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861795/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250123T150000Z/20250123T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861796, "datetime_start":"20250124T100000", "datetime_end":"20250124T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250124", "date_end":"20250124", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861796/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250124T150000Z/20250124T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861797, "datetime_start":"20250125T100000", "datetime_end":"20250125T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250125", "date_end":"20250125", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861797/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250125T150000Z/20250125T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) temp = { "id":21861798, "datetime_start":"20250126T100000", "datetime_end":"20250126T163000", "has_end_time":1, "datetime_output": "10:00am - 4:30pm", "date_start":"20250126", "date_end":"20250126", "time_start":"10:00:00", "time_end":"16:30:00", "time_zone":"America\/Detroit", "building_id":"0", "building_name":"Matthaei Botanical Gardens", "campus_maps_id":"554", "campus_maps_name": "matthaei-botanical-gardens", "room":"", "notes":"", "location_name":"Matthaei Botanical Gardens", "occurrence_name":"", "iCal_href": "/event/128885-21861798/feed/ical", "googleCal_href": "http://www.google.com/calendar/event?action=TEMPLATE&text=Wonders%20of%20Water%20Community%20Art%20Exhibit&dates=20250126T150000Z/20250126T213000Z&details=Fri%2C%20Nov%2029%202024%20-%20Sun%2C%20Jan%2026%202025%2C%20All%20day...&location=Matthaei Botanical Gardens&trp=false&sprop=&sprop=name:" } if (!occurrences[temp.date_start]) { occurrences[temp.date_start] = {} } if (temp.location_name !== null) { locStr = temp.location_name+(temp.room !== '' ? ' - '+temp.room : '') } else { locStr = 'Unspecified Location' } if (!occurrences[temp.date_start][locStr]) { occurrences[temp.date_start][locStr] = [] } occurrences[temp.date_start][locStr].push(temp) return occurrences } function getDateStr(date) { let dateObj = new Date(date) var month = (dateObj.getMonth()+1) >= 10 ? (dateObj.getMonth()+1).toString() : '0'+(dateObj.getMonth()+1) var day = dateObj.getDate() >= 10 ? dateObj.getDate().toString() : '0'+dateObj.getDate() return date.getFullYear()+month+day } function getFormatDate(dateStr){ return dateStr.substring(0,4) + '/' + dateStr.substring(4, 6) + '/' + dateStr.substring(6, 8) } })