<!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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-2764516-1"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-2764516-1');
  gtag('config', 'UA-2764516-41');
</script>
    <meta charset="utf-8">

    <title>Homegrown seagrass NGO stems from research degrees</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.3e671936f996725dc539a79a71616828.css" />
    <link rel="canonical" href="https://www.swansea.ac.uk/science/news/homegrownseagrassngostemsfromresearchdegrees.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="85435">

    <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.6e59e83ff59cb40781315a71921a9e90.css',
                            {
                                href: '/_assets/css/common/ie.f69f56d283a8a388167e8f1fe4a525c8.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.bbc89b82ec50a07d8213605799f05ae8.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.56dd48f60646979b66cdc5493ad67f3c.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.c382d4fde9d5be0fb44ed6d0257a2b4a.js'
                        ];
        

        

        
        scripts.push('/_assets/js/general/desktop.all.min.e5340f28032f592cbeeb2441d1ec1985.js');


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


</head>

<body id="content" class="layout-general-wrapper">
 
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-5MZHZM"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5MZHZM');</script>
<!-- End Google Tag Manager -->

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

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Homegrown seagrass NGO stems from research degrees</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="https://myuni.swansea.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 --><ul id="mainNav" class="main-nav-list"></ul>

            </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>
            <li>
                <span>College of Science News Centre</span>
            </li>
        </ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Homegrown seagrass NGO stems from research degrees</h1>
                </div>

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

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper">
<!-- navigation object : SU Inline Menu level 4 -->
                    </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">Swansea University students form a marine conservation NGO after MRes degrees reveal the extent of the problems that our important seagrass meadows face.</p>

    <div class="news-item-content">
        <p class="p1"><span class="s1"><img src="/media/ben-jones1-300-q100.jpg"
alt="Ben Jones1" title="" />During the research conducted for their MRes degrees in Aquatic Ecology and Conservation at Swansea University, Benjamin Jones and Richard Lilley discovered just how little people in the UK knew about seagrass, and the important roles that seagrass habitats play in coastal ecosystems.&nbsp;</span></p>
<p class="p2">Globally, over a billion people live within 50km of a seagrass meadow, yet only a small fraction of these people even know that seagrass exists and evidence suggests that this trend holds true for the UK too.</p>
<p class="p2">Seagrasses are flowering plants and form productive and biologically rich habitats, but across the globe these species are under threat. In the UK, these habitats provide support for commercially and economically important fish species including juvenile Bass, Plaice, Pollock, Whiting and Cod. Further evidence of the major role was collected as part of Richard Lilley&rsquo;s research that investigated the nursery role that seagrass plays in specifically supporting juvenile Atlantic Cod.&nbsp; Seagrass meadows in the UK also provide important food for wildfowl, such as brent geese, and nutrients to support animal communities on the seabed. The research conducted by Benjamin Jones for his MRes thesis has shown that these habitats, specifically in the UK, are close to environmental thresholds and contains very little resilience to environmental change.&nbsp;</p>
<p class="p2"><img src="/media/ben-jones2-300-q100.jpg"
alt="Ben Jones2" title="" />Every hour, an area of seagrass the size of two football pitches is lost around the World. This rate of loss is equal (if not greater) to that occurring in tropical rainforests and on coral reefs yet it receives a fraction of the attention. Benjamin Jones and Richard Lilley wanted to change this. With the help of their supervisor, Dr Richard Unsworth, the team joined forces to create Project Seagrass, an organisation dedicated to advancing the conservation of seagrass through education, influence, research and action.&nbsp;</p>
<p class="p2">Seagrasses face a host of problems locally and globally but because of their 'uncharismatic' nature, they are often forgotten or marginalised in conservation agendas. 'People don't necessarily understand its importance - it doesn't have the charismatic appeal. For example, in the tropical oceans it doesn't compare in colour to coral reef. But it actually has a huge impact on the productivity and biodiversity of the coral reef and marine ecosystem,' said Dr Richard Unsworth.</p>
<p class="p2">The work of the Project Seagrass team is slowly trying to change this attitude and through education and active conservation initiatives. Via the use of social media, the trio have gained an impressive following over the last few months. In addition, Benjamin Jones has worked with students from the University of South Wales while in Borneo, where he conducted a workshop covering the importance of seagrass for tropical ecosystems and included monitoring activities on a local seagrass meadow. The group have been active during 2014 and in April, Benjamin Jones and Richard Unsworth headed to the Wakatobi, Indonesia to assist with a project funded by the Waterloo Foundation to help understand the importance of seagrass for food security.&nbsp;</p>
<p class="p2">Richard Lilley is now working on his PhD trying to understand similar seagrass-food security linkages out on Lipsi, a small Greek island collaborating with Archipelagos, a Greek NGO. As part of his work he is trying to change the attitude of people towards seagrass in the Mediterranean. He&rsquo;s been working with local fishermen and has conducted education sessions in local schools to educate them about the importance of seagrass.&nbsp;</p>
<p class="p2">To keep up to date with Project Seagrass follow their work on Facebook, Twitter and Instagram @ProjectSeagrass or check out their website: <a href="http://www.project-seagrass.co.uk"><span class="s2">www.project-seagrass.co.uk</span></a></p>
<p class="p1"><span class="s1">&nbsp;</span></p>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">Nicola Jones</span>
        </li>

        <li class="news-item-post-info">
            <a href="/science/news/homegrownseagrassngostemsfromresearchdegrees.php" rel="bookmark">
                <abbr class="published" title="2014-06-26T13:18:00+01:00">Thursday 26 June 2014 13.18 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2014-06-26T13:20:02+01:00">Thursday 26 June 2014 13.20 BST</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">College of Science</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="https://www.swansea.ac.uk/jobs-at-swansea/">Jobs</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/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>
