Statistiques mensuelle vent/direction en bargraph

Stylesheet XML créés par nos membres
Avatar de l’utilisateur
MAGNUS
Membre
Messages : 992
Inscription : dim. mars 26, 2006 4:44 pm
Localisation : VIDAUBAN (83) FRANCE
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par MAGNUS »

chris_01 a écrit :
L'affichage est correct lorsque j'ouvre la base des données avec Graphweather mais, bien que tout les fichiers se trouvent sur le serveur, le graph vent ne s'affiche pas.
Tu as bien modifié le fichier month? et est-il toujours un fichier xsl?
Affirmatif, voici le fichier month.xls :
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes" encoding="ISO-8859-1"/>
<xsl:template match="/">
<xsl:apply-templates select="statistics"/></xsl:template>
<xsl:template match="statistics">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
.stats-title {
background-color: #ddddff;
border: 1px solid #cccccc;
font-size: 150%;
}
.stats-subtitle {
background-color: #ddddff;
border: 1px solid #cccccc;
font-size: 100%;
}

.stats-item {
background-color: #eeeeff;
border: 1px solid #cccccc;
font-size: 100%;
text-align: center;
}

.stats-item-col {
background-color: #eeeeff;
border: 1px solid #cccccc;
font-size: 100%;
text-align: center;
width:200px;
}

.stats-table {
background-color: #ffffdd;
border: 1px dotted #cccccc;
}

.stats-pane {
background-color: #ffffdd;
border: 1px solid #cccccc;
padding: 5px;
text-align: left;
}

.stats-cell {
background-color: #ffffdd;
border: 1px solid #cccccc;
padding: 5px;
text-align: center;
}

.stats-date {
font-style:italic;
font-size:70%;
}

table {
padding:0px;
border:0px;
border-collapse:collapse;
}
</style>
</head>
<body>
<table width="100%" cellspacing="20">
<tr>
<th width="100px" scope="col"><img src="../../statistics.png" width="90" height="90" /></th>
<th width="100%" scope="col"><div class="stats-title">Statistiques <xsl:value-of select="@str-month"/> <xsl:value-of select="@year"/></div></th>
</tr>
</table>
<table width="400" style="text-align:left">
<tr>
<td class="stats-pane" scope="col">
Total des précipitations : <xsl:value-of select="total-rainfall"/><br/>
Nombre de jours pluvieux : <xsl:value-of select="nb-days-of-rainfall"/><br/>
Nombre de jours de gel (<0C) : <xsl:value-of select="nb-days-of-freeze"/><br/>
Nombre de jour de forte chaleur (>30C) : <xsl:value-of select="nb-days-of-heat"/><br/>
Nombre de nuit tropicales (>20C) : <xsl:value-of select="nb-tropical-nights"/>
</td>
</tr>

</table>
<br/>

<table width="100%">
<tr>
<th scope="col" style="padding-right:10px;padding-left:10px;">
<img src="../../temperature.jpg" width="32" height="32" />
</th>
<th width="100%" scope="col">
<div class="stats-subtitle">
Pression - Humidité - Température
</div>
</th>
</tr>
</table>

<table width="100%">
<tr>
<td></td>
<td class="stats-item">Min</td>
<td class="stats-item">Max</td>
<td class="stats-item">Moyenne</td>
<td class="stats-item">Taux max (/h)</td>
</tr>
<tr>
<td class="stats-item-col">Température ext.</td>
<td class="stats-cell"><xsl:value-of select="outdoor_temperature/min"/>
<div class="stats-date"><xsl:value-of select="outdoor_temperature/min-date-text"/></div></td>
<td class="stats-cell"><xsl:value-of select="outdoor_temperature/max"/>
<div class="stats-date"><xsl:value-of select="outdoor_temperature/max-date-text"/></div></td>
<td class="stats-cell"><xsl:value-of select="outdoor_temperature/mean"/></td>
<td class="stats-cell">
<table width="100%" span="2">
<tr>
<td style="text-align: center;"><xsl:value-of select="outdoor_temperature/max-pos-rate"/>
<div class="stats-date"><xsl:value-of select="outdoor_temperature/max-pos-rate-date-text"/></div></td>
<td style="text-align: center;"><xsl:value-of select="outdoor_temperature/max-neg-rate"/>
<div class="stats-date">
<xsl:value-of select="outdoor_temperature/max-neg-rate-date-text"/>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="stats-item-col">Température MINI. et MAXI. sur la période</td>
<td class="stats-cell">
<xsl:value-of select="tn-min"/>
<div class="stats-date">
<xsl:value-of select="tn-min-date-text"/>
</div>
</td>
<td class="stats-cell">
<xsl:value-of select="tx-max"/>
<div class="stats-date">
<xsl:value-of select="tx-max-date-text"/>
</div>
</td>
<td class="stats-cell">-</td>
<td class="stats-cell">-</td>
</tr>
<tr>
<td class="stats-item-col">Pression</td>
<td class="stats-cell"><xsl:value-of select="relative_pressure/min"/>
<div class="stats-date"><xsl:value-of select="relative_pressure/min-date-text"/></div></td>
<td class="stats-cell"><xsl:value-of select="relative_pressure/max"/>
<div class="stats-date"><xsl:value-of select="relative_pressure/max-date-text"/></div></td>
<td class="stats-cell"><xsl:value-of select="relative_pressure/mean"/></td>
<td class="stats-cell">
<table width="100%" span="2">
<tr>
<td style="text-align: center;">
<xsl:value-of select="relative_pressure/max-pos-rate"/>
<div class="stats-date">
<xsl:value-of select="relative_pressure/max-pos-rate-date-text"/>
</div>
</td>
<td style="text-align: center;">
<xsl:value-of select="relative_pressure/max-neg-rate"/>
<div class="stats-date">
<xsl:value-of select="relative_pressure/max-neg-rate-date-text"/>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="stats-item-col">Humidité</td>
<td class="stats-cell"><xsl:value-of select="outdoor_humidity/min"/></td>
<td class="stats-cell"><xsl:value-of select="outdoor_humidity/max"/></td>
<td class="stats-cell"><xsl:value-of select="outdoor_humidity/mean"/></td>
<td class="stats-cell">
<table width="100%" span="2">
<tr>
<td style="text-align: center;">
<xsl:value-of select="outdoor_humidity/max-pos-rate"/>
<div class="stats-date">
<xsl:value-of select="outdoor_humidity/max-pos-rate-date-text"/>
</div>
</td>
<td style="text-align: center;">
<xsl:value-of select="outdoor_humidity/max-neg-rate"/>
<div class="stats-date">
<xsl:value-of select="outdoor_humidity/max-neg-rate-date-text"/>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br/>
<img>
<xsl:attribute name="src">
../<xsl:value-of select="@month"/>/graph-month-1.png
</xsl:attribute>
</img>
<br/>
<br/>
<table width="100%">
<tr>
<th scope="col" style="padding-right:10px;padding-left:10px;">
<img src="../../rainfall.jpg" width="32" height="32" />
</th>
<th width="100%" scope="col">
<div class="stats-subtitle">
Précipitations
</div>
</th>
</tr>
</table>

<table width="100%">
<tr>
<td class="stats-item-col">Total des précipitations </td>
<td class="stats-cell">
<xsl:value-of select="total-rainfall"/>
</td>
</tr>
<tr>
<td class="stats-item-col">Précipitations max sur 1h</td>
<td class="stats-cell">
<xsl:value-of select="rainfall_1h/max"/>
<div class="stats-date">
<xsl:value-of select="rainfall_1h/max-date-text"/>
</div>
</td>
</tr>
<tr>
<td class="stats-item-col">Précipitations max sur 24h</td>
<td class="stats-cell">
<xsl:value-of select="rainfall_24h/max"/>
<div class="stats-date">
<xsl:value-of select="rainfall_24h/max-date-text"/>
</div>
</td>
</tr>
</table>
<br/>
<img>
<xsl:attribute name="src">
../<xsl:value-of select="@month"/>/graph-month-2.png
</xsl:attribute>
</img>
<br/>
<br/>
<table width="100%" >
<tr>
<th scope="col" style="padding-right:10px;padding-left:10px;">
<img src="../../wind.png" width="32" height="32" />
</th>
<th width="100%" scope="col">
<div class="stats-subtitle">
Vent
</div>
</th>
</tr>
</table>

<table width="100%">
<tr>
<td></td>
<td class="stats-item">Max</td>
<td class="stats-item">Moyenne</td>
</tr>
<tr>
<td class="stats-item-col">Vitesse moyenne sur 1 heure (les rafales ne sont pas prise en compte, mais on peut les estimer au double de la vitesse maxi.)</td>
<td class="stats-cell"><xsl:value-of select="wind_speed/max"/>
<div class="stats-date"><xsl:value-of select="wind_speed/max-date-text"/></div></td>
<td class="stats-cell"><xsl:value-of select="wind_speed/mean"/></td>
</tr>
<tr>
<td colspan="3" class="stats-cell" style="text-align:left;">Direction moyenne : <xsl:value-of select="wind_direction/mean"/>
</td>
</tr>
</table>
<img>
<xsl:attribute name="src">
../<xsl:value-of select="@month"/>/graph-month-4.png
</xsl:attribute>
</img>
<br/>
<img>
<xsl:attribute name="src">
../<xsl:value-of select="@month"/>/graph-month-3.png
</xsl:attribute>
</img>


</body>
</html>
</xsl:template>
</xsl:stylesheet>
Station WMR 200 avec XNet_meteo V 2014-10-29a Logiciels:Graphweather V 3.0.16, Noaa Template2, Windows 7
Mon abri météo ici :http://www.vardecouverte.fr/sta%20bc2008.htm
Site Web : http://www.vardecouverte.fr
Image
Avatar de l’utilisateur
chris_01
Membre
Messages : 141
Inscription : mer. oct. 29, 2008 11:34 pm
Localisation : Bruxelles

Re: Statistiques mensuelle vent/direction en bargraph

Message par chris_01 »

et il met quoi à la place du graph dans les stats?

si il apparait dans par ex : stats/2009/03, cela ne peut qu'être le fichier month

n'oublie pas de faire "regénerer les stats" meme si cela prend du temps
Davis Vantage Pro 2 (une non-câblée à Bruxelles, une câblée à Grimentz (1710m, VS) depuis décembre 2015. Datalogger usb, Cumulus et Weatherlink
Anciennement
WMR200; Xnet_météo v2011-10-14a (entre 2014 et 2015) + données de 2008 à 2013 en txt, format WD;
Graphweather v3.0.15 ;
Deux minipc Beebox de ASRock sous Windows 10 gèrent WL et GW.

Image Image
Avatar de l’utilisateur
jturlier
Membre
Messages : 3149
Inscription : mar. août 22, 2006 8:38 am
Localisation : 34410 Sérignan - Languedoc
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par jturlier »

Bonsoir Magnuss,
je ne comprends pas où est le problème, les 2 graphes apparaissent sur les affichages mensuels : histogramme vert pomme pour les vents et radar pour les directions. Par contre il n'y a rien sur les statistiques annuelles. Pouvez vous donner le lien où on peut voir le pb ?
Le second point (démarrage le 27 février) semble être dû à un cookie non effacé, sur ma machine j'affiche bien le mois de mars au démarrage.
Cordialement

Jean
Avatar de l’utilisateur
MAGNUS
Membre
Messages : 992
Inscription : dim. mars 26, 2006 4:44 pm
Localisation : VIDAUBAN (83) FRANCE
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par MAGNUS »

jturlier a écrit :Bonsoir Magnuss,
je ne comprends pas où est le problème, les 2 graphes apparaissent sur les affichages mensuels : histogramme vert pomme pour les vents et radar pour les directions. Par contre il n'y a rien sur les statistiques annuelles. Pouvez vous donner le lien où on peut voir le pb ?
Le second point (démarrage le 27 février) semble être dû à un cookie non effacé, sur ma machine j'affiche bien le mois de mars au démarrage.
Cordialement

Jean
Bonjour à tous et merci de vos réponses.
Pour ce qui est du graph vent, il ne figure que dans les données mensuelles.
je ne comprends pas que je ne puisse voir ce graph vent sur mon site (sur chaque page: cliquer sur la banderole :Calendrier des Stats).
Si vous, vous le voyez, alors là mystère !
Station WMR 200 avec XNet_meteo V 2014-10-29a Logiciels:Graphweather V 3.0.16, Noaa Template2, Windows 7
Mon abri météo ici :http://www.vardecouverte.fr/sta%20bc2008.htm
Site Web : http://www.vardecouverte.fr
Image
Avatar de l’utilisateur
MAGNUS
Membre
Messages : 992
Inscription : dim. mars 26, 2006 4:44 pm
Localisation : VIDAUBAN (83) FRANCE
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par MAGNUS »

RE Bonjour,
Je crois avoir trouvé le Pb:
Sur mon site, dans le dossier Statistics, il y avait un fichier Thumbs.db que j'ai supprimé et tout est rentré dans l'ordre.
Merci encore de votre aide.
Cordialement.
Station WMR 200 avec XNet_meteo V 2014-10-29a Logiciels:Graphweather V 3.0.16, Noaa Template2, Windows 7
Mon abri météo ici :http://www.vardecouverte.fr/sta%20bc2008.htm
Site Web : http://www.vardecouverte.fr
Image
Avatar de l’utilisateur
Gigi600
Membre
Messages : 93
Inscription : jeu. nov. 06, 2008 11:58 pm
Localisation : Sacile-PN-Italy
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par Gigi600 »

Ciao
Vento Mese

Code : Tout sélectionner

<?xml version="1.0" encoding="iso-8859-1" ?>
<stylesheet>
<image width="900" height="150" />
<frame width="900" height="150" position-x="0" position-y="0" shadow="0">
<title text="" alignement="3" angle="0">
<font color="FF000000" facename="Arial" size="14" weight="400" italic="0" />
</title>
<background color1="FFDDDDFF" color2="FFFFFFFF" gradient="0" gradient-direction="135" stretch="1" />
<border cornerradius="0" color="55555555" thick="1" />
</frame>
<!-- ================= Bargraph ================= -->
<bargraph width="900" height="120" shadow="0" position-x="0" position-y="35" margin-top="0" margin-right="40" margin-bottom="30" margin-left="40">
<xaxis color="FF000000" grid="1" autoscale="1" min="0" max="0">
<labels labelinterval="1" angle="0" side="left" hide="0 ">
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</labels>
<ticks majorticks="1" minorticks="0" side="bottom" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</xaxis>
<y1axis color="FF000000" grid="1" autoscale="1" min="0" max="0" y-base="0.0" titleside="left" titlemargin="25">
<title text="Velocità (km/h)" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labelinterval="1" angle="0" format=".0" side="left" hide="0" >
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</labels>
<ticks majorticks="5" minorticks="0" side="left" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</y1axis>
<y2axis side="right" color="FF000000" grid="0" autoscale="0" min="0" max="360" y-base="0.0" titleside="right" titlemargin="25">
<title text="Direzione" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labels="N;E;S;O;N" labelinterval="1" angle="0" side="right" hide="0" >
<font color="FF000000" facename="Arial" size="16" weight="400" italic="0" />
</labels>
<ticks majorticks="5" minorticks="0" side="right" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</y2axis>
<data>
<stats_month_truemean_wind_speed axisbind="y1axis" legend="Velocità media" color1="FFAAFFAA" color2="FF008000" gradient="horizontal" antialiasing="1" filled="1" />
<stats_month_max_wind_speed axisbind="y1axis" legend="Velocità Massima" color1="FFAAAAFF" color2="FF0000FF" gradient="horizontal" antialiasing="1" filled="1" />
<stats_month_truemean_wind_direction axisbind="y2axis" legend="Direzione Prevalente"  color1="FFDD7700" color2="FF882200" gradient="horizontal" antialiasing="1" filled="1" />
</data>
<legend orientation="0" margin="3" width="714" position-x="0" position-y="0" hide="0" shadow="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
      <border cornerradius="0" color="55555555" thick="1" />
      <background color1="FFBBBBFF" color2="FFFFFFFF" gradient="1" gradient-direction="90"/>
</legend>
<graphbackground color1="FFCCCCFF" color2="FFFFFFFF" gradient="1" gradient-direction="90" />
</bargraph>

  <!-- ================= Textbox =================  -->
  <textbox width="130" height="30" shadow="0" position-x="580" position-y="00" margin="4" >
    <text alignement="center|top">
      <line text="SacileMeteo $StartDate[%m / %Y]"/>
    </text>
  </textbox>
</stylesheet>
Vous ne pouvez pas consulter les pièces jointes insérées à ce message.
Davis 6153 + WS 2300
GraphWeather Version 2.0.321 -Webcam Canon G 2
http://www.sacilemeteo.it
Avatar de l’utilisateur
Gigi600
Membre
Messages : 93
Inscription : jeu. nov. 06, 2008 11:58 pm
Localisation : Sacile-PN-Italy
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par Gigi600 »

Vento Anno

Code : Tout sélectionner

<?xml version="1.0" encoding="iso-8859-1" ?>
<stylesheet>
	<image width="900" height="150" />
	<frame width="900" height="150" position-x="0" position-y="0" shadow="0">
		<title text="" alignement="3" angle="0">
			<font color="FF000000" facename="Arial" size="14" weight="400" italic="0" />
		</title>
		<background color1="FFDDDDFF" color2="FFFFFFFF" gradient="0" gradient-direction="135" stretch="1" />
    <border cornerradius="0" color="55555555" thick="1" />
	</frame>
	<!-- ================= First Lineplot ================= -->
	<bargraph width="880" height="120" shadow="0" position-x="0" position-y="35" margin-top="0" margin-right="20" margin-bottom="30" margin-left="40">
		<xaxis color="FF000000" grid="1" autoscale="0" min="0" max="0">
			<labels labels="Gennaio;Febbraio;Marzo;Aprile;Maggio;Giugno;Luglio;Agosto;Settembre;Ottobre;Novembre;Dicembre" labelinterval="1" angle="0"  side="left" hide="0">
				<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
			</labels>
<ticks majorticks="1" minorticks="0" side="bottom" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</xaxis>
<y1axis color="FF000000" grid="1" autoscale="1" min="0" max="0" y-base="0.0" titleside="left" titlemargin="25">
<title text="Velocità (km/h)" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labelinterval="1" angle="0" format=".0" side="left" hide="0" >
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</labels>
			<ticks majorticks="5" minorticks="1" side="left" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
		</y1axis>
		<y2axis side="right" color="FF000000" grid="0" autoscale="0" min="0" max="360" y-base="0.0" titleside="right" titlemargin="25">
<title text="Direzione" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labels="N;E;S;O;N" labelinterval="1" angle="0" side="right" hide="0" >
<font color="FF000000" facename="Arial" size="16" weight="400" italic="0" />
</labels>
<ticks majorticks="5" minorticks="0" side="right" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</y2axis>
             <data>
			  <stats_year_truemean_wind_speed axisbind="y1axis" legend="Velocità Media" color1="FFAAFFAA" color2="FF008000" gradient="horizontal" antialiasing="1" filled="1" />
            <stats_year_max_wind_speed axisbind="y1axis" legend="Velocità Massima" color1="FFAAAAFF" color2="FF0000FF" gradient="horizontal" antialiasing="1" filled="1" />
           <stats_year_truemean_wind_direction axisbind="y2axis" legend="Media Direzione"  color1="FFDD7700" color2="FF882200" gradient="horizontal" antialiasing="1" filled="1" />
            </data>
		<legend orientation="0" margin="3" width="550" position-x="0" position-y="0" hide="0" shadow="0">
      <font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
      <border cornerradius="0" color="55555555" thick="1" />
      <background color1="FFBBBBFF" color2="FFFFFFFF" gradient="1" gradient-direction="90"/>
    </legend>
    <graphbackground color1="FFCCCCFF" color2="FFFFFFFF" gradient="1" gradient-direction="90" />
	</bargraph>
		<!-- ================= Textbox =================  -->
  <textbox width="100" height="30" shadow="0" position-x="450" position-y="00" margin="4" >
    <text alignement="center|top">
      <line text="SacileMeteo $StartDate[ %Y]"/>
    </text>
  </textbox>
</stylesheet>
Vous ne pouvez pas consulter les pièces jointes insérées à ce message.
Davis 6153 + WS 2300
GraphWeather Version 2.0.321 -Webcam Canon G 2
http://www.sacilemeteo.it
Avatar de l’utilisateur
laulau
Membre
Messages : 405
Inscription : mar. mars 03, 2009 8:39 pm
Localisation : 42400
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par laulau »

Bonjour
Pas mal vos graphiques, serait il possible de les avoirs en Français ??

Cordialement.
Vantage-Vue :D WeatherLink 6.0.3 / Graphweather V3.0.35 avec plugin VantagePro / Cumulus 1.9.4 /Win 10
http://www.st-chamond-meteo.fr

ImageImage
Avatar de l’utilisateur
Gigi600
Membre
Messages : 93
Inscription : jeu. nov. 06, 2008 11:58 pm
Localisation : Sacile-PN-Italy
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par Gigi600 »

laulau a écrit :Bonjour
Pas mal vos graphiques, serait il possible de les avoirs en Français ??

Cordialement.

Bonjour
Il y mai être des erreurs Delgi ne pas bien écrire en français

Gigi


Code : Tout sélectionner

<?xml version="1.0" encoding="iso-8859-1" ?>
<stylesheet>
   <image width="900" height="150" />
   <frame width="900" height="150" position-x="0" position-y="0" shadow="0">
      <title text="" alignement="3" angle="0">
         <font color="FF000000" facename="Arial" size="14" weight="400" italic="0" />
      </title>
      <background color1="FFDDDDFF" color2="FFFFFFFF" gradient="0" gradient-direction="135" stretch="1" />
    <border cornerradius="0" color="55555555" thick="1" />
   </frame>
   <!-- ================= First Lineplot ================= -->
   <bargraph width="880" height="120" shadow="0" position-x="0" position-y="35" margin-top="0" margin-right="20" margin-bottom="30" margin-left="40">
      <xaxis color="FF000000" grid="1" autoscale="0" min="0" max="0">
         <labels labels="Janvier;Février;Mars;Avril;Mai;Juin;Juillet;Août;Septembre;Octobre ;Novembre;Décembre" labelinterval="1" angle="0"  side="left" hide="0">
            <font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
         </labels>
<ticks majorticks="1" minorticks="0" side="bottom" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</xaxis>
<y1axis color="FF000000" grid="1" autoscale="1" min="0" max="0" y-base="0.0" titleside="left" titlemargin="25">
<title text="Vitesse (km/h)" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labelinterval="1" angle="0" format=".0" side="left" hide="0" >
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</labels>
         <ticks majorticks="5" minorticks="1" side="left" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
      </y1axis>
      <y2axis side="right" color="FF000000" grid="0" autoscale="0" min="0" max="360" y-base="0.0" titleside="right" titlemargin="25">
<title text="Direction" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
</title>
<labels labels="N;E;S;O;N" labelinterval="1" angle="0" side="right" hide="0" >
<font color="FF000000" facename="Arial" size="16" weight="400" italic="0" />
</labels>
<ticks majorticks="5" minorticks="0" side="right" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</y2axis>
             <data>
           <stats_year_truemean_wind_speed axisbind="y1axis" legend="Vitesse Moyenne" color1="FFAAFFAA" color2="FF008000" gradient="horizontal" antialiasing="1" filled="1" />
            <stats_year_max_wind_speed axisbind="y1axis" legend="Vitesse Maximale" color1="FFAAAAFF" color2="FF0000FF" gradient="horizontal" antialiasing="1" filled="1" />
           <stats_year_truemean_wind_direction axisbind="y2axis" legend="Moyenne Direction"  color1="FFDD7700" color2="FF882200" gradient="horizontal" antialiasing="1" filled="1" />
            </data>
      <legend orientation="0" margin="3" width="600" position-x="0" position-y="0" hide="0" shadow="0">
      <font color="FF000000" facename="Arial" size="16" weight="400" italic="1" />
      <border cornerradius="0" color="55555555" thick="1" />
      <background color1="FFBBBBFF" color2="FFFFFFFF" gradient="1" gradient-direction="90"/>
    </legend>
    <graphbackground color1="FFCCCCFF" color2="FFFFFFFF" gradient="1" gradient-direction="90" />
   </bargraph>
      <!-- ================= Textbox =================  -->
  <textbox width="150" height="30" shadow="0" position-x="450" position-y="00" margin="4" >
    <text alignement="center|top">
      <line text=".st-chamond-meteo $StartDate[ %Y]"/>
    </text>
  </textbox>
</stylesheet>
Vous ne pouvez pas consulter les pièces jointes insérées à ce message.
Davis 6153 + WS 2300
GraphWeather Version 2.0.321 -Webcam Canon G 2
http://www.sacilemeteo.it
Avatar de l’utilisateur
laulau
Membre
Messages : 405
Inscription : mar. mars 03, 2009 8:39 pm
Localisation : 42400
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par laulau »

Merci :D :D :D
Laurent
Vantage-Vue :D WeatherLink 6.0.3 / Graphweather V3.0.35 avec plugin VantagePro / Cumulus 1.9.4 /Win 10
http://www.st-chamond-meteo.fr

ImageImage
Avatar de l’utilisateur
david36
Membre
Messages : 31
Inscription : ven. sept. 11, 2009 9:50 am
Localisation : Belgique
Contact :

Re: Statistiques mensuelle vent/direction en bargraph

Message par david36 »

bonjour,

j'ai copié le code en français, et il y a un bugg d'affichage sur la date dans le oin droit supérieur.

Image

Comment corrigé cela ?

merci.

David.
Davis VP II / WeatherLink + GW

Image

Météo La Louvière : CliC
Répondre