[weewx-user] Re: maximum wind gust over fifteen minutes

2017-10-01 Thread Andrew Milner
glad to have been of some help, even if I only got you the max gust speed with an average gust direction!! On Sunday, 1 October 2017 13:59:44 UTC+3, Nicolas Cazan wrote: > What an idiot I had not seen, it's perfect, everything works, thank you > again. > > Le dimanche 1 octobre 2017 03:10:18

[weewx-user] Re: maximum wind gust over fifteen minutes

2017-09-30 Thread Andrew Milner
shouldn't it be $span($time_delta=900).windGustDir.avg.ordinal_compass possibly $span($time_delta=900).windGustDir.avg.ordinal_compass.formatted why not just try them, and see if they work On Saturday, 30 September 2017 23:39:33 UTC+3, Nicolas Cazan wrote: > ok, so if I do > > $span($time_d

[weewx-user] Re: maximum wind gust over fifteen minutes

2017-09-30 Thread Andrew Milner
I think that if you are trying to get the direction which corresponds to the gust you are asking too much from cheetah. This is beginning to look more like an sql issue rather than a reporting issue. The template has retrieved the gust, but not the time of that gust which you would need to be

[weewx-user] Re: maximum wind gust over fifteen minutes

2017-09-30 Thread Andrew Milner
If you want the max wind gust in the previous 15 minutes shouldn't it be something like $span($time_delta=900).windGust.max.formatted or for the average $span($time_delta=900).windGust.avg.formatted On Saturday, 30 September 2017 10:01:50 UTC+3, Nicolas Cazan wrote: > realtime="rainheuretest"

[weewx-user] Re: maximum wind gust over fifteen minutes

2017-09-29 Thread gjr80
Hi, If you look carefully at the $span documentation you will see that you have an error in your syntax. Your post suggests you are using: > $span ($time_delta = 900) > windGust.formatted > The correct $span syntax in your case is: $span($time_delta=900).windGust.formatted The spaces a