Azione A6

Redazione del progetto di educazione-formazione ambientale

Lo sviluppo nella comunità locale di una cosiddetta “coscienza conservazionistica” è presupposto fondamentale per il raggiungimento degli obiettivi di progetto. La presente azione si ritiene necessaria e propedeutica alla corretta realizzazione di un percorso formativo (V. azione E4) efficiente e realistico. Verrà predisposto un progetto di educazione/formazione ambientale focalizzato sia sulle caratteristiche bioecologiche delle specie e l’importanza della conservazione della biodiversità, sia sugli obiettivi, le azioni e i risultati del progetto. Il percorso formativo sarà rivolto alle scuole di ogni ordine e grado nonché alle associazioni di settore (in primis le associazioni di pesca sportiva), gli enti locali e la cittadinanza tutta. Esso prevederà: lezioni frontali, attività laboratoriali e uscite sul campo; verrà promossa la tecnica della “coprogettazione” con le scuole e l’inserimento del progetto nel percorso formativo di ogni singola classe per favorire l’apprendimento/partecipazione degli studenti. Il progetto sarà redatto dal partner EGPB mediante il proprio Centro di Educazione Ambientale e alla Sostenibilità (CEAS) “Aree protette Emilia occidentale”.

Avanzamento Stato: Terminato - Avvio: 01-07-2014 Conclusione: 30-09-2015
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
A6 CronoprogrammaOOAAAAAOOOOOOOOOOOOO
AvanzamentoOOOAAAAOOOOOOOOOOOOO

In progettazione con le guide didattiche è stato redatto il progetto di educazione ambientale che si articola in tre percorsi didattici differenziati rispettivamente per: 1) scuola materna e primo ciclo scuola primaria; 2) secondo ciclo scuola primaria e scuola media inferiore; 3) scuola media superiore. Il progetto prevede sia attività a scuola che in campo/laboratorio ed il coinvolgimento delle Società di educazione ambientale che collaborano con EGPB e PNATE nelle tre Provincie di Parma, Piacenza e Reggio Emilia oggetto di studio. Per quanto riguarda il percorso con le scuole medie superiori, è prevista anche un’attività laboratoriale presso l’UNPR.

La redazione del progetto ha previsto anche attività di formazione per guide didattiche con lezioni frontali e in campo (biomonitoraggi sul fiume Enza e visita agli incubatoi e troticolture di Monchio delle Corti e Corniglio). Questa attività svolta nell’ambito del progetto potrà avere ulteriori ricadute indirette e positive anche su altri progetti educativi.

***The educational proposals for schools were developed over the period July 2014 - October 2014. The title, objectives, purposes and rough actions have been identified. The relevant educational paths have been structured with UNIPR in the period November 2014 - April 2015 and specific training activities were carried out for the guides (action E4). EGPB then collected the various contributions and came to a final draft of the planned activities. It 'been planned Different teaching activities have been identified and planned for pre-schools, primary schools and lower secondary schools. In addition the project has been modulated so as to allow the teachers to choose between 3 different types of activities: in the classroom, on the field, in the laboratory and / or hatcheries visits. Subsequently the teaching guides were also involved in the preparation of teaching materials.


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]