<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
    <meta charset="utf-8">

    <title>Hurricanes Irma and Maria have devastated the Caribbean marine environment</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.css" />
    <link rel="canonical" href="https://www-2018.swansea.ac.uk/press-office/news-archive/2019/hurricanesirmaandmariahavedevastatedthecaribbeanmarineenvironment.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="119781">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.css',
                            {
                                href: '/_assets/css/common/ie.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.js'
                        ];
        

        

        

        scripts = scripts.concat([
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.js',
            '/_assets/vendor/jquery-plugins/cycle2/jquery.cycle2.swipe.js',
            '/_assets/vendor/jquery-plugins/auto-complete/jquery.auto-complete.js',
            '/_assets/vendor/mustache.js',
            '/_assets/js/common/console.js',
            '/_assets/js/common/su.js',
            '/_assets/js/common/su/http/link.js',
            '/_assets/js/common/jquery-plugins/jQuery.showCookieMessage.js',
            '/_assets/vendor/jquery-plugins/ba-throttle-debounce/jquery.ba-throttle-debounce.js',
            '/_assets/js/common/jquery-plugins/jQuery.initialiseNavigation.js',
            '/_assets/js/common/jquery-plugins/jQuery.inputClear.js',
            '/_assets/js/general/desktop/enhanceFooterLinks.js',
            '/_assets/js/general/desktop/jQuery.initialiseSplashGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseFeaturedGallery.js',
            '/_assets/js/general/desktop/jQuery.initialiseTabPods.js',
            '/_assets/js/general/desktop/jQuery.initialiseQuadSliders.js',
            '/_assets/js/general/desktop/jQuery.stripeTableRows.js',
            '/_assets/vendor/jquery-plugins/ba-bbq/jquery.ba-bbq.js',
            '/_assets/js/general/desktop/jQuery.initialiseExpanders.js',
            '/_assets/vendor/jquery-plugins/cookie/jquery.cookie.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.easing.1.3.js',
            '/_assets/vendor/jquery-plugins/jBreadCrumb/js/jquery.jBreadCrumb.1.1.js',
            '/_assets/js/general/desktop.js',
            '/_assets/js/precedent/coreFunctions.js'
        ]);

        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Hurricanes Irma and Maria have devastated the Caribbean marine environment</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="http://myuni.swan.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav -->

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
	</ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Hurricanes Irma and Maria have devastated the Caribbean marine environment</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper"></div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
<p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
    Please note, this page has been archived and is no longer being updated.
</p>
    <p class="news-item-summary">The following article was originally published by The Conversation.</p>

    <div class="news-item-content">
        <h6><img alt="File 20170922 17262 2gsfyd" src="https://cdn.theconversation.com/files/187179/width754/file-20170922-17262-2gsfyd.jpg" style="font-size: 12px;" /><span style="font-size: 12px;">Picture:Toa Baja, Puerto Rico. </span><span class="attribution" style="font-size: 12px;">EPA-EFE&nbsp;</span><span style="font-size: 12px;">Richard K.F. Unsworth, <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em>; <a href="https://theconversation.com/profiles/benjamin-l-jones-348694">Benjamin L. Jones</a>, <em><a href="http://theconversation.com/institutions/cardiff-university-1257">Cardiff University</a></em>; <a href="https://theconversation.com/profiles/leanne-cullen-unsworth-348693">Leanne Cullen-Unsworth</a>, <em><a href="http://theconversation.com/institutions/cardiff-university-1257">Cardiff University</a></em>, and <a href="https://theconversation.com/profiles/lina-mtwana-nordlund-410037">Lina Mtwana Nordlund</a>, <em><a href="http://theconversation.com/institutions/stockholm-university-1019">Stockholm University</a></em></span></h6>
<p>Hurricane Irma &ndash; one of the strongest on record to hit the Caribbean &ndash; recently scoured the islands leaving catastrophic damage in its wake. And just as we began to piece together the devastating and potentially long&ndash;term impacts of Irma, Hurricane Maria has now left another path of destruction. Puerto Rico, the British dependency of the <a href="https://www.theguardian.com/world/2017/sep/23/hurricane-maria-irma-turks-and-caicos">Turks and Caicos</a>, and many other Caribbean islands have suffered what have been described as &ldquo;<a href="http://edition.cnn.com/2017/09/24/americas/hurricane-maria-puerto-rico-aftermath/index.html">apocalyptic conditions</a>&rdquo;.</p>
<p>When the world talks of the tragic and devastating consequences of severe hurricanes, the focus tends to be on the land, and <a href="https://theconversation.com/how-to-tell-the-stories-of-those-worst-affected-by-a-disaster-like-hurricane-irma-83832">the people</a> who live in affected communities. Indeed, nearly 30 people have been <a href="http://edition.cnn.com/2017/09/22/americas/hurricane-maria-turks-and-caicos-bahamas/index.html">reported killed</a>, while Puerto Rico Resident Commissioner Jenniffer Gonzalez has said that the hurricane has set the country back by &ldquo;<a href="http://www.chicagotribune.com/news/nationworld/ct-hurricane-maria-puerto-rico-20170924-story.html">20 to 30 years</a>&rdquo;. We see images of toppled trees, torn off roofs and severe flooding. But marine environments can be also badly affected by hurricanes, with potential long-term effects.</p>
<p>The force of hurricane winds, and the resultant tides and waves are so strong that both plants and animals are ripped from the sea floor leaving lifeless rubble and sediment behind. Hurricanes have a washing machine effect: they mix up coastal sediments with knock-on effects for marine life. Suspended matter left floating in the water column limits the amount of sunlight that reaches marine habitats and so reduces growth and recovery. Meanwhile in shallow coastal environments, debris, sewage and run-off continue to flow in to the sea long after the hurricane has passed.</p>
<h2>Human dependency on the sea</h2>
<p><a href="https://cdn.theconversation.com/files/187172/area14mp/file-20170922-17256-1dgo968.jpg"><img alt="" src="https://cdn.theconversation.com/files/187172/width237/file-20170922-17256-1dgo968.jpg" /></a>The devastation of coastal environments, particularly seagrass meadows, can also result in long-term losses of the benefits that humans receive from them, such as fisheries support or coastal protection. Damage to these ecosystem services consequently impacts <a href="http://www.sciencedirect.com/science/article/pii/S0025326X13002919" style="font-size: 12px;">human well-being</a><span style="font-size: 12px;">, because people can no longer rely on them for their livelihood and food supply.</span></p>
<p>Some of the most severely affected areas of the recent hurricanes in the Caribbean &ndash; Florida, Turks and Caicos, Puerto Rico, Cuba and the British Virgin Islands &ndash; all house extensive seagrass meadows. These shallow water marine habitats support valuable <a href="http://www.cell.com/current-biology/abstract/S0960-9822(16)31260-X">lobster fisheries</a>, as well as <a href="http://www.sciencedirect.com/science/article/pii/S2212041614000825">shrimp, conch, and finfish fisheries</a>. Seagrass also stabilises sediments and protects the white sand beaches that attract so many tourists to the region.</p>
<p><span style="font-size: 9px; font-weight: bold;">Picture:</span><span class="caption" style="font-size: 9px; font-weight: bold;">The fishery for Queen Conch (Strombus gigas) is a major source of income to many around the Caribbean.</span><span style="font-size: 9px; font-weight: bold;">&nbsp;</span><span class="attribution" style="font-size: 9px; font-weight: bold;"><span class="source">RKF Unsworth</span></span></p>
<p>Previous hurricanes, cyclones, and typhoons (weather events which are essentially the same but have different names depending on where the storm happens) across the globe have shown the severe negative effects they can have on these vital seagrass meadows. The seagrass plants are ripped up or buried under sediments, leading to their suffocation. The extensive associated murky water leads to widespread loss of seagrass, as was seen in the years that followed <a href="https://digital.library.unt.edu/ark:/67531/metacrs8477/m1/1/high_res_d/RL33117_2006Feb22.pdf">hurricane Katrina</a> hitting the US.</p>
<p>Initial indications from the Everglades in Florida show that seagrass destruction in the wake of Irma is extensive, with large piles already being <a href="https://gizmodo.com/first-surveys-suggest-the-everglades-took-a-beating-fro-1812387954">washed far onshore</a>. This should ring alarm bells for Caribbean fisheries, as hurricanes Katrina and Rita led to losses in the seafood industry that reached billions of dollars. The Caribbean spiny lobster fishery business alone is worth more than US$450m, and directly employs 50,000 people. Healthy seagrass provides the best fishing grounds <a href="http://www.cell.com/current-biology/abstract/S0960-9822(16)31260-X">with the greatest revenue</a>, and the recent hurricanes have the potential to decimate this.</p>
<h2>Environmental impact</h2>
<p>But this is not just about money. Seagrass loss also threatens marine biodiversity and the health of charismatic species. After a severe cyclone in Australia in 2011, <a href="http://www.telegraph.co.uk/news/worldnews/australiaandthepacific/australia/8753630/Mass-starvation-of-dugongs-and-turtles-on-Great-Barrier-Reef.html">turtles and dugong</a> starved due to the damaged meadows. In addition, seagrass is a <a href="https://theconversation.com/seagrass-is-a-marine-powerhouse-so-why-isnt-it-on-the-worlds-conservation-agenda-66503">marine powerhouse</a>, which stores <a href="https://theconversation.com/a-submarine-carbon-tax-opportunity-seagrass-meadows-are-intense-but-fragile-carbon-sinks-7183">vast amounts of carbon</a> in meadow sediments. When the seagrass is removed, this carbon is released back into the environment.</p>
<p><a href="https://cdn.theconversation.com/files/187057/area14mp/file-20170921-20953-588csc.jpg"><img alt="" src="https://cdn.theconversation.com/files/187057/width237/file-20170921-20953-588csc.jpg" /></a>Hurricanes have always been a part of life in tropical seas. The destruction they cause and their recovery have been observed throughout <a href="http://onlinelibrary.wiley.com/doi/10.1029/2006GL028836/full" style="font-size: 12px;">human history</a><span style="font-size: 12px;">. What is alarming now, however, is the apparent </span><a href="https://theconversation.com/hurricanes-may-be-getting-more-severe-do-we-need-a-whole-new-category-to-describe-them-83782" style="font-size: 12px;">increased frequency and intensity</a><span style="font-size: 12px;">. The already poor state of the Caribbean marine environment restricts the ability of habitats such as seagrass meadows and coral reefs to recover from the effects of severe storms. Poor water quality and over-fishing, for example, promotes the overgrowth of algae, preventing recovery. With repeated hurricanes occurring over time periods that are insufficient for recovery to occur, this will only get worse.</span></p>
<p><span style="font-size: 9px; font-weight: bold;">&nbsp;</span></p>
<p><span style="font-size: 9px; font-weight: bold;">Picture:&nbsp;</span><span class="caption" style="font-size: 9px; font-weight: bold;">Caribbean spiny lobsters depend on clams they find in seagrass.</span><span style="font-size: 9px; font-weight: bold;">&nbsp;</span><span class="attribution" style="font-size: 9px; font-weight: bold;"><span class="source">Benjamin Jones</span>,&nbsp;<span class="license">Author provided</span></span></p>
<p>The severity of hurricanes Irma and Maria are a wake up call. We need a fundamental shift in how marine environments are protected to enable long-term sustainability for the food and income they provide. Many locations in the Caribbean, <a href="http://www.sciencedirect.com/science/article/pii/B9780128002148000049">for example Puerto Rico</a>, have ineffective marine protection rules and so destructive practices continue unchecked, meaning that when a disaster does occur, the environment is unable to recover.</p>
<p><img alt="The Conversation" height="1" src="https://counter.theconversation.com/content/84450/count.gif?distributor=republish-lightbox-basic" width="1" />Although local actions against climate change are difficult to achieve, it is possible to manage river catchments to improve water quality, and focus on small scale immediate actions, such as implementation of marine protected areas to limit immediate and direct damage to coastal resources. Coordinated small scale actions will ultimately help enhance the resilience of the Caribbean Sea, and make sure that the environment can better recover from any future extreme events.</p>
<p><span><a href="https://theconversation.com/profiles/richard-k-f-unsworth-140940">Richard K.F. Unsworth</a>, Research Officer (Marine Ecology), <em><a href="http://theconversation.com/institutions/swansea-university-2638">Swansea University</a></em>; <a href="https://theconversation.com/profiles/benjamin-l-jones-348694">Benjamin L. Jones</a>, Research Assistant at the Sustainable Places Research Institute, <em><a href="http://theconversation.com/institutions/cardiff-university-1257">Cardiff University</a></em>; <a href="https://theconversation.com/profiles/leanne-cullen-unsworth-348693">Leanne Cullen-Unsworth</a>, Research Fellow, <em><a href="http://theconversation.com/institutions/cardiff-university-1257">Cardiff University</a></em>, and <a href="https://theconversation.com/profiles/lina-mtwana-nordlund-410037">Lina Mtwana Nordlund</a>, Researcher in coastal environmental sciences, <em><a href="http://theconversation.com/institutions/stockholm-university-1019">Stockholm University</a></em></span></p>
<p><img src="/media/conversation-logo-3ef91e0a2031c5d9350f37bac3cf5273ef6da3660ffaf7c422b9695f09b6f171.png"
alt="The Conversation " title="The Conversation " /></p>
<p>This article was originally published on <a href="http://theconversation.com">The Conversation</a>. Read the <a href="https://theconversation.com/hurricanes-irma-and-maria-have-devastated-the-caribbean-marine-environment-84450">original article</a>.</p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Delyth Purchase</span>
            &lt;<a class="email" href="mailto:d.purchase@swansea.ac.uk">d.purchase@swansea.ac.uk</a>&gt;
        </li>

        <li class="news-item-post-info">
            <a href="/press-office/news-archive/2019/hurricanesirmaandmariahavedevastatedthecaribbeanmarineenvironment.php" rel="bookmark">
                <abbr class="published" title="2017-09-25T12:40:00+01:00">Monday 25 September 2017 12.40 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2019-09-10T11:26:27+01:00">Tuesday 10 September 2019 11.26 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">Swansea University</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="/the-university/contact/">Contact Us</a></li><li class="footer-links-list-item"><a href="/personnel/jobs/">Jobs</a></li><li class="footer-links-list-item"><a href="/the-university/colleges/">Colleges</a></li><li class="footer-links-list-item"><a href="/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
