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)

Big Island's Volcanoes and Wildlife: How they Interact


The Big Island of Hawaii is home to two of the world's most active volcanoes, Kilauea and Mauna Loa. These powerful natural forces have shaped the island's landscape for centuries, creating unique habitats for a diverse array of wildlife.


One of the most fascinating interactions between the volcanoes and wildlife on the Big Island is the way in which the lava flows have created new habitats for native species. As the lava flows from Kilauea and Mauna Loa cool and harden, they create new landforms such as volcanic deserts, cinder cones, and lava tubes. These habitats are home to a variety of plant and animal species that have adapted to survive in the harsh conditions.

One of the most iconic wildlife species found on the Big Island is the nene, or Hawaiian goose. This bird is found only in Hawaii and is considered an endangered species. The nene is able to survive in the volcanic deserts created by the lava flows by feeding on the native plants that grow there.


Another unique species found on the Big Island is the hawksbill sea turtle. These turtles are known for their distinctive curved beaks and are considered an endangered species. The hawksbill sea turtle can be found on the Big Island's black sand beaches, which are formed by volcanic activity. The turtle's diet consists of sea urchins and other marine invertebrates that live in the rocky lava formations along the shore.

The Big Island's volcanoes also play a role in the island's freshwater ecosystem. The lava flows from Kilauea and Mauna Loa create new streams and rivers that flow into the ocean. These freshwater habitats are home to a variety of fish, including the native Hawaiian stream goby. The stream goby is a small fish that can only be found in Hawaii and is considered an endangered species.


In conclusion, the Big Island's volcanoes and wildlife have a unique and intricate relationship. The powerful natural forces of the volcanoes have created new habitats for a variety of plant and animal species, and these species have adapted to survive in the harsh conditions. The Big Island's wildlife is a testament to the resilience of nature and the importance of preserving these unique habitats for future generations.

0 views0 comments
  • Facebook
  • Instagram
  • Yelp
bottom of page