Azione E4

Realizzazione del progetto di ed. ambientale, predisposizione del materiale divulgativo e comunicazione tramite mass media

Verrà realizzato il progetto di educazione ambientale nei termini e nelle modalità stabilite nell’azione A6. Nella realizzazione del progetto si farà esplicito riferimento alla Rete Natura 2000 e all’importanza del progetto nella sua valorizzazione. Parallelamente alle attività di informazione, formazione ed educazione ambientale, verrà progettato e realizzato del materiale divulgativo: 1) due tipologie di depliants informativi: una prima tipologia destinata ad un pubblico giovane ed una seconda tipologia destinata ad un pubblico adulto; 2) un documentario subacqueo didattico - divulgativo sulla biologia riproduttiva e sulla ecologia della specie. Il progetto, nelle singole azioni chiave, verrà pubblicizzato attraverso un attento lavoro di comunicazione tramite mass media. L’ EGPB in collaborazione con il PL realizzerà dei costanti ed attenti comunicati stampa.

Avanzamento Stato: Terminato - Avvio: 01-07-2014 Conclusione: 30-06-2018
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
E4 CronoprogrammaOOAAAAAAAAAAAAAAAAOO
AvanzamentoOOAAAAAAAAAAAAAAAAXX

Le attività di Educazione Ambientale hanno coinvolto scuole dei territori di Parma, Piacenza e Reggio Emilia e sono state completamente gratuite, trasporto incluso. In particolare sono stati realizzati due tipi di percorsi educativi, uno rivolto alle scuole dell’Infanzia e al primo ciclo della Scuola Primaria dal titolo "Amici per… la pinna" e un altro, per il secondo ciclo della Scuola Primaria e per la Scuola Secondaria di I e II grado dal titolo "Salva il barbo, proteggi la Natura" con circa 2600 studenti coinvolti. Per entrambi l'obiettivo generale è stato quello di concentrarsi su tematiche prioritarie, quali i principali fattori di minaccia per la specie, le strategie per la conservazione della stessa e il ripristino degli habitats. I temi sono stati trattati sia con attività in aula sia con escursioni sul campo, visitando, in particolare, gli incubatoi e le Aree Protette coinvolte nel progetto.

*** Environmental Education activities have involved schools in the territories of Parma, Piacenza and Reggio Emilia and have been completely free, transport included. In particular, two types of educational paths have been created, one aimed at the nursery school and the first cycle of primary school entitled “Friends for ... the fin” and another, for the middle school and for the I and II grade secondary school entitled “Save the barbel, protect Nature” with about 2600 involved students. For both, the general objective was to focus on priority issues, such as the main threat factors for the species, strategies for its conservation and habitat restoration. The topics were treated both with classroom activities and with field-trips in the area, visiting, in particular, the hatchery and protected areas..

E' possibile richiedere il materiale informativo di progetto in forma cartacea contattando la Dott.ssa Sonia Anelli: s.anelli@parchiemiliaoccidentale.it; 0521-802688.

Documenti
Programma Corso di Formazione per Guide didattiche - Programma corso di formazione guide.pdf - 
Dépliant informativo di progetto - Depliant_barbo_IT-EN2.pdf - 
Roll up informativo di progetto (IT) - prova_rollup_barbo_dim_reale.pdf - 
rollup informativo di progetto (ENG) - prova_rollup_barbo_dim_reale_eng.pdf - 
Galleria
LOGO LIFE
LOGO LIFE
Download
tesi 2022
tesi 2022
Download
LOGO Rete Natura2000
LOGO Rete Natura2000
Download
Logo di progetto
Logo di progetto
Download
Con gli studenti e le studentesse di biologia, sul Taro, per BARBIE!
Con gli studenti e le studentesse di biologia, sul Taro, per BARBIE!
Download

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]