import {fetch} from 'wix-fetch'; function parseRetsXml(xml) { const parser = new DOMParser(); const xmlDoc = parser.parseFromString(xml, "text/xml"); const retsNode = xmlDoc.getElementsByTagName("RETS")[0]; const replyCode = retsNode.getAttribute("ReplyCode"); const replyText = retsNode.getAttribute("ReplyText"); const loginUrl = retsNode.getAttribute("Login"); const searchUrl = retsNode.getAttribute("Search"); return { replyCode, replyText, loginUrl, searchUrl }; } async function searchMLS(xml, query) { const retsInfo = parseRetsXml(xml); const response = await fetch(retsInfo.searchUrl, { method: 'post', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: `search=${encodeURIComponent(query)}` }); const results = await response.json(); return results; } const xml = ' Broker = MemberName = 79190-RETSIDX James T Morrison MetadataVersion = 8.09.00001 MinMetadataVersion = 8.09.00001 User = 547029,NULL,NULL,NULL Login = http://rets.hawaiiinformation.com:6103/rets/login Logout = http://rets.hawaiiinformation.com:6103/rets/logout Search = http://rets.hawaiiinformation.com:6103/rets/search GetMetadata = http://rets.hawaiiinformation.com:6103/rets/getMetadata GetObject = http://rets.hawaiiinformation.com:6103/rets/getObject Balance = 0.01 TimeoutSeconds = 1800 '; const query = 'property type:Residential'; searchMLS(xml, query).then(results => { console.log(results); });
top of page
  • Writer's pictureJames T. Morrison R(S)

Feral Goats in Hawaii



The history of feral goats in Hawaii can be traced back to the late 1700s when European explorers first arrived on the islands. These explorers brought with them a variety of animals, including goats, which were used for food and as a source of milk. Over time, these domesticated goats began to escape or were released into the wild, resulting in the formation of feral goat populations on the islands.


As the feral goat populations grew, they began to have a significant impact on the native ecosystems of Hawaii. Goats are known to be voracious eaters and can quickly strip an area of vegetation, which can lead to erosion and habitat loss for native plant and animal species. Additionally, feral goats are known to spread invasive plant species, further exacerbating the problem.


In an effort to control the feral goat population, the Hawaiian government and various conservation organizations have implemented a variety of methods over the years. These include hunting, trapping, and fencing off sensitive areas. However, despite these efforts, the feral goat population has remained stubbornly high and continues to cause damage to the native ecosystems of Hawaii.


In recent years, there has been a renewed effort to control the feral goat population in Hawaii through the use of aerial hunting, which has proven to be one of the most effective methods. This method involves using helicopters to locate and shoot feral goats in remote areas where they are difficult to reach by ground. This method has been met with controversy, as some argue that it is inhumane, while others argue that it is necessary to protect the native ecosystems of Hawaii.



Overall, the history of feral goats in Hawaii is one of ongoing struggle to control their population and mitigate their impact on the native ecosystems of the islands. Despite decades of efforts, the problem persists, and the future of the feral goat population in Hawaii remains uncertain.


1 view0 comments
  • Facebook
  • Instagram
  • Yelp
bottom of page