Azione C7

Controllo delle specie alloctone di barbo: eradicazione o gestione delle specie alloctone

La presente azione mira al contrasto diretto dell'incremento demografico delle specie ittiche esotiche in particolar modo del Barbus barbus o barbo europeo, ampliamente diffuso nel tratto padano parmense e di minaccia per le congeneriche specie target autoctone. Le specie alloctone saranno rimosse attraverso interventi specifici programmati in base alle diverse tipologie ambientali; gli interventi saranno eseguiti nei diversi SIC di progetto [inserire link all’area di studio] in base ai risultati emersi durante la fase preliminare di monitoraggio ittiologico (azione A2). E’ prevedibile dover intervenire con azioni consistenti nei SIC di pianura mentre quelli collinari e montani dovrebbero risultare scarsamente o per niente influenzati dalle specie alloctone. A tal riguardo sarà importante valutare l’eventuale presenza di ibridi. L’azione sarà svolta da GEN-TECH con il supporto del PL.

Avanzamento Stato: Terminato - Avvio: 30-06-2015 Conclusione: 31-05-2016
2014 2015 2016 2017 2018
I II III IV I II III IV I II III IV I II III IV I II III IV
C7 CronoprogrammaOOOOOOAAAAOOOOOOOOOO
AvanzamentoOOOOOOOAAXXXXXXXXXXX

In linea con il Regolamento 1143/2014/UE, nel progetto LIFE BARBIE, è stata eseguita la cattura di individui esotici di barbo, considerati specie alloctona invasiva di minaccia per la sopravvivenza delle specie autoctone di barbo oggetto di progetto e il loro trasporto in ambienti confinati quali laghi e cave in zona extragolenale o bacini per la raccolta di acqua a scopo irriguo. In particolare la presenza del barbo alloctono è stata rinvenuta in n° 4/36 tratti fluviali studiati di progetto. La rimozione è stata possibile in due siti in cui la presenza del barbo alloctono era sporadica e le condizioni ambientali favorevoli (torrenti di dimensioni ridotte con barriere a valle). Si è provveduto a inserire i restanti siti in un piano di controllo e prevenzione che contemplasse la rimozione di esemplari alloctoni in particolari zone rifugio e contemporaneamente la sensibilizzazione dei pescatori affinché evitassero il rilascio dei pesci alloctoni catturati in accordo con le linee guida del regolamento Europeo sopracitato.

***In the LIFE BARBIE project, the translocation of European barbel into confined sites (e.g. lakes and caves or basins for the collection of water for irrigation purposes) was performed according with Regulation 1143/2014/EU. In particular, the presence of the allochthonous barbel was found in n° 4/36 studied river sections. The removal of the alien specimens was possible only in two sites where the presence of the barbel was sporadic and the favorable environmental conditions (small streams with barriers downstream) persisted. The others sites were included in a specific management plan. This plan includes the removal of alien specimens in particular refuge areas as well as the awareness of fishermen to avoid the release of the captured alien fish according with the guidelines of the mentioned Regulation (EU) n. 1143/2014. .


class "Downloads" already exists while executing "::itcl::class Downloads { inherit Barbie private variable downloads_menu "" public common downloads_dir public me..." (in namespace eval "::rwdatas" script line 3) invoked from within "namespace eval ::rwdatas { ::itcl::class Downloads { inherit Barbie private variable downloads_menu "" public common ..."

OUTPUT BUFFER:

source [file join $rweb_root tcl before.tcl] # # -- downloads.tcl # # yet another datasource for controlling document downloads # #::rivet::apache_log_error notice "sourcing file [info script]" # package require Barbie package require rwbinary namespace eval ::rwdatas { ::itcl::class Downloads { inherit Barbie private variable downloads_menu "" public common downloads_dir public method willHandle {arglist keyvar} public method init {args} public method menu_list {page} public method is_stale {key timereference} #public proc to_url {lm} { return [Barbie::to_url $lm] } public proc list_downloads {dbhandle {public "%"}} protected method create_page_obj {key ooclass reassigned_key} { return ""} } ::itcl::body Downloads::is_stale {key timereference} { if {$key == "download_doc"} { return true } return [chain $key $timereference] } ::itcl::body Downloads::list_downloads {dbhandle {public "%"}} { set q { select d.*,s.descrizione,s.sectionid from documenti d \ join sezioni s on d.sezione=s.sectionid \ where d.pubblico like '$public' \ order by s.sectionid,s.ordine,d.ordine,d.docid; } set docsdb [dict create] #puts "
[subst $q]
" $::barbie::dbhandle forall [subst $q] document { set sectionid $document(sectionid) unset document(sectionid) set sezione_descrizione $document(descrizione) unset document(descrizione) set docid $document(docid) unset document(docid) dict set docsdb $sectionid descrizione $sezione_descrizione dict set docsdb $sectionid documenti $docid [dict create {*}[array get document]] } return $docsdb } ::itcl::body Downloads::willHandle {arglist keyvar} { upvar $keyvar key set args_d [dict create {*}$arglist] if {[dict exists $args_d downloads]} { set key listdownloads return -code break -errorcode rw_ok } if {[dict exists $args_d dwnl]} { set key download_doc return -code break -errorcode rw_ok } return -code continue -errorcode rw_continue } ::itcl::body Downloads::init {args} { set downloads_dir [file join $::rivetweb::site_base docs] $this key_class_map download_doc ::rwpage::BinaryFile $this key_class_map listdownloads ::rwpage::DownloadMgr set mm $::rivetweb::menumodel set lm $::rivetweb::linkmodel set downloads_menu [$mm create_menu downloadsmanager root normal] $downloads_menu assign title "Documenti" $::rivetweb::default_lang $downloads_menu assign title "Documents" en set downloads_link [$lm create FileUpload "" \ { it "Download Documenti" en "Documents Download" } \ [dict create downloads 1] \ [dict create it "Download documenti" \ en "Documents Download"]] $downloads_menu add_link $downloads_link } ::itcl::body Downloads::menu_list {page} { return [list documenti $downloads_menu] } ::itcl::body Downloads::create_page_obj {key ooclass reassigned_key} { upvar $reassigned_key rkey set rkey $key set p "" switch $key { download_doc { set docid [::rivet::var_qs get dwnl] set d [::barbie::Documenti #auto] set nr [$d fetch $::barbie::dbhandle [list docid $docid] dd] if {[::barbie::is_logged] || [::barbie::is_supervisor]} { set filter 1 } else { set filter [expr $dd(pubblico) == "y"] } if {($nr > 0) && $filter} { set binary_file [file join $downloads_dir $dd(filename)] set p [$ooclass ::#auto $key $binary_file] } else { return -code error "Documento inaccessibile" } $d destroy } listdownloads { set p [$ooclass ::#auto $key] #$p configure -downloads_dir docs } } return $p } } package provide Downloads 1.0 source [file join $rweb_root tcl after.tcl]