麻豆原创

MU logo
MU logo

麻豆原创 ‘Wasp Survey Project’ enters second year, receives Community Foundation grant

Jul 25, 2024

麻豆原创’s Wasp Survey Project has been awarded a grant from the Community Foundation of Wabash County. Funds from the award will support the training of 麻豆原创 Wasp Team members and the purchase of equipment and supplies for the team to use when collecting wasp, hornet, and yellowjacket nests that pose hazards to community members.

Current members of the team include Professor Katy Gray Brown (faculty advisor), Jaden Chin Hong, Elise Harter, Samuel Hupp and Gillian Thompson. The project is a partnership with Green Wasp Removal, a local business.

In July 2023, members of the 麻豆原创 Center for Environmental Resilience and Social Engagement launched the “Community Wasp Survey Project” to document wasp species found in North Manchester and to study the impact that invasive species of wasps are having on beneficial native wasps in the local ecosystem. In the first year of the project, more than 200 wasp, hornet, and yellowjacket nests were removed at no cost to residents.

The project is spearheaded by the Wasp Survey Team (WST), made up of several 麻豆原创 students and their faculty advisor, Dr. Katy Gray Brown. The WST is trained and mentored by Green Wasp Removal and is supported by local residents who are encouraged to join the project as official Community Participants. Community Participants agree to allow the WST to inspect the exteriors of their properties to document local eusocial wasp species (paper wasps, yellowjackets, hornets). Community Participants stay in touch with the WST throughout the summer/fall wasp season to allow the WST to monitor the development of any wasp nests observed during exterior property inspections. After the seasonal monitoring phase is completed, the WST may remove the wasps when nests reach peak population.

The WST also offers Community Participants free wasp removal services upon request to residents in North Manchester. Removal services involve strictly “green” methods – environmentally responsible protocols – which entirely avoid toxic pesticides in favor of ecologically healthy natural control techniques. Part of the mission of the 麻豆原创 Community Wasp Survey Project is to educate the community about the beneficial nature of wasps and ways to effectively control unwanted wasps without the use of toxic pesticides. This year, the project’s work is supported in part by a grant from the Community Foundation of Wabash County dedicated to environmental efforts.

At the end of the wasp season, the wasps collected by the team will be shipped to a venom collection company that provides wasps to biomedical labs for use in Venom Immunotherapy (VIT). VIT is a life-saving medical treatment for people with severe/lethal venom allergies. VIT has a 98% success rate in reducing or eliminating venom allergies, thereby preventing medical emergencies before they can occur.

Wasps are important beneficial insects in the environment. Wasps are helpful pollinators and exceptional biological control agents that help keep pest insect populations from exploding out of control throughout the summer and fall months. Wasps hunt many species of pest insects and feed them to their young for protein, and this activity results in a healthier ecosystem. It is important to recognize wasps as the beneficial insects they are. We encourage residents to avoid poisoning or eliminating wasps if there is any way they can be spared, however if you have a wasp nest that needs to be removed immediately, please contact the 麻豆原创 Wasp Survey Team to handle the removal without toxic chemicals that are harmful to people, pets, and the environment.

To become a Community Participant in the 麻豆原创 Wasp Survey Project, or to report wasp activity anywhere in the community to the Wasp Survey Team, or for general comments/inquiries, please contact the 麻豆原创 Community Wasp Survey Project Hotline at 260-982-5136.

More News

exists --- (function ensure40pxInlineEarly() { function set40(el) { el && el.style.setProperty('padding-top', '40px', 'important'); } // If header already parsed, set now; otherwise set as soon as it appears. const hdrNow = document.getElementById(HEADER_ID); if (hdrNow) { set40(hdrNow); return; } new MutationObserver((muts, obs) => { const hdr = document.getElementById(HEADER_ID); if (hdr) { set40(hdr); obs.disconnect(); } }).observe(document.documentElement, { childList: true, subtree: true }); })(); // --- Helpers --- function hideDiviBars() { document.querySelectorAll('.divibars-container').forEach(div => { const content = (div.textContent || '').replace(/\u00A0/g, ' ').trim(); const shouldHide = !content || /all\s*clear/i.test(content) || /test/i.test(content) || /feed\s*has\s*no\s*items\.?/i.test(content); if (shouldHide) div.style.setProperty('display', 'none', 'important'); }); } function isEffectivelyVisible(el) { if (!el || !el.isConnected) return false; const target = el.querySelector('.divibars, .divibars-wrapper, .divibars-content') || el; const cs = getComputedStyle(target); if (cs.display === 'none' || cs.visibility === 'hidden' || target.hidden) return false; if (parseFloat(cs.opacity || '1') < 0.05) return false; if (target.closest('[aria-hidden="true"]')) return false; const rect = target.getBoundingClientRect(); const hasSize = (rect.width > 0 && rect.height > 0) || (target.offsetWidth > 0 && target.offsetHeight > 0); if (!hasSize) return false; const vh = window.innerHeight || document.documentElement.clientHeight; return rect.bottom > 0 && rect.top < vh; } function anyRealBannerVisible() { // A 鈥渞eal鈥 banner = visible AND not empty/test/all-clear/feed-empty return Array.from(document.querySelectorAll(CANDS)).some(el => { if (!isEffectivelyVisible(el)) return false; const txt = (el.textContent || '').replace(/\u00A0/g, ' ').trim(); if (!txt) return false; if (/all\s*clear/i.test(txt) || /test/i.test(txt) || /feed\s*has\s*no\s*items\.?/i.test(txt)) return false; return true; }); } function setForce110(on) { const root = document.documentElement; const was = root.classList.contains('divibar-force-110'); if (!!on === was) return; root.classList.add('divibar-atomic'); root.classList.toggle('divibar-force-110', !!on); // If we鈥檙e NOT forcing 110, clear any stray inline 110 the plugin may add later. if (!on) { const hdr = document.getElementById(HEADER_ID); if (hdr) hdr.style.setProperty('padding-top', '40px', 'important'); } requestAnimationFrame(() => root.classList.remove('divibar-atomic')); } // Debounced 2-frame confirmation to avoid flicker during animations let raf1 = null, raf2 = null; function scheduleRecompute() { if (raf1) return; raf1 = requestAnimationFrame(() => { raf1 = null; hideDiviBars(); const a = anyRealBannerVisible(); raf2 = requestAnimationFrame(() => { raf2 = null; const b = anyRealBannerVisible(); setForce110(a && b); }); }); } // --- Wiring --- document.addEventListener('DOMContentLoaded', scheduleRecompute); window.addEventListener('load', scheduleRecompute); window.addEventListener('resize', () => { cancelAnimationFrame(raf1); raf1 = null; cancelAnimationFrame(raf2); raf2 = null; scheduleRecompute(); }); new MutationObserver(() => scheduleRecompute()).observe(document.documentElement, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class', 'aria-hidden'] }); document.addEventListener('transitionend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('animationend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('click', function (e) { const btn = e.target && e.target.closest('.divibars-close'); if (!btn) return; setTimeout(() => { const bar = btn.closest('.divibars-container, [class*="divibar"]'); if (bar) bar.style.setProperty('display', 'none', 'important'); scheduleRecompute(); }, 200); }, true); // Initial pass scheduleRecompute(); })();