{"id":11,"date":"2025-09-30T16:33:59","date_gmt":"2025-09-30T16:33:59","guid":{"rendered":"https:\/\/sites.clarkson.edu\/arboretum\/?page_id=11"},"modified":"2025-11-11T21:43:58","modified_gmt":"2025-11-11T21:43:58","slug":"__trashed","status":"publish","type":"page","link":"https:\/\/sites.clarkson.edu\/arboretum\/","title":{"rendered":"Clarkson Arboretum"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">We are a<strong> Level 1 Arboretum<\/strong>, accredited through ArbNet. Check out our ArbNet Accreditation below!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"fast-facts-0aa86521-f4e5-4bb1-b4d4-942c0c2eaf45\">Fast Facts<\/h2>\n\n\n\n<h3>Number of Trees: <span id=\"num-trees-field\">Loading<\/span><\/h3>\n<h3>Number of Unique Species: <span id=\"num-species-field\">Loading&#8230;<\/span><\/h3>\n<script>\n    \/\/ Call function\n    updateCounts()\n\n    \/\/ Function to update counts\n    async function updateCounts() {\n        const baseURL = \"https:\/\/services2.arcgis.com\/LNyGjxxQBXWW0vo0\/arcgis\/rest\/services\/Trees_6_view\/FeatureServer\/0\/query\";\n        const params = {\n            where:\"heritage='Yes'\",\n            fullText:\"\",\n            objectIds:\"\",\n            geometry:\"\",\n            geometryType:\"esriGeometryEnvelope\",\n            inSR:\"\",\n            spatialRel:\"esriSpatialRelIntersects\",\n            resultType:\"none\",\n            distance:0.0,\n            units:\"esriSRUnit_Meter\",\n            outDistance:\"\",\n            relationParam:\"\",\n            returnGeodetic:false,\n            outFields:\"assetid, commonname, genus, species\",\n            returnGeometry:true,\n            featureEncoding:\"esriDefault\",\n            multipatchOption:\"xyFootprint\",\n            maxAllowableOffset:\"\",\n            geometryPrecision:\"\",\n            outSR:\"\",\n            defaultSR:\"\",\n            datumTransformation:\"\",\n            applyVCSProjection:false,\n            returnIdsOnly:false,\n            returnUniqueIdsOnly:false,\n            returnCountOnly:false,\n            returnExtentOnly:false,\n            returnQueryGeometry:false,\n            returnDistinctValues:false,\n            cacheHint:false,\n            collation:\"\",\n            orderByFields:\"\",\n            groupByFieldsForStatistics:\"\",\n            returnAggIds:false,\n            outStatistics:\"\",\n            having:\"\",\n            resultOffset:\"\",\n            resultRecordCount:\"\",\n            returnZ:false,\n            returnM:false,\n            returnTrueCurves:false,\n            returnExceededLimitFeatures:true,\n            quantizationParameters:\"\",\n            sqlFormat:\"none\",\n            f:\"json\",\n            token:\"\"\n        };\n        let data = await fetch(baseURL+\"?\"+(new URLSearchParams(params)).toString()).then(res=>res.json()) \/\/ Get data and convert to json\n        \/\/ Create final species list, and working list to handle bad data\n        let species = []\n        let unsortedSpecies0 = []\n\n        \/\/ Loop through each species, and add data with full scientific names to species list (grouping by type)\n        data.features.forEach(item=>{\n\n            \/\/ Get wanted data for current tree\n            let treeData = {\n                ids:[item.attributes.assetid],\n                commonname: item.attributes.commonname ? item.attributes.commonname : \"\",\n                genus: item.attributes.genus ? item.attributes.genus : \"\",\n                species: item.attributes.species ? item.attributes.species : \"\"\n            }\n\n            \/\/ If the tree has a valid genus and species, sort it into list, otherwise add to unsorted list and continue\n            if (treeData.genus && treeData.species) {\n                \/\/ Attempt to match current tree with species in list\n                let speciesEntryIndex = species.findIndex(item=>item.genus==treeData.genus && item.species==treeData.species)\n                if (speciesEntryIndex==-1) { \/\/ If no match, create new species entry\n                    species.push(treeData)\n                } else { \/\/ If match, add tree type to species list\n                    species[speciesEntryIndex].ids.push(treeData.ids[0]); \n                }\n            } else { \/\/ Does not have full scientific name\n                unsortedSpecies0.push(treeData)\n            }\n        })\n\n        \/\/ If the tree has the same common name as species in list (Besides \"Other\"), sort it in\n        let unsortedSpecies1 = []\n        unsortedSpecies0.forEach(treeData=>{\n            \/\/ Ensure tree has common name, and is not \"Other\"\n            if (treeData.commonname && treeData.commonname != \"Other\") {\n                \/\/ Attempt to match by common name\n                let speciesEntryIndex = species.findIndex(item=>item.commonname==treeData.commonname)\n                if (speciesEntryIndex>=0) { \/\/ If there is a match, add data to species list\n                    species[speciesEntryIndex].ids.push(treeData.ids[0])\n                } else { \/\/ If no match, add data to new unsorted list\n                    unsortedSpecies1.push(treeData)\n                }\n            } else { \/\/ If common name is \"Other\" (or null), push to next sort\n                unsortedSpecies1.push(treeData)\n            }\n        })\n\n        \/\/ If the tree has the same genus as a species in list, sort it in, otherwise create new entry\n        let unsortedSpecies2 = [];\n        unsortedSpecies1.forEach(treeData=> {\n            \/\/ Ensure tree has genus    \n            if (treeData.genus) {\n                \/\/ Attempt to match by genus\n                let speciesEntryIndex = species.findIndex(item=>item.genus==treeData.genus)\n                if (speciesEntryIndex>=0) { \/\/ If there is a match, add data to species list\n                    species[speciesEntryIndex].ids.push(treeData.ids[0])\n                } else { \/\/ If there is no match, add to species list as genus alone\n                    species.push(treeData)\n                }\n            } else { \/\/ If no genus, add to final unsorted list\n                unsortedSpecies2.push(treeData)\n            }\n        })\n\n        \/\/ Attempt to match by common name for 2nd time, if match, sort in, if no match, create new entry\n        unsortedSpecies2.forEach(treeData=>{\n            let speciesEntryIndex = species.findIndex(item=>item.commonname==treeData.commonname);\n            if (speciesEntryIndex>=0) { \/\/ If match, add to species list entry\n                species[speciesEntryIndex].ids.push(treeData.ids[0])\n            } else { \/\/ If no match, create new entry with present data\n                species.psuh(treeData)\n            }\n        })\n\n        \/\/ Update total count and unique species fields\n        document.getElementById('num-trees-field').innerHTML = data.features.length;\n        document.getElementById('num-species-field').innerHTML = species.length;\n\n    }\n<\/script>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"features-fa222714-518c-41b1-8d0f-a0eb04681d03\">Features <\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Clarkson Arboretum is located on the <strong>Munter Trail<\/strong>, which is on the west end of the campus\n<ul class=\"wp-block-list\">\n<li>The trail is about 2.1 miles round trip and is a moderately easy walk with an elevation gain of 62 feet. Check out the AllTrails map below!<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>The arboretum includes 25+ species of trees and is actively expanding<\/li>\n\n\n\n<li>Our arboretum lies adjacent to the<strong> Raquette River,<\/strong> which is home to many animal species, including fish, beavers, and bald eagles<\/li>\n\n\n\n<li>The <strong>Clarkson University Outing Club (CUOC) boat house<\/strong> is located in the arboretum; on nice days, you can often see students out on boats on the river<\/li>\n\n\n\n<li>Along the trail, there are <strong>vernal pools<\/strong>, temporary wetlands that fill with water and dry out on a seasonal basis, which offer breeding grounds for organisms such as frogs and insects<\/li>\n\n\n\n<li>There are overlooks and picnic tables placed along the trail to enjoy the scenery<\/li>\n\n\n\n<li>The <strong>Hannawa Falls Railroad <\/strong>(built in 1899 and abandoned in 1917) once ran through the river and onto the trail; sometimes, the wooden pylons that supported the bridge are still visible in the river<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Future Plans<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Welcome to the arboretum signs at entrances to the Munter Trail<\/li>\n\n\n\n<li>Update heights, diameters, and give each tree an age rating<\/li>\n\n\n\n<li>Create an educational audio: play based on the tree you want to hear about (background on the tree, fun facts, etc)<\/li>\n\n\n\n<li>Place woodchip paths to the trees further from the trail (for example, tree 2278)<\/li>\n\n\n\n<li>Format an educational program that surrounding K-12 schools may use for field trips<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"resources-0de52958-8127-4afe-bda7-f7affef1ce68\">Resources<\/h2>\n\n\n\n<a href=\"https:\/\/arbnet.org\/morton-register\/clarkson-university-arboretum\" style=\"background-color:#004e42; color:white; padding:1em; width:fit-content; border-radius:100em; display: block; text-decoration:none;\">\n    <img decoding=\"async\" src=\"https:\/\/www.arbnet.org\/sites\/arbnet\/files\/22RES_ArbNet_Trademark-Logo_232x100_2.png\" alt=\"ArbNet Logo\" style=\"height:2em; background-color:white; border-radius:5px; margin-right:1em;\">\n    ArbNet Accreditation\n<\/a><br>\n<a href=\"https:\/\/www.alltrails.com\/trail\/us\/new-york\/munter-trail\" style=\"background-color:#004e42; color:white; padding:1em; width:fit-content; border-radius:100em; display: block; text-decoration:none;\">\n    <img decoding=\"async\" src=\"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/c\/cd\/Alltrails-logo.png\" alt=\"AllTrails Logo\" style=\"height:2em; background-color:white; border-radius:5px; margin-right:1em;\">\n    AllTrails Map\n<\/a>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We are a Level 1 Arboretum, accredited through ArbNet. Check out our ArbNet Accreditation below! Fast Facts Number of Trees: Loading Number of Unique Species: Loading&#8230; Features Future Plans Resources ArbNet Accreditation AllTrails Map<\/p>\n","protected":false},"author":244,"featured_media":335,"parent":0,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","footnotes":""},"class_list":["post-11","page","type-page","status-publish","has-post-thumbnail","hentry"],"coauthors":[],"author_meta":{"author_link":"https:\/\/sites.clarkson.edu\/arboretum\/author\/bartolsm\/","display_name":"bartolsm"},"relative_dates":{"created":"Posted 10 months ago","modified":"Updated 9 months ago"},"absolute_dates":{"created":"Posted on September 30, 2025","modified":"Updated on November 11, 2025"},"absolute_dates_time":{"created":"Posted on September 30, 2025 4:33 pm","modified":"Updated on November 11, 2025 9:43 pm"},"featured_img_caption":"","featured_img":"https:\/\/sites.clarkson.edu\/arboretum\/wp-content\/uploads\/sites\/104\/2025\/11\/isalnd3-min-scaled.jpg","series_order":"","_links":{"self":[{"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/pages\/11","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/users\/244"}],"replies":[{"embeddable":true,"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/comments?post=11"}],"version-history":[{"count":44,"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/pages\/11\/revisions"}],"predecessor-version":[{"id":413,"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/pages\/11\/revisions\/413"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/media\/335"}],"wp:attachment":[{"href":"https:\/\/sites.clarkson.edu\/arboretum\/wp-json\/wp\/v2\/media?parent=11"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}