Re: [weewx-user] Number of days on which the average Temperature was above a certain value

2020-05-17 Thread Rolf Zanchettin

>
> Hey, Tom,
>>
>> i have installed the extension and it works perfectly!
>>
>>  Thanks a lot .

Best regards
Rolf 

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/d11aae69-c401-4af6-a94b-9d02105479d2%40googlegroups.com.


[weewx-user] Re: NOAA Reports not corrcet - Belchertown

2020-05-16 Thread Rolf Zanchettin
Hello,

i have the same problem.
Any advice?

Thanks in advance
Best regards
Rolf

Am Freitag, 15. Mai 2020 17:49:30 UTC+2 schrieb Dirk:
>
> I still have this problem.
> All reports are generated and uploaded to the Server, but only 2 of them 
> are to see on the webpage.
> Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/a38712c6-5e2c-49fe-a4d3-d8b2a55a80f2%40googlegroups.com.


[weewx-user] Re: Belchertown skin 1.1 released!

2020-05-15 Thread Rolf Zanchettin
Hi Pat,

first of all a big thanks for your aweseome Belchertown skin.
I have adapted the skin slightly and created a new section to include 
between the header and the station info. For this i have extended the 
"index.html.tmpl" and the "skin.conf" accordingly. This works very well so 
far.

Is there a possibility to reload not only the images (reload_hook_images = 
1) that are included in the .inc files, but also the HTML/text contained in 
the .inc files?

I think i have to modify the function "ajaximages()" in 
"js/belchertown.js.tmpl" to achieve this?

Thanks in advance
Best regards
Rolf

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/da8b1fb3-f821-4e90-8e65-d766eb074c99%40googlegroups.com.


Re: [weewx-user] Number of days on which the average Temperature was above a certain value

2020-05-15 Thread Rolf Zanchettin

Hi Tom,

thanks for the reply. 
That would be awesome :-)

Best regards
Rolf

Am Donnerstag, 14. Mai 2020 20:45:04 UTC+2 schrieb Tom Keffer:
>
> Nope. Not possible with the present version of xtypes. 
>
> But, it's given me some ideas on how to modify xtypes to make it possible. 
> Maybe in v4.0.1.
>
> On Thu, May 14, 2020 at 8:37 AM Tom Keffer > 
> wrote:
>
>> There is a 'max_ge()' aggregation, but, unfortunately, no 'avg_ge()'. It 
>> could be added via the xtypes 
>> <https://github.com/weewx/weewx/wiki/WeeWX-V4-user-defined-types> 
>> facility, but it would require some clever Python programming.
>>
>> Let me think about that...
>>
>> -tk
>>
>>
>>
>> On Thu, May 14, 2020 at 6:22 AM Rolf Zanchettin > > wrote:
>>
>>> Hello,
>>>
>>> I would like to display the number of days on which the average 
>>> Temperature was greater or equal 5° C.
>>> How can I achieve this?
>>>
>>>
>>> Thanks in advance
>>> Best regards, Rolf
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "weewx-user" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to weewx...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/weewx-user/d1a3130c-d00b-4eb2-8d09-44a36d27e35f%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/weewx-user/d1a3130c-d00b-4eb2-8d09-44a36d27e35f%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/41084e16-e757-45e2-8e40-85e0f1204e06%40googlegroups.com.


[weewx-user] Number of days on which the average Temperature was above a certain value

2020-05-14 Thread Rolf Zanchettin
Hello,

I would like to display the number of days on which the average Temperature 
was greater or equal 5° C.
How can I achieve this?


Thanks in advance
Best regards, Rolf

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/d1a3130c-d00b-4eb2-8d09-44a36d27e35f%40googlegroups.com.


Re: [weewx-user] Output the number of days on which the gust speed was above a certain value

2020-05-10 Thread Rolf Zanchettin
Hey Tom,

many thanks for the clarification.

Best regards, Rolf

Am Sonntag, 10. Mai 2020 18:39:44 UTC+2 schrieb Tom Keffer:
>
> The argument to max_ge() is actually a *ValueTuple*, which has 3 
> elements. So, you want *$year.windGust.max_ge((62.0, "km_per_hour", 
> group_speed))*.
>
> Way back in the distant past (may have been version 1.0!), ValueTuples had 
> only 2 elements. So, to maintain backwards compatibility with NOAA 
> templates, 2-element ValueTuples are accepted, but only for temperature and 
> rain units, not wind speed.
>
> -tk
>
> On Sun, May 10, 2020 at 6:40 AM Rolf Zanchettin  > wrote:
>
>> Hello,
>>
>> I would like to display the number of days on which the speed of the 
>> gusts was above 62 km/h:
>>
>> *$year.windGust.max_ge((62.0, "km_per_hour"))*
>>
>> However, the code throws the following error --> 
>>
>> Generate failed with exception ''
>> Reason: tuple index out of range
>>
>> What am I doing wrong?
>>
>> Thanks in advance
>> Best regards, Rolf
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "weewx-user" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to weewx...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/9a857330-9e38-49c4-8c7c-fc857be47cb7%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/9a857330-9e38-49c4-8c7c-fc857be47cb7%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9ff50789-c848-4270-995b-45747d466d1e%40googlegroups.com.


[weewx-user] Output the number of days on which the gust speed was above a certain value

2020-05-10 Thread Rolf Zanchettin
Hello,

I would like to display the number of days on which the speed of the gusts 
was above 62 km/h:

*$year.windGust.max_ge((62.0, "km_per_hour"))*

However, the code throws the following error --> 

Generate failed with exception ''
Reason: tuple index out of range

What am I doing wrong?

Thanks in advance
Best regards, Rolf

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9a857330-9e38-49c4-8c7c-fc857be47cb7%40googlegroups.com.


[weewx-user] UV Index and radiation calculated by software

2019-06-28 Thread Rolf Zanchettin
Hi all,

unfortunately my weather station does not have a UV and solar radiation 
sensor. Is it possible to calculate the values by weewx, based on lat/lng?

Thanks in advance
Best regards
Rolf

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/ff8d2bfc-1152-40d7-b294-cfeb9377290b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.