Page 1 of 1

Cumulative Rain Graphs

Posted: Sat Jun 05, 2010 6:40 am
by admin
By adding parameter "scumul" to a sensor definition, you can make graphs that don't use values of each time bucket but does adding up these over the whole selected period of time. This can be useful to generate stairway graphs for total rainfall.

Code: Select all

Definition "_rain-1month" does also use this feature now:
timeframe=3M    # set total time frame to 3 days before today until today
zoom=1M            # select actual month 
res=day1           # get data per day

gtitle=Rain        # name of graph
gheight=400       # height in pixels of graph
gwidth=550         # width in pixels of graph
glunit=mm            # unit of left y-axis
grunit=mm            # unit of right y-axis
gtype=bar          # type of graph
gtrim=0         

sid0=rain0 scolor0=AADDFF  sfill0=50 sline0=100 sname0=rain_fall ssel0=total    # sensor 0, rainfall
sid1=rain0 scolor1=0000FF syaxis1=r stype1=step sname1=total_rain_fall ssel1=total scumul1=1    # sensor 0, total rainfall as stepped curve

Re: Cumulative Rain Graphs

Posted: Sun Jun 06, 2010 12:13 pm
by benz
Das ist toll! Ich bin nun daran die Grafik entsprechend anzupassen. Die Lösung sieht alleweil vielversprechend aus! Danke dafür.

Gruss benz

Re: Cumulative Rain Graphs

Posted: Thu Aug 12, 2010 12:12 pm
by bubulino
Salü Benz

Hast Du das hingekriegt "mit scumul"?

Ich habe mal mit der Auflösung gespielt (1h) schaut etwas besser aus.
Und das Timeframe muss man auf 1month setzen, dann stimmt die Gesamtregenmenge pro Monat

Grüsse

Kusi

Code: Select all

timeframe=1M   # set total time frame to 3 days before today until today
zoom=1M            # select actual day 
res=hour1         # get data per hout

gtitle=Regen        # name of graph
gheight=400       # height in pixels of graph
gwidth=700         # width in pixels of graph
glunit=mm            # unit of left y-axis
grunit=mm            # unit of right y-axis
gtype=bar          # type of graph
gtrim=0         

sid0=rain0 
  scolor0=AADDFF  
  sfill0=50 
  sline0=100 
  sname0=Regen_pro_Stunde
  ssel0=total   
  # sensor 0, rainfall

sid1=rain0 
  scolor1=0000FF 
  syaxis1=r 
  stype1=step 
  sname1=Gesamtregen_Jahr_(Achtung_unvollständiges_Jahr)
  ssel1=total
  scumul1=1    
  # sensor 0, rainfall as stepped curve



Re: Cumulative Rain Graphs

Posted: Tue Aug 17, 2010 2:20 pm
by benz
Hallo Kusi

Ich habe deine Antwort erst jetzt gesehen. Ja, ich habe gemerkt, dass man die Auflösung nun feiner einstellen kann. Das ist super. So kann man wirklich gute Grafiken machen, die zeigen, wie stark der Regenfall war. Toll!

Ich bin nun daran, die Temperatur des diesjährigen Sommers zu erstellen. Der August ist ja bald vorbei, dann muss ich parat sein, dass dann richtig über den Sommer 2010 gewettert werden kann! ;-)

Viele Grüsse
Bruno