"; $fin_intertitre = ""; // retourne le sous-titre en fonction de la langue choisie function titrerub($descriptif, $languechoisie) { $mestitres = explode("$", $descriptif); $count = count($mestitres); $i=0; $trouve=FALSE; while ($i<=$count && $trouve==FALSE) { $montitre = explode("=", $mestitres[$i]); if (trim($montitre[0]) == trim($languechoisie)) { $titre = $montitre[1]; $trouve = TRUE ; } $i = $i + 1; } return $titre; // return $mestitres[1]; } function ami_top($titre) { $titre = ereg_replace("\#T", "Site Top", $titre); $titre = ereg_replace("\#A", "Site Ami", $titre); return $titre; } function cleanquotes($in) { return ereg_replace("'", "\'", ereg_replace("\"", "'", $in)); } function encoder_mail($texte) { $i = 0; $fin = ""; while ($c = substr($mail, $i, 1)) { $fin .= "&#" . ord($c) . ";"; $i++; } $aff = eregi_replace("&", "&", $fin); return $aff; } function chiffre($unites,$genre=''){ if ($unites==1 AND $genre=='fem'){$retour="une";} if ($unites==1 AND $genre!='fem'){$retour="un";} if ($unites==2){$retour="deux";} if ($unites==3){$retour="trois";} if ($unites==4){$retour="quatre";} if ($unites==5){$retour="cinq";} if ($unites==6){$retour="six";} if ($unites==7){$retour="sept";} if ($unites==8){$retour="huit";} if ($unites==9){$retour="neuf";} return $retour; } function chiffre_sans($unites){ if ($unites==2){$retour="deux";} if ($unites==3){$retour="trois";} if ($unites==4){$retour="quatre";} if ($unites==5){$retour="cinq";} if ($unites==6){$retour="six";} if ($unites==7){$retour="sept";} if ($unites==8){$retour="huit";} if ($unites==9){$retour="neuf";} return $retour; } function chiffre_et($unites, $genre=''){ if ($unites==1 AND $genre=='fem'){$retour=" et une";} if ($unites==1 AND $genre!='fem'){$retour=" et un";} if ($unites==2){$retour="-deux";} if ($unites==3){$retour="-trois";} if ($unites==4){$retour="-quatre";} if ($unites==5){$retour="-cinq";} if ($unites==6){$retour="-six";} if ($unites==7){$retour="-sept";} if ($unites==8){$retour="-huit";} if ($unites==9){$retour="-neuf";} return $retour; } function chiffre_dix($unites){ if ($unites==0){$retour="dix";} if ($unites==1){$retour="onze";} if ($unites==2){$retour="douze";} if ($unites==3){$retour="treize";} if ($unites==4){$retour="quatorze";} if ($unites==5){$retour="quinze";} if ($unites==6){$retour="seize";} if ($unites==7){$retour="dix-sept";} if ($unites==8){$retour="dix-huit";} if ($unites==9){$retour="dix-neuf";} return $retour; } function chiffre_et_dix($unites){ if ($unites==0){$retour="-dix";} if ($unites==1){$retour=" et onze";} if ($unites==2){$retour="-douze";} if ($unites==3){$retour="-treize";} if ($unites==4){$retour="-quatorze";} if ($unites==5){$retour="-quinze";} if ($unites==6){$retour="-seize";} if ($unites==7){$retour="-dix-sept";} if ($unites==8){$retour="-dix-huit";} if ($unites==9){$retour="-dix-neuf";} return $retour; } function dizaines($dizaines,$unites,$genre=''){ if ($dizaines==0){ $retour=chiffre($unites,$genre); } if ($dizaines==1){ $retour=chiffre_dix($unites); } if ($dizaines==2){ $retour="vingt".chiffre_et($unites,$genre); } if ($dizaines==3){ $retour="trente".chiffre_et($unites,$genre); } if ($dizaines==4){ $retour="quarante".chiffre_et($unites,$genre); } if ($dizaines==5){ $retour="cinquante".chiffre_et($unites,$genre); } if ($dizaines==6){ $retour="soixante".chiffre_et($unites,$genre); } if ($dizaines==7){ $retour="soixante".chiffre_et_dix($unites); } if ($dizaines==8 & $unites>0){ $retour="quatre-vingt-".chiffre($unites,$genre); } if ($dizaines==8 & $unites==0){ $retour="quatre-vingts"; } if ($dizaines==9){ $retour="quatre-vingt-".chiffre_dix($unites); } return $retour; } function par3($lavaleur,$demille,$genre='masc',$type=''){ if (strlen($lavaleur)==1){$lavaleur="00".$lavaleur;} if (strlen($lavaleur)==2){$lavaleur="0".$lavaleur;} $centaines=substr($lavaleur,0,1); $dizaines=substr($lavaleur,1,1); $unites=substr($lavaleur,2,1); if ($centaines>1){ $cent="cents"; } if ($demille=="mille"){ $cent="cent"; } if ($dizaines+$unites>0){ $cent="cent"; } if (($demille=="million" OR $demille=="milliard") AND $centaines+$dizaines+$unites>1){ $demille=$demille."s"; } if ($centaines+$dizaines+$unites>0){ $demille=" ".$demille; }else{ $demille=""; } if ($centaines>0){ $retour=chiffre_sans($centaines)." $cent ".dizaines($dizaines,$unites,$genre); }else{ $retour=dizaines($dizaines,$unites,$genre); } if (trim($retour)=="un" & trim($demille)=="mille"){ $retour=""; } if (trim($retour)=="un" AND $type=='date'){ $retour="premier"; if($genre=='fem') $retour="première"; } if($genre=='fem' AND $retour=="un") $retour="une"; return $retour.$demille; } function en_lettres($lavaleur,$genre='masc',$type=''){ $lavaleur=strrev($lavaleur); $unites=par3(strrev(substr($lavaleur,0,3)),"","$genre","$type"); $milliers=par3(strrev(substr($lavaleur,3,3)),"mille"); $millions=par3(strrev(substr($lavaleur,6,3)),"million"); $milliards=par3(strrev(substr($lavaleur,9,3)),"milliard"); return trim("$milliards $millions $milliers $unites"); } function jour_en_lettres($lavaleur){ return en_lettres($lavaleur,'','date'); } function en_lettres_fem($lavaleur){ return en_lettres($lavaleur,'fem',''); } function enlettres($lenombre,$unite='',$unites='',$entre='',$apres='',$apress=''){ $lenombre=ereg_replace(",",".",$lenombre); $lenombre=explode(".",$lenombre); $entier=$lenombre[0]; if ($entier>1 & strlen($unite)>0){ $unite=$unites; } $virgule=$lenombre[1]; if ($virgule>1 & strlen($apres)>0){ $apres=$apress; } if ($entier==0 OR $virgule==0){ $entre=""; } if ($entier==0){ $unite=""; } $entier=en_lettres($entier); if ($virgule==0){ $apres=""; } $virgule=en_lettres($virgule); return trim("$entier $unite $entre $virgule $apres"); } function ombrer($image) { $chemin = ""; if (empty($image)) return $image; if(!is_readable($image)) { $chemin = "IMG/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/gif/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/png/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/jpg/"; if(!is_readable($chemin . $image)) return $image; } } } } $taille = GetImageSize($chemin . $image); $texte = "
"; return $texte; } ?> Rassemblement International pour la Promotion de l’Hydrospeed - Austria - Raduno Giugno 2005
Austria - Raduno Giugno 2005
fr it de en
Home page Perch? Obiettivi Chi? Uniscasi
 

Ecco tutte le informazioni sul raduno dell’Hydrospeed organizzato dall’ RIPH in Austria, dal 5 all’11 giugno 2005.

INFORMAZIONI GENERALI

L’ RIPH international propone un raduno popolare d’hydrospeed a Landeck, nelle Alpi austriache, dal 5 all’11 giugno 2005.

Situato ai confini della Svizzera, dell’Austria e dell’Italia, il potenziale di questa regione è molto vasto e vario.Non meno di cinque vallate convergono verso questo sito, nel cuore del Tirolo, circondato da cime alte più di 3000 metri.
La data scelta corrisponde al periodo teoricamente ideale per garantire un eccellente livello su tutti i corsi d’acqua della regione.

JPEG - 67.8 Kb
Palanquée sur l’Inn : gros volume autrichien !
Photo de Daniel Chatelain

Questo incontro si inserisce nello stesso contesto di quello cominciato, ormai diversi anni fa, dall’equipe dell’EVP-45 in Italia: autonomia di principio per i partecipanti, dentro e fuori l’acqua.
Trattandosi di un raduno, sinonimo di scambi, le persone isolate potranno entrare in contatto e organizzarsi con gli altri partecipanti grazie all’intermediario della lista di diffusione creata appositamente per l’occasione.

Lista di diffusione specifica per il raduno (in francese) :
autriche2000@dreamnev.org

Per iscriversi inviate un’e-mail vuota all’indirizzo
mailto:autriche2005-subscribe@dream...

CARTA

Cliccate sulla carta per Landeck sul sito di ViaMichelin

ALTRE INFORMAZIONI

inizio delle attività
domenica mattina

punto di ritrovo
camping sport camp Tirolo, a Landeck (Tirolo)

JPEG - 111 Kb
Vue du Camping Sport Camp Tyrol à Landeck
Photo de Daniel Chatelain

Situato ai bordi della Sanna (punto di sbarco classico), questo camping propone più di un tipo di sistemazione (chalet, monolocali...), e un servizio di ristorazione rapida.
In ogni caso sono presenti numerosi hotel, ristoranti e supermercati sia nel borgo che nelle sue prossimità.

Da qualsiasi parte si arrivi, dalla Germania, dall’Italia o dalla Svizzera, la regione dispone di una rete stradale e autostradale di qualità. Landeck è servita inoltre di una rete ferroviaria.

Aeroporto più vicino
Insbruck.

JPEG - 99.1 Kb
Départ de la Trisanna
Photo de Daniel Chatelain

ASSICURAZIONE

Ogni partecipante deve possedere un’assicurazione nell’ambito della pratica dell’hydrospeed. Per i cittadini della comunità europea la copertura medica è assicurata dalla carta europea di assicurazione malattie.

Da notare: il documento E-111 non è più valido dal 2004.

Valuta
euro

Bevanda ufficiale
birra o Sanna (la riviera del aperitivo)

TOPOGRAFIA DEI FIUMI

per preparare il vostro soggiorno, il libro indispensabile è : White Water North Alps (in inglese). Disponibile in tutto i negozi di acqua sorgiva (ad esempio il Canotier o direttamente qui).

LINK E MEZZI

- Sito del camping (inglese, tedesco):
http://www.sportcamptirol.at/index....

- per info e prenotazioni:
mailto:info@sportcamptirol.at. Il gestore capisce l’inglese, un po’ il francese. Per comunicare con il gestore menzionate come referenza “Hydrospeed Landeck 2005”

- Info turistiche e hotels (inglese, tedesco):
http://www.tiscover.at/home/index_a...

- sito di topografia (in tedesco):
http://www.paddeln.at

- centro di informazioni e soccorsi:
http://www.alpinesicherheit.com/en/...

- webcam di Landeck:
http://www.alpinesicherheit.com/en/...

- soggiorno hydrospeed 2003 (acquaviva-Palmes Aquadémiques) su Internev (in francese)

- sito soggiorno kayak su Landeck (interessante in francese):
http://cdvck.88.free.fr/autriche.html

Contact

Daniel

 

Home page
 
 
 
 
[ - Altri siti - Home page - Admin ]
 
 

::

  ::