Where am I? > Home > Latest SAC News > (click to change to welsh website)
Background information  


The moderation process

Cardigan Bay SAC was put forward as a candidate site in 1996 due to the significance of the high numbers of bottlenose dolphins found in the area. In partnership with local interest groups, the relevant authority group developed a management plan for the site, which has been in place since 2001.

In the same year the UK submitted its candidate Special Areas of Conservation to the European Council. The European response was that the UK had not included all of the habitats and species occurring in UK territory and it must ensure these features were added and appropriate conservation measures were developed. This initiated a process referred to as the “moderation” process. As a result the Countryside Council for Wales was required to add the following species and habitats to the officially designated features of the Cardigan Bay SAC:

  • Grey seals
  • River Lamprey
  • Sea Lamprey
  • Reefs
  • Sandbanks slightly submerged by sea water at all times
  • Submerged or partially submerged sea caves

Each feature will require specific management measures to ensure the conservation objectives for each are met, as has been done for the bottlenose dolphins. The addition of these features requires significant additions to the existing SAC management plan and the Relevant Authorities are currently updating the plan to account for the new features of the site.

The management plan on this site is therefore a copy of the original scheme that was developed between 1996 and 2001 solely for the bottlenose dolphins. The reviewed plan will be posted as soon as it has been consulted upon and finalised.

 

 

<% page = trim(request.querystring("page")) Dim strLine If page = "" Then page = 1 else page = cint(page) End If DisplayNum = 0 Set oCon = Server.CreateObject ("ADODB.Connection") Set Rec = Server.CreateObject ("ADODB.Recordset") oCon.Open strCon Rec.PageSize = 10 Rec.CursorLocation = adUseClient sql = "Select newsID, headline, source, summary, newsDate from news where status = 1 AND " sql = sql & " DateDiff(""n"", newsDate, Now()) >= 0 order by newsDate desc" Rec.Open sql, oCon if Rec.EOF OR Rec.BOF Then response.write "

" response.write "

Sorry, There is no news ...

" else ipage = Rec.PageCount if page = 0 or page > ipage Then Rec.AbsolutePage = ipage else Rec.AbsolutePage = page end if do while not Rec.Eof AND i < 10 response.write "" & Rec("headline") & "
" & vbcrlf response.write ""& vbcrlf response.write "Publish Date : " & Rec("newsDate") & "   Source : "& rec("source") &"
"& vbcrlf response.write ""& vbcrlf response.write Rec("summary") & "

"& vbcrlf & vbcrlf & vbcrlf i = i + 1 Rec.Movenext loop response.write ""& vbcrlf response.write "Total Results : " & Rec.RecordCount & "  " If ipage > 1 Then showpages = "
More Pages :  " For z = 1 to ipage If z = page then showpages = showpages & "  [" & page & "]  " Else showpages = showpages & " " & z & "" & "  " End If Next response.write showpages & "  " End If if ipage > 1 And page > 1 Then response.write "Previous" end if response.write "  " If ipage > 1 And page < ipage Then response.write "Next Page" end if response.write "
" Rec.Close oCon.Close set Rec = nothing set oCon = nothing End if %>