[weewx-user] Re: Backfill missing data from Ecowitt

2023-12-24 Thread Auchtermuchty Weather
I also am interested in how I can backfill.

On Thursday 16 November 2023 at 12:21:12 UTC michael.k...@gmx.at wrote:

> I have some Ecowitt hardware: several sensors, a HP2550_C and a GW2000.
>
> I use the GW2000 with weewx, it also transmits to ecowitt.net, 
> the HP2550_C is only used with ecowitt.net. The GW2000 missed some data 
> from the wind sensor, both, my weewx graphs an ecowitt.net are missing 
> these readings at the time the the GW2000 couldn't receive the data from 
> the sensor. For the HP2550_C, both, the values in the device and 
> ecowitt.net contain this data. Apart from the problem, that the GW2000 
> isn't located perfectly to receive the signals from the sensor, what is the 
> best approach to get this missing data in?
>
> Once before I did this manually (Update DB with the missing readings, calc 
> missing and rebuild daily for the particular day)
>
> Is there a tool for this?
>
> I also was thinking of using both devices as a data source. This should 
> work with the Interceptor driver and the Ecowitt gateway driver as a 
> service... anyone with a setup like this here?
>

-- 
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/d558d1d3-6217-47cc-8dce-d393204a0961n%40googlegroups.com.


Re: [weewx-user] Fine Offset WH1080 Transmitter Spare or New WS?

2023-12-24 Thread Auchtermuchty Weather
I replaced mine with a 'Waldbeck Halley' which is a WH2650 clone. More 
robust sensors, it has a tiny solar panel so no changing of batteries, and 
no need to run a USB cable from the base station to the Pi. It uses the 
GW1000 driver, and the base station connects via wifi to your home network.

On Tuesday 12 December 2023 at 09:26:48 UTC Keir Wayman wrote:

> Thanks for the link, unfortunately that item does not mention the DCF 
> clock so it will not work properly with my station.  
> On 12/12/2023 01:58, kufuu wrote:
>
> This should be the replacement sensor,
>
>
> https://www.aliexpress.us/item/2252799815567447.html?spm=a2g0o.detail.114.1.9cf26ff0KgmCx0=pcDetailBottomMoreOtherSeller=1007.40050.362094.0_id=1007.40050.362094.0=1007.40050.362094.0=1c2a5fb3-0365-46b2-befa-1f64543fbb3f&_t=gps-id:pcDetailBottomMoreOtherSeller,scm-url:1007.40050.362094.0,pvid:1c2a5fb3-0365-46b2-befa-1f64543fbb3f,tpp_buckets:668%232846%238116%232002_npi=4%40dis%21USD%2122.38%2115.89%21%21%2122.38%21%21%402103250717023460875403140e1224%2159788193806%21rec%21US%21%21AB
>
> On Sunday, December 10, 2023 at 2:10:17 PM UTC-5 Cancunia wrote:
>
>> Thanks for the link.
>>
>> On Sunday 10 December 2023 at 18:36:08 UTC Mark Fraser wrote:
>>
>>> On 09/12/2023 09:39, Cancunia wrote: 
>>> > My Clas Ohlson branded WH1080 transmitter has finally given up. I've 
>>> had 
>>> > a quick search around and can't see any spares other than a Chinese 
>>> > source on eBay so I'm wondering if it's time for a new station. 
>>> > Does anyone have suggestions for a good value weather station that's 
>>> > available in the UK? 
>>> > 
>>> > Thanks 
>>>
>>> Have you tried looking at https://greenfrogscientific.co.uk/ ? They do 
>>> sometimes stock spare transmitters. 
>>>
>>> -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "weewx-user" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/weewx-user/v7TBJD_ksng/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> weewx-user+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/d7733086-a149-4d07-b04b-5e50d1586bb0n%40googlegroups.com
>  
> 
> .
>
>

-- 
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/d5720082-3870-4345-9707-5107f63c183dn%40googlegroups.com.


Re: [weewx-user] Wind Color Belchertown

2022-06-28 Thread Auchtermuchty Weather
As a general note, 'if . else if .' should finish with 'else', not 
'else if'.  With my previous weather station I got some strange readings, 
and your code - ending in 'else if' rather than 'else' - wouldn't match 
some values leading to deformed HTML being generated.


On Monday, 23 May 2022 at 22:20:02 UTC+1 Jim Munro wrote:

> I played around a bit with this code for wind colors in the Belchertown 
> skin.  I too had some difficulty with the colors and made a few changes.  
> Please see snippet below.  I basically had to reverse order the if/else if 
> code to put the higher wind speed first because the else if would always 
> stop a the first >= and not go any further.  Your windSpeeds/windGusts and 
> colors may not match mine so adjust to taste.
>
> // Change the color of the Windspeed variable according to US-EPA standards
> // (adjusted to match skin colors better)
> function get_windSpeed_color(windSpeed, returnColor = false) {
> windSpeed = parseFloat(windSpeed).toFixed(1); // Convert back to 
> decimal lit
> if (windSpeed <= 1.1) {
> var windSpeed_color = "rgba(18,120,200,1)";
> } else if (windSpeed >= 24.0) {
> var windSpeed_color = "rgba(159,0,197,1)";
> } else if (windSpeed >= 18.0) {
> var windSpeed_color = "rgba(255,69,0,1)";
> } else if (windSpeed >= 12.4) {
> var windSpeed_color = "rgba(255,127,0,1)";
> } else if (windSpeed >= 7.5) {
> var windSpeed_color = "rgba(255,174,0,1)";
> } else if (windSpeed >= 3.7) {
> var windSpeed_color = "rgba(113,188,60,1)";
> } else if (windSpeed >= 1.2) {
> var windSpeed_color = "rgba(31,175,221,1)";
> }
> // Return the color value if requested, otherwise just set the div 
> color
> if (returnColor) {
> return windSpeed_color;
> } else {
> jQuery(".curwindspeed").css("color", windSpeed_color);
> }
>
> }
>
> // Change the color of the aqi variable according to US-EPA standards
> // (adjusted to match skin colors better)
> function get_windGust_color(windGust, returnColor = false) {
> windGust = parseFloat(windGust).toFixed(1); // Convert back to decimal 
> liter
> if (windGust <= 1.1) {
> var windGust_color = "rgba(18,120,200,1)";
> } else if (windGust >= 24.0) {
> var windGust_color = "rgba(159,0,197,1)";
> } else if (windGust >= 18.0) {
> var windGust_color = "rgba(255,69,0,1)";
> } else if (windGust >= 12.4) {
> var windGust_color = "rgba(255,127,0,1)";
> } else if (windGust >= 7.5) {
> var windGust_color = "rgba(255,174,0,1)";
> } else if (windGust >= 3.7) {
> var windGust_color = "rgba(113,188,60,1)";
> } else if (windGust >= 1.2) {
> var windGust_color = "rgba(31,175,221,1)";
> }
> // Return the color value if requested, otherwise just set the div 
> color
> if (returnColor) {
> return windGust_color;
> } else {
> jQuery(".curwindgust").css("color", windGust_color);
> }
> }
>
> cheers Jim
> On Tuesday, May 17, 2022 at 7:54:26 a.m. UTC-4 peterq...@gmail.com wrote:
>
>> Why are you formatting the windspeed as string and then (multiple times) 
>> converting it to float? 
>>
>> This may be unrelated to your problem.
>>
>> I do notice that the outTemp coloring is done with the string value and 
>> converted to the real value in the coloration function itself. Could the 
>> windspeed float variable be going out of scope? I don't usually write 
>> Javascript so, sorry I'm not much help.
>>
>> On Sun, May 15, 2022 at 3:24 AM Meteo Oberwallis  
>> wrote:
>>
>>> Hi Guys
>>> I have a problem with the wind color in Belchertown. I managed to 
>>> display the wind in color as well. Only it doesn't always do so after 
>>> visiting or refreshing the Belchertown page. I've attached my changes. What 
>>> could it be? I have 2 pictures attached. At view a is at page load and also 
>>> a few seconds later. At some point the color will change (see appendix b). 
>>> But that is always different.
>>>
>>> This is my Code:
>>>
>>> // Change the color of the Windspeed variable according to US-EPA 
>>> standards
>>> // (adjusted to match skin colors better)
>>> function get_windSpeed_color(windSpeed, returnColor = false) {
>>> if (windSpeed <= 0) {
>>> var windSpeed_color = "rgba(0,255,0,1)";
>>> } else if (windSpeed >= 19.9) {
>>> var windSpeed_color = "rgba(126,255,0,1)";
>>> } else if (windSpeed >= 39.9) {
>>> var windSpeed_color = "rgba(0,255,0,1)";
>>> } else if (windSpeed >= 59.9) {
>>> var windSpeed_color = "rgba(255,128,0,1)";
>>> } else if (windSpeed >= 79.9) {
>>> var windSpeed_color = "rgba(255,0,0,1)";
>>> } else if (windSpeed >= 99.9) {
>>> var windSpeed_color = "rgba(255,0,120,1)";
>>> } else if (windSpeed >= 118.0) {
>>> var windSpeed_color = "rgba(255,1,113,1)";
>>> }
>>>
>>> // Return the color value if requested, 

[weewx-user] Re: NOAA_table

2022-06-26 Thread Auchtermuchty Weather
I found the answer, which is that apparently NOAA_table = noaa_table.

On Saturday, 11 June 2022 at 07:36:46 UTC+1 Auchtermuchty Weather wrote:

> I'm struggling to understand how $NOAA_table works - how it gets called 
> from a template.  I'm looking at Belchertown and it simply has $NOAA_table 
> where the NOAA stuff is to appear.
>
> I have a DokuWiki with information from WeeWx.  Mostly it's simply as it's 
> just images, but there is a Weather & NOAA Statistics page which is 
> generated by a template.
>
> There is no problem until it comes to the NOAA stuff, and the problem 
> there is all that is in the template at present is this - the first line is 
> a DokuWiki heading:
>
> = NOAA Data =
> 
> $NOAA_table
> 
>
> And as implied, NOAA_table generates HTML.  I want to provide my own 
> version that generates DokuWiki format. 
>
> The current arrangement also leaves the links displayed with styling for 
> external links rather than links pages in the namespace.
>
> I want my own code in a new file (dokuwiki_noaa.py for example) so I don't 
> have to worry if/when I upgrade WeeWx.  I can see where the current code 
> that generates the NOAA table is, but I don't understand how it works 
> enough to change it.
>
>
>
>
>

-- 
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/0dbb3597-7205-4e45-8c6a-d25bac176c35n%40googlegroups.com.


[weewx-user] wee_reports timestamp format

2022-06-26 Thread Auchtermuchty Weather
The help is as follows:

$ wee_reports --help
Usage: wee_reports: [config_file] [timestamp] [--config=CONFIG_FILE] 
[--help]

Run all reports defined in the specified configuration file. Use this 
utility
to run reports immediately instead of waiting for the end of an archive
interval.

Options:
  -h, --helpshow this help message and exit
  --config=CONFIG_FILE  Use the configuration file CONFIG_FILE

But I have no idea, and it doesn't give a clue, nor does the documentation, 
about what format a timestamp should be in.


-- 
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/b738c268-fee9-4676-84d2-4b4a2efd996en%40googlegroups.com.


[weewx-user] NOAA_table

2022-06-11 Thread Auchtermuchty Weather
I'm struggling to understand how $NOAA_table works - how it gets called 
from a template.  I'm looking at Belchertown and it simply has $NOAA_table 
where the NOAA stuff is to appear.

I have a DokuWiki with information from WeeWx.  Mostly it's simply as it's 
just images, but there is a Weather & NOAA Statistics page which is 
generated by a template.

There is no problem until it comes to the NOAA stuff, and the problem there 
is all that is in the template at present is this - the first line is a 
DokuWiki heading:

= NOAA Data =

$NOAA_table


And as implied, NOAA_table generates HTML.  I want to provide my own 
version that generates DokuWiki format. 

The current arrangement also leaves the links displayed with styling for 
external links rather than links pages in the namespace.

I want my own code in a new file (dokuwiki_noaa.py for example) so I don't 
have to worry if/when I upgrade WeeWx.  I can see where the current code 
that generates the NOAA table is, but I don't understand how it works 
enough to change it.




-- 
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/5257ecaa-8a73-4673-ad5f-ca7e459492dcn%40googlegroups.com.


Re: [weewx-user] Problems connecting with GW1000 driver

2021-11-27 Thread Auchtermuchty Weather
All is well now.

https://muchty-weather.org.uk/weather/

On Saturday, 27 November 2021 at 09:46:33 UTC Auchtermuchty Weather wrote:

> PS from the other PI:
>
> Version: 0.3.0  Date: 20 March 2021
>
> And from the PI that now works:
>
> Version: 0.4.1  Date: 14 October 2021
>
> Revision History
> 14 October 2021 v0.4.1
> -   no change, version increment only
> 27 September 2021   v0.4.0
>
>
> On Saturday, 27 November 2021 at 09:40:25 UTC Auchtermuchty Weather wrote:
>
>> Hi Gary
>>
>> Thanks for looking at this so quickly.
>>
>> When I used WS View it wanted to update the firmware, so I did that last 
>> thing last night and Lo!  When I tried the test again this morning it 
>> connected and got data!
>>
>> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --test-driver
>> Using configuration file /home/weewx/weewx.conf
>>
>> Interrogating None at 192.168.1.162:45000
>>
>> 2021-11-27 09:29:17 GMT (1638005357): UV: 0, dateTime: 1638005357, 
>> dayRain: 0.0, daymaxwind: 8.2, inHumidity: 49, inTemp: 18.2, luminosity: 
>> 3239.0, monthRain: 28.0, outHumidity: 67, outTemp: 2.0, pressure: 1004.9, 
>> rain: None, rainRate: 0.0, relbarometer: 1091.7, stormRain: 0.0, usUnits: 
>> 17, uvradiation: 2.8, weekRain: 5.9, wh25_batt: 0, wh25_sig: 4, wh65_batt: 
>> 0, wh65_sig: 4, windDir: 31, windGust: 1.5, windSpeed: 0.8, yearRain: 585.0
>> ...
>>
>> Sorry I don't know what the previous firmware was but I brought and set 
>> this station up in late March this year, so it would have had whatever was 
>> current then and so is the GW1000 driver on the other Pi.
>>
>> So I can only conclude that the older driver is OK with both firmware 
>> versions, but the newer driver doesn't work with the older firmware.
>>
>> Current firmware is WH2650A_V1.6.8
>>
>> You got the correct IP, 
>>
>>
>> On Friday, 26 November 2021 at 23:13:09 UTC gjr80 wrote:
>>
>>> I've now been able to manually decode the response received and other 
>>> than the checksum and the device SSID it all decodes correctly or with 
>>> plausible values. Am I correct in understanding the device concerned is not 
>>> a GW1000 but actually a WH2650? 
>>>
>>> Manually decoding the response I get the following results for the 
>>> device:
>>>
>>> MAC: 48:3F:DA:54:59:59
>>> IP address: 192.168.1.162
>>> Port: 45000
>>> SSID: ?WH2650A-WIFI5959 (note the ? is actually hexadecimal 10 which is 
>>> an ASCII control character and not printable on screen as such)
>>>
>>> It sounds odd that one RPi works fine whereas the other doesn't. The 
>>> fact that the response decodes means the network side of things is likely 
>>> OK and it suggests an issue within WeeWX/GW1000 driver. Could I get you to 
>>> try/confirm a couple of things for me:
>>>
>>> 1. use the WS View or WS View Plus app to confirm the device IP address, 
>>> MAC address, SSID and firmware version. These should be available from the 
>>> Device List screen on then WS View Plus app or the Device List and Live 
>>> Data screens on the WS View app.
>>>
>>> 2. the [GW1000] stanza from each RPi
>>>
>>> 3. confirm your device is actually on IP address 192.168.1.162
>>>
>>> 4. try the following commands on each RPi and post the response for each 
>>> from the log (note if the IP address is incorrect use the actual IP 
>>> address):
>>>
>>> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --discover --debug=3
>>> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 
>>> --ip-address=192.168.1.162 --mac-address --debug=3
>>>
>>>
>>> Gary
>>>
>>

-- 
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/c6e92e5c-1fa8-45e0-be50-b9789a577b4cn%40googlegroups.com.


Re: [weewx-user] Problems connecting with GW1000 driver

2021-11-27 Thread Auchtermuchty Weather
PS from the other PI:

Version: 0.3.0  Date: 20 March 2021

And from the PI that now works:

Version: 0.4.1  Date: 14 October 2021

Revision History
14 October 2021 v0.4.1
-   no change, version increment only
27 September 2021   v0.4.0


On Saturday, 27 November 2021 at 09:40:25 UTC Auchtermuchty Weather wrote:

> Hi Gary
>
> Thanks for looking at this so quickly.
>
> When I used WS View it wanted to update the firmware, so I did that last 
> thing last night and Lo!  When I tried the test again this morning it 
> connected and got data!
>
> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --test-driver
> Using configuration file /home/weewx/weewx.conf
>
> Interrogating None at 192.168.1.162:45000
>
> 2021-11-27 09:29:17 GMT (1638005357): UV: 0, dateTime: 1638005357, 
> dayRain: 0.0, daymaxwind: 8.2, inHumidity: 49, inTemp: 18.2, luminosity: 
> 3239.0, monthRain: 28.0, outHumidity: 67, outTemp: 2.0, pressure: 1004.9, 
> rain: None, rainRate: 0.0, relbarometer: 1091.7, stormRain: 0.0, usUnits: 
> 17, uvradiation: 2.8, weekRain: 5.9, wh25_batt: 0, wh25_sig: 4, wh65_batt: 
> 0, wh65_sig: 4, windDir: 31, windGust: 1.5, windSpeed: 0.8, yearRain: 585.0
> ...
>
> Sorry I don't know what the previous firmware was but I brought and set 
> this station up in late March this year, so it would have had whatever was 
> current then and so is the GW1000 driver on the other Pi.
>
> So I can only conclude that the older driver is OK with both firmware 
> versions, but the newer driver doesn't work with the older firmware.
>
> Current firmware is WH2650A_V1.6.8
>
> You got the correct IP, 
>
>
> On Friday, 26 November 2021 at 23:13:09 UTC gjr80 wrote:
>
>> I've now been able to manually decode the response received and other 
>> than the checksum and the device SSID it all decodes correctly or with 
>> plausible values. Am I correct in understanding the device concerned is not 
>> a GW1000 but actually a WH2650? 
>>
>> Manually decoding the response I get the following results for the device:
>>
>> MAC: 48:3F:DA:54:59:59
>> IP address: 192.168.1.162
>> Port: 45000
>> SSID: ?WH2650A-WIFI5959 (note the ? is actually hexadecimal 10 which is 
>> an ASCII control character and not printable on screen as such)
>>
>> It sounds odd that one RPi works fine whereas the other doesn't. The fact 
>> that the response decodes means the network side of things is likely OK and 
>> it suggests an issue within WeeWX/GW1000 driver. Could I get you to 
>> try/confirm a couple of things for me:
>>
>> 1. use the WS View or WS View Plus app to confirm the device IP address, 
>> MAC address, SSID and firmware version. These should be available from the 
>> Device List screen on then WS View Plus app or the Device List and Live 
>> Data screens on the WS View app.
>>
>> 2. the [GW1000] stanza from each RPi
>>
>> 3. confirm your device is actually on IP address 192.168.1.162
>>
>> 4. try the following commands on each RPi and post the response for each 
>> from the log (note if the IP address is incorrect use the actual IP 
>> address):
>>
>> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --discover --debug=3
>> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 
>> --ip-address=192.168.1.162 --mac-address --debug=3
>>
>>
>> Gary
>>
>

-- 
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/d19c45ce-5cba-40ec-862b-987257d0f099n%40googlegroups.com.


Re: [weewx-user] Problems connecting with GW1000 driver

2021-11-27 Thread Auchtermuchty Weather
Hi Gary

Thanks for looking at this so quickly.

When I used WS View it wanted to update the firmware, so I did that last 
thing last night and Lo!  When I tried the test again this morning it 
connected and got data!

$ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --test-driver
Using configuration file /home/weewx/weewx.conf

Interrogating None at 192.168.1.162:45000

2021-11-27 09:29:17 GMT (1638005357): UV: 0, dateTime: 1638005357, dayRain: 
0.0, daymaxwind: 8.2, inHumidity: 49, inTemp: 18.2, luminosity: 3239.0, 
monthRain: 28.0, outHumidity: 67, outTemp: 2.0, pressure: 1004.9, rain: 
None, rainRate: 0.0, relbarometer: 1091.7, stormRain: 0.0, usUnits: 17, 
uvradiation: 2.8, weekRain: 5.9, wh25_batt: 0, wh25_sig: 4, wh65_batt: 0, 
wh65_sig: 4, windDir: 31, windGust: 1.5, windSpeed: 0.8, yearRain: 585.0
...

Sorry I don't know what the previous firmware was but I brought and set 
this station up in late March this year, so it would have had whatever was 
current then and so is the GW1000 driver on the other Pi.

So I can only conclude that the older driver is OK with both firmware 
versions, but the newer driver doesn't work with the older firmware.

Current firmware is WH2650A_V1.6.8

You got the correct IP, 


On Friday, 26 November 2021 at 23:13:09 UTC gjr80 wrote:

> I've now been able to manually decode the response received and other than 
> the checksum and the device SSID it all decodes correctly or with plausible 
> values. Am I correct in understanding the device concerned is not a GW1000 
> but actually a WH2650? 
>
> Manually decoding the response I get the following results for the device:
>
> MAC: 48:3F:DA:54:59:59
> IP address: 192.168.1.162
> Port: 45000
> SSID: ?WH2650A-WIFI5959 (note the ? is actually hexadecimal 10 which is an 
> ASCII control character and not printable on screen as such)
>
> It sounds odd that one RPi works fine whereas the other doesn't. The fact 
> that the response decodes means the network side of things is likely OK and 
> it suggests an issue within WeeWX/GW1000 driver. Could I get you to 
> try/confirm a couple of things for me:
>
> 1. use the WS View or WS View Plus app to confirm the device IP address, 
> MAC address, SSID and firmware version. These should be available from the 
> Device List screen on then WS View Plus app or the Device List and Live 
> Data screens on the WS View app.
>
> 2. the [GW1000] stanza from each RPi
>
> 3. confirm your device is actually on IP address 192.168.1.162
>
> 4. try the following commands on each RPi and post the response for each 
> from the log (note if the IP address is incorrect use the actual IP 
> address):
>
> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --discover --debug=3
> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 
> --ip-address=192.168.1.162 --mac-address --debug=3
>
>
> Gary
>

-- 
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/47f99029-ad79-45b3-a85b-c3f430d9fbben%40googlegroups.com.


Re: [weewx-user] Problems connecting with GW1000 driver

2021-11-26 Thread Auchtermuchty Weather
The other Pi has no problems communicating with the GW1000, and I can't 
find any relevant settings in the router.   The only reference to ports are 
passing 80 & 443 from the outside to the Pi where WeeWx is working.

No problem using rcp to copy files between the two RPis.

They all have ssh turned on, and I access the command line via putty - none 
of them have a GUI.

There is another Pi on the network running Pi-Hole and setting that up last 
week didn't stop the other WeeWx Pi from accessing the GW1000.  Again, I've 
looked through the setup and can't see anything that might be relevant.  
(there are 4 RPis - Pi-Hole, WeeWx live & test, & a WWW server for the 
WeeWx data.  The generated files are FTP's to it by WeeWx).

What is the best way to check what ports the problem Pi has open and/or if 
that's the problem?  

If the default RPi OS setup has them all open by default then that's what I 
have.

On Friday, 26 November 2021 at 16:48:19 UTC lang@googlemail.com wrote:

> does your router allow the server (RPi) to connect to other devices, 
> especially to the GW1000, resp. the GW1000 to connect to the RPi ?
> Routers often restrict the access by default.
>
> Ports 45000, 46000 TCP/UDP need to be open for weewx to communicate with 
> the GW1000 and vice versa.
> On 26.11.2021 17:11, Auchtermuchty Weather wrote:
>
> I'm moving my WeeWx back to the right Pi, but with up-to-date Pi OS, WeeWx 
> and GW1000 driver.  Versions are: 
>
> WeeWX 4.5.1
> GW1000 0.4.1
> Raspbian 5.10.63-v7+
>
> I have another Pi working quite happily picking up data via the GW1000 
> driver, so I don't think there's a problem there.
>
> I've following the instructions at GIT to install it using wee_extension but 
> when I try to test it I get:
>
> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --test-driver
> Using configuration file /home/weewx/weewx.conf
>
> Unable to connect to device: Failed to detect device IP address and/or 
> port after 3 attempts
>
> So I've run this:
> $ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --sensors --debug=3
>
> And this is in /var/log/debug:
> Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
> packet 'FF FF 12 03 15' to '255.255.255.255:46000'
> Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
> response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
> 35 30 41 2D 57 49 46 49 35 39 35 39 F0'
> Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
> command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
> (0x11), received '240' (0xF0).
> Nov 26 15:57:27 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 1 to 
> detect device IP address and/or port
> Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
> packet 'FF FF 12 03 15' to '255.255.255.255:46000'
> Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
> response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
> 35 30 41 2D 57 49 46 49 35 39 35 39 F0'
> Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
> command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
> (0x11), received '240' (0xF0).
> Nov 26 15:57:42 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 2 to 
> detect device IP address and/or port
> Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
> packet 'FF FF 12 03 15' to '255.255.255.255:46000'
> Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
> response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
> 35 30 41 2D 57 49 46 49 35 39 35 39 F0'
> Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
> command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
> (0x11), received '240' (0xF0).
> Nov 26 15:57:57 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 3 to 
> detect device IP address and/or port
>
> No idea what the problem is.  I have a feeling I might have had this 
> problem previously and documented it, but I've managed to lose that 
> document - if it ever existed.  :(
>
> -- 
> 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+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/f3a02509-adf7-4fb8-a23a-5eeec262ef45n%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/weewx-user/f3a02509-adf7-4fb8-a23a-5eeec262ef45n%40googlegroups.com?utm_medium=email_source=footer>
> .
>
>

-- 
You received this message because you a

[weewx-user] Problems connecting with GW1000 driver

2021-11-26 Thread Auchtermuchty Weather
I'm moving my WeeWx back to the right Pi, but with up-to-date Pi OS, WeeWx 
and GW1000 driver.  Versions are:

WeeWX 4.5.1
GW1000 0.4.1
Raspbian 5.10.63-v7+

I have another Pi working quite happily picking up data via the GW1000 
driver, so I don't think there's a problem there.

I've following the instructions at GIT to install it using wee_extension but 
when I try to test it I get:

$ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --test-driver
Using configuration file /home/weewx/weewx.conf

Unable to connect to device: Failed to detect device IP address and/or port 
after 3 attempts

So I've run this:
$ PYTHONPATH=/home/weewx/bin python -m user.gw1000 --sensors --debug=3

And this is in /var/log/debug:
Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
packet 'FF FF 12 03 15' to '255.255.255.255:46000'
Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
35 30 41 2D 57 49 46 49 35 39 35 39 F0'
Nov 26 15:57:22 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
(0x11), received '240' (0xF0).
Nov 26 15:57:27 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 1 to 
detect device IP address and/or port
Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
packet 'FF FF 12 03 15' to '255.255.255.255:46000'
Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
35 30 41 2D 57 49 46 49 35 39 35 39 F0'
Nov 26 15:57:37 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
(0x11), received '240' (0xF0).
Nov 26 15:57:42 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 2 to 
detect device IP address and/or port
Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Sending broadcast 
packet 'FF FF 12 03 15' to '255.255.255.255:46000'
Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Received broadcast 
response 'FF FF 12 00 21 48 3F DA 54 59 59 C0 A8 01 A2 AF C8 10 57 48 32 36 
35 30 41 2D 57 49 46 49 35 39 35 39 F0'
Nov 26 15:57:52 LiveWeeWx weewx[6200] DEBUG __main__: Invalid response to 
command 'CMD_BROADCAST': Invalid checksum in API response. Expected '17' 
(0x11), received '240' (0xF0).
Nov 26 15:57:57 LiveWeeWx weewx[6200] DEBUG __main__: Failed attempt 3 to 
detect device IP address and/or port

No idea what the problem is.  I have a feeling I might have had this 
problem previously and documented it, but I've managed to lose that 
document - if it ever existed.  :(

-- 
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/f3a02509-adf7-4fb8-a23a-5eeec262ef45n%40googlegroups.com.


Re: [weewx-user] Python error?

2021-03-31 Thread Auchtermuchty Weather
I found the default Buster had python 2.  I installed 3, and set it to be 
the default version:

https://linuxconfig.org/how-to-change-from-default-to-alternative-python-version-on-debian-linux#h2-change-python-version-system-wide
 


On Tuesday, 30 March 2021 at 23:43:17 UTC+1 vince wrote:

> On Tuesday, March 30, 2021 at 1:55:57 PM UTC-7 Mauro De Lauretis wrote:
>
>> I still have the newest version of RPi OS, therefore I don't know what to 
>> change.
>> But it seems that the python in the system its gone. Maybe I have to do a 
>> fresh install.
>>
>
> Considering how confused you seem to be, a full install on a new SD card 
> would be your best idea I think.
>
> Save your /home/weewx trees to another computer.Image a 'different' SD 
> card with current Raspbian.  Install weewx.  Restore your database file. 
>  Start weewx.
>

-- 
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/7fdc3479-f605-41d3-b190-5072de09eec6n%40googlegroups.com.


[weewx-user] British Geological Survey - earthquakes

2021-03-30 Thread Auchtermuchty Weather
Is anyone using the BGS as an earthquake server?

-- 
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/aa6a8f8b-a894-4627-9374-4e2ed94b0d40n%40googlegroups.com.


[weewx-user] Re: Fine Offset WH2650 clone - power cut

2021-03-29 Thread Auchtermuchty Weather
PS not using the MQTT at present.

On Monday, 29 March 2021 at 15:53:08 UTC+1 Auchtermuchty Weather wrote:

> I'm using a Fine Offset WH2650 
> <http://www.foshk.com/Wifi_Weather_Station/WH2650.html> clone and we had 
> a power cut for a bit over a couple of hours this morning.  With the 
> previous WH1080 clone the readings would get stored in the console and 
> WeeWX would pick them up when power was restored - ditto if the daemon is 
> stopped for any reason.  
>
> That doesn't seem to happen now.  Can it be made to happen?
>
> WeeWX 4.4.0
> Bootstrap liveCharts
> Belchertown
>

-- 
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/fa155634-26f2-44e9-8e38-647326c552acn%40googlegroups.com.


[weewx-user] Fine Offset WH2650 clone - power cut

2021-03-29 Thread Auchtermuchty Weather
I'm using a Fine Offset WH2650 
 clone and we had a 
power cut for a bit over a couple of hours this morning.  With the previous 
WH1080 clone the readings would get stored in the console and WeeWX would 
pick them up when power was restored - ditto if the daemon is stopped for 
any reason.  

That doesn't seem to happen now.  Can it be made to happen?

WeeWX 4.4.0
Bootstrap liveCharts
Belchertown

-- 
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/3264934c-6b25-40d0-8b62-c166de58e6c3n%40googlegroups.com.


[weewx-user] Re: Belchertown UV / Radiation graph

2021-03-23 Thread Auchtermuchty Weather

I've got the correction, will try the chart.  

Thanks.
On Tuesday, 23 March 2021 at 13:25:53 UTC gert.a...@gmail.com wrote:

> Hi
> Have you tried this:
>
> [[chart7]]
> title = Radiation and UV Index last 7 days
> time_length = 604800 # Last 7 days
> [[[radiation]]]
> name = Radiation
> zIndex = 1
> color = "#ffc83f"
> [[[UV]]]
> yAxis = 1
> yaxis_min = 0
> yaxis_max = 14
> color = "#90ed7d"
> y_label = "UV"
> name = UV Indeks
> zIndex = 2
>
> If you're are using the  GW1000 driver, then you need this in the 
> weewx.conf:
>
> [StdCalibrate]
> 
> [[Corrections]]
> # For each type, an arbitrary calibration expression can be given.
> # It should be in the units defined in the StdConvert section.
> # Example
> radiation = luminosity/126.7 if luminosity is not None else None
>
> Gert
> On Tuesday, March 23, 2021 at 11:54:43 AM UTC+1 Auchtermuchty Weather 
> wrote:
>
>> Is it possible to have this working for 7 days?  I tried & got errors.
>>
>> Very impressed with the Belchertown skin.
>>
>

-- 
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/e36db98e-237a-4b8b-9b64-89637fdefb8bn%40googlegroups.com.


[weewx-user] Belchertown UV / Radiation graph

2021-03-23 Thread Auchtermuchty Weather
Is it possible to have this working for 7 days?  I tried & got errors.

Very impressed with the Belchertown skin.

-- 
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/6dbc2940-2f53-454e-a840-2a37ee8e581fn%40googlegroups.com.


Re: [weewx-user] WH2650 clone problems

2021-03-21 Thread Auchtermuchty Weather
I'm not planning any factory resets!

Thanks for the extra info.  Hopefully however it will be long enough that 
by the time I need to setup another Fine Offset I've forgotten about that 
forum.  :)

On Sunday, 21 March 2021 at 14:19:26 UTC lang@googlemail.com wrote:

> Congratulations !
> It is how it is  - and, unless you do a factory reset, you won't have 
> to do this again.
>
> For "general" FineOffset clone issues etc., WXforum is afaik the main (in 
> the sense most substantial) forum - for weewx there are some helpful posts, 
> too - but here is the main weewx user forum.
>
> With the GW1000/WH2650
>
> in weewx.conf you will have to add the line
> -- start weewx.conf excerpt --
> [StdCalibrate]
>
> [[Corrections]]
> # For each type, an arbitrary calibration expression can be given.
> # It should be in the units defined in the StdConvert section.
> # Example:
> foo = foo + 0.2
> 
>* radiation = luminosity/126.7 if luminosity is not None else None*
>  end weewx.conf excerpt
>
> otherwise you won't get data from a solar sensor displayed
> Good luck - and have fun !
>
> On 21.03.2021 14:48, Auchtermuchty Weather wrote:
>
> Thanks,  I knew I'd seen something about this but forgot about the other 
> forum.  
>
> That worked, but what a horrible method!  A better way (in my view) would 
> be it picks up the network itself and has an inbuilt HTTP server for any 
> further configuration.  I guess the prevalence of mobile devices is 
> affecting things, adversely IMHO - a mobile device is perfectly capable of 
> picking up data from an IP address... 
>
> I've given it a static IP, cycled the power and it's back on the network 
> with the right static IP.  The new IP also shows in WS View and on looking 
> though the screens in WS View it looks like I have some new data to play 
> with, plus humidity looks about right so I imagine the dew point will be. 
>
> Now to implement connecting to it from WeeWx...
>
> On Sunday, 21 March 2021 at 13:12:59 UTC lang@googlemail.com wrote:
>
>> You can go through the instructions/suggestions posted at
>> https://www.wxforum.net/index.php?topic=41575.0
>> this works in 99.5% of all cases so far. 
>> From what I read, your main issue might be
>> that you probably use the wrong app (probably wrongly stated in the 
>> reseller manual) - you have to use the WSView app - WS Tools won't work for 
>> that purpose
>> On 21.03.2021 13:37, Auchtermuchty Weather wrote:
>>
>> PS I've tried a reset just now, no idea at what point in the flashing I 
>> should let the button go but again I have both sensors connected but it's 
>> not connecting to the WiFi
>>
>> On Sunday, 21 March 2021 at 12:25:13 UTC Auchtermuchty Weather wrote:
>>
>>>
>>> GW1000 - the tiny little thing with blue LEDs.  Certainly not a console. 
>>> On Sunday, 21 March 2021 at 12:18:10 UTC steep...@gmail.com wrote:
>>>
>>>> Do you have a gateway device GW1000 or a console?
>>>>
>>>> On Sun, 21 Mar 2021 at 12:03, Auchtermuchty Weather  
>>>> wrote:
>>>>
>>>>> So my WH2650 clone eventually arrived and is installed in the garden.  
>>>>> However  can't get the base station to connect to my router.  I've 
>>>>> plugged 
>>>>> it in, it's connected to indoor & outdoor sensors but the WiFi light 
>>>>> continues to flash rapidly.  I've turned off the 5GHz Wifi, I've got the 
>>>>> WS 
>>>>> Tool app.  And the App won't let me put the SSID in either.  If just has 
>>>>> ''.   
>>>>>
>>>>> However I see what is meant by better sensors etc.
>>>>>
>>>>> Should have done this bit before I turned off the old one.
>>>>>
>>>> -- 
>>>>> 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+...@googlegroups.com.
>>>>> To view this discussion on the web visit 
>>>>> https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com
>>>>>  
>>>>> <https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com?utm_medium=email_source=footer>
>>>>> .
>>>>>
>>>> -- 
>> You

Re: [weewx-user] New weather station UK

2021-03-21 Thread Auchtermuchty Weather
Fantastic, got it working on the test system.  Now I'm using it all is 
clear - that the base station becomes a device in it's own right on the 
network, with it's own IP number.

Now I turned off the previous weather station yesterday, and have only just 
got the new one working so I have some ugly straight lines on the output.

What might be the best way of filling those in, or isn't it worth doing?  
There is a weather station just down the road that might be happy to pass 
their data for the relevant  few hours.


On Tuesday, 9 March 2021 at 18:37:44 UTC Auchtermuchty Weather wrote:

> Brilliant, thanks, I finally thing I might know what I am doing1
>
> And on reading your description I agree that #2 is a better option.  I've 
> ordered a WH2650 clone.
>
> On Tuesday, 9 March 2021 at 16:51:00 UTC galfert wrote:
>
>> There are two ways to move data from the GW1000 to WeeWX. 
>>
>> - HTTP push: This method is where you go into the GW1000 configuration 
>> and you set up it up to give it the IP address of the WeeWX system. This is 
>> done under the "Customized" server upload feature of the GW1000. This 
>> method requires WeeWX to be configured with the Interceptor driver. All of 
>> the networked display consoles can also do this method. You don't need a 
>> GW1000 for this. But I feel it is better to opt for the other method which 
>> is unique to the GW1000 (and WH2650).
>>
>> - API pull: This method doesn't require any configuration on the part of 
>> the GW1000. Rather what you do is give your software the IP address of the 
>> GW1000 and then it just asks the GW1000 for live data. This method allows 
>> for you to have even other software running on the same system as WeeWX or 
>> on a different system that is simultaneously asking the GW1000 for live 
>> data. You can even benefit from having two WeeWX systems both getting live 
>> data. Then you can have a production system and a test system. Then you try 
>> WeeWx customizations on test system and if you mess something up no big 
>> deal because your production system is untouched. Then when you figure it 
>> out you can then implement those finalizations to the production system. 
>> Only the GW100 and its sibling WH2650 have this API capability. You'll need 
>> the GW1000 API driver extension for WeeWX.
>> https://github.com/gjr80/weewx-gw1000
>>
>>
>> On Tuesday, March 9, 2021 at 11:40:38 AM UTC-5 Auchtermuchty Weather 
>> wrote:
>>
>>> I wasn't quite there, I'm suspecting the GW1000 is set up with a 
>>> customized feed to the Pi.
>>>
>>> On Tuesday, 9 March 2021 at 16:14:32 UTC galfert wrote:
>>>
>>>> Yes, seems like you understand it now. 
>>>>
>>>> Here are some added tidbits to understand though
>>>> The GW1000 has a USB plug but that is only used for power. You can 
>>>> certainly power it by the Pi, but you don't have to. You can plug the 
>>>> GW1000 to any USB power source. Do though consider that some power sources 
>>>> are less than adequate because some have been known to cause electronic 
>>>> interference with the sensor RF reception. I've tested the GW1000 with my 
>>>> Pi and it has no problems. But that could also be a function of the power 
>>>> supply I'm using with the Pi (I don't know). So just be aware that finding 
>>>> the adequate power source for the GW1000 is sometimes a concern. I don' t 
>>>> really want you to worry about that too much, because the majority of 
>>>> users 
>>>> do not have this problem. It is just good to be aware of it. Therefore 
>>>> realize that the GW1000 only sends data via the network to whatever 
>>>> application or device talks to itthat can be WeeWX with the GW1000 API 
>>>> driver or the mobile app WS View which you'll need to initially configure 
>>>> the GW1000 or any other software you may decide to run (Cumulus MX, 
>>>> Meteobridge, Weather-Display...etc.).
>>>>
>>>> To recap...no data over USB on GW1000...The USB is only used for power. 
>>>> Use a good clean USB power source.
>>>>
>>>> Since you don't really want a display console then you should consider 
>>>> looking into the following Ecowitt complete kit models.
>>>> GW1001 - all-in-one sensor array
>>>> GW1002 - separate sensor components with spinning anemometer
>>>> GW1003 - separate sensor components with ultrasonic anemometer
>>>>
>>>> All three of those complete kits come with the same GW1000. The 
>>>>

Re: [weewx-user] WH2650 clone problems

2021-03-21 Thread Auchtermuchty Weather
Thanks,  I knew I'd seen something about this but forgot about the other 
forum. 

That worked, but what a horrible method!  A better way (in my view) would 
be it picks up the network itself and has an inbuilt HTTP server for any 
further configuration.  I guess the prevalence of mobile devices is 
affecting things, adversely IMHO - a mobile device is perfectly capable of 
picking up data from an IP address...

I've given it a static IP, cycled the power and it's back on the network 
with the right static IP.  The new IP also shows in WS View and on looking 
though the screens in WS View it looks like I have some new data to play 
with, plus humidity looks about right so I imagine the dew point will be.

Now to implement connecting to it from WeeWx...

On Sunday, 21 March 2021 at 13:12:59 UTC lang@googlemail.com wrote:

> You can go through the instructions/suggestions posted at
> https://www.wxforum.net/index.php?topic=41575.0
> this works in 99.5% of all cases so far. 
> From what I read, your main issue might be
> that you probably use the wrong app (probably wrongly stated in the 
> reseller manual) - you have to use the WSView app - WS Tools won't work for 
> that purpose
> On 21.03.2021 13:37, Auchtermuchty Weather wrote:
>
> PS I've tried a reset just now, no idea at what point in the flashing I 
> should let the button go but again I have both sensors connected but it's 
> not connecting to the WiFi
>
> On Sunday, 21 March 2021 at 12:25:13 UTC Auchtermuchty Weather wrote:
>
>>
>> GW1000 - the tiny little thing with blue LEDs.  Certainly not a console. 
>> On Sunday, 21 March 2021 at 12:18:10 UTC steep...@gmail.com wrote:
>>
>>> Do you have a gateway device GW1000 or a console?
>>>
>>> On Sun, 21 Mar 2021 at 12:03, Auchtermuchty Weather  
>>> wrote:
>>>
>>>> So my WH2650 clone eventually arrived and is installed in the garden.  
>>>> However  can't get the base station to connect to my router.  I've plugged 
>>>> it in, it's connected to indoor & outdoor sensors but the WiFi light 
>>>> continues to flash rapidly.  I've turned off the 5GHz Wifi, I've got the 
>>>> WS 
>>>> Tool app.  And the App won't let me put the SSID in either.  If just has 
>>>> ''.   
>>>>
>>>> However I see what is meant by better sensors etc.
>>>>
>>>> Should have done this bit before I turned off the old one.
>>>>
>>> -- 
>>>> 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+...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com?utm_medium=email_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+...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/8a2e3a7e-399d-41e4-8dbc-9cbcedea100dn%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/weewx-user/8a2e3a7e-399d-41e4-8dbc-9cbcedea100dn%40googlegroups.com?utm_medium=email_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/44dbd146-5a51-486a-a592-aa6bd021dec9n%40googlegroups.com.


Re: [weewx-user] WH2650 clone problems

2021-03-21 Thread Auchtermuchty Weather
PS I've tried a reset just now, no idea at what point in the flashing I 
should let the button go but again I have both sensors connected but it's 
not connecting to the WiFi

On Sunday, 21 March 2021 at 12:25:13 UTC Auchtermuchty Weather wrote:

>
> GW1000 - the tiny little thing with blue LEDs.  Certainly not a console.
> On Sunday, 21 March 2021 at 12:18:10 UTC steep...@gmail.com wrote:
>
>> Do you have a gateway device GW1000 or a console?
>>
>> On Sun, 21 Mar 2021 at 12:03, Auchtermuchty Weather  
>> wrote:
>>
>>> So my WH2650 clone eventually arrived and is installed in the garden.  
>>> However  can't get the base station to connect to my router.  I've plugged 
>>> it in, it's connected to indoor & outdoor sensors but the WiFi light 
>>> continues to flash rapidly.  I've turned off the 5GHz Wifi, I've got the WS 
>>> Tool app.  And the App won't let me put the SSID in either.  If just has 
>>> ''.  
>>>
>>> However I see what is meant by better sensors etc.
>>>
>>> Should have done this bit before I turned off the old one.
>>>
>>> -- 
>>> 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+...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com?utm_medium=email_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/8a2e3a7e-399d-41e4-8dbc-9cbcedea100dn%40googlegroups.com.


Re: [weewx-user] WH2650 clone problems

2021-03-21 Thread Auchtermuchty Weather

GW1000 - the tiny little thing with blue LEDs.  Certainly not a console.
On Sunday, 21 March 2021 at 12:18:10 UTC steep...@gmail.com wrote:

> Do you have a gateway device GW1000 or a console?
>
> On Sun, 21 Mar 2021 at 12:03, Auchtermuchty Weather  
> wrote:
>
>> So my WH2650 clone eventually arrived and is installed in the garden.  
>> However  can't get the base station to connect to my router.  I've plugged 
>> it in, it's connected to indoor & outdoor sensors but the WiFi light 
>> continues to flash rapidly.  I've turned off the 5GHz Wifi, I've got the WS 
>> Tool app.  And the App won't let me put the SSID in either.  If just has 
>> ''.  
>>
>> However I see what is meant by better sensors etc.
>>
>> Should have done this bit before I turned off the old one.
>>
>> -- 
>> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com?utm_medium=email_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/0820885d-5012-4bf6-90dd-13f433134e62n%40googlegroups.com.


[weewx-user] WH2650 clone problems

2021-03-21 Thread Auchtermuchty Weather
So my WH2650 clone eventually arrived and is installed in the garden.  
However  can't get the base station to connect to my router.  I've plugged 
it in, it's connected to indoor & outdoor sensors but the WiFi light 
continues to flash rapidly.  I've turned off the 5GHz Wifi, I've got the WS 
Tool app.  And the App won't let me put the SSID in either.  If just has 
''.  

However I see what is meant by better sensors etc.

Should have done this bit before I turned off the old one.

-- 
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/73707865-d69c-4a18-8709-02142dae07dbn%40googlegroups.com.


[weewx-user] Re: 2D array possible in template?

2021-03-13 Thread Auchtermuchty Weather
I was struggling to declare on in a .inc file but it's sorted now using all 
square brackets.

#set $Items = [
[''Tom', 'Happy'}, 
['Dick', 'Sad'}, 
['Harry', 'Hairy'}
]

On Saturday, 13 March 2021 at 12:05:44 UTC gjr80 wrote:

> What exactly is your problem? Works fine for me:
>
> How are you feeling?
> 
> 
> Tom is Happy
> 
> 
> Dick is Sad
> 
> 
> Harry is Hairy
> 
> 
>
> Gary
>
> On Saturday, 13 March 2021 at 21:37:51 UTC+10 Auchtermuchty Weather wrote:
>
>> I could do with being able to declare a 2D array in my template.  I found 
>> the following example in the Cheetah documentation but I can't find how to 
>> emulate it in a template:
>>
>> #from Cheetah.Template import Template
>> #extends Template
>>
>> #set $people = [
>> {'name' : 'Tom', 'mood' : 'Happy'}, 
>> {'name' : 'Dick', 'mood' : 'Sad'}, 
>> {'name' : 'Harry', 'mood' : 'Hairy'}
>> ]
>>
>> How are you feeling?
>> 
>> #for $person in $people
>> 
>> $person['name'] is $person['mood']
>> 
>> #end for
>> 
>>
>

-- 
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/2886c09f-8dba-4ac5-8b01-e8831ee374e2n%40googlegroups.com.


[weewx-user] 2D array possible in template?

2021-03-13 Thread Auchtermuchty Weather
I could do with being able to declare a 2D array in my template.  I found 
the following example in the Cheetah documentation but I can't find how to 
emulate it in a template:

#from Cheetah.Template import Template
#extends Template

#set $people = [
{'name' : 'Tom', 'mood' : 'Happy'}, 
{'name' : 'Dick', 'mood' : 'Sad'}, 
{'name' : 'Harry', 'mood' : 'Hairy'}
]

How are you feeling?

#for $person in $people

$person['name'] is $person['mood']

#end for


-- 
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/fb73a020-29b0-49ef-8853-dfea3a2c0a3en%40googlegroups.com.


Re: [weewx-user] New weather station UK

2021-03-09 Thread Auchtermuchty Weather
Brilliant, thanks, I finally thing I might know what I am doing1

And on reading your description I agree that #2 is a better option.  I've 
ordered a WH2650 clone.

On Tuesday, 9 March 2021 at 16:51:00 UTC galfert wrote:

> There are two ways to move data from the GW1000 to WeeWX. 
>
> - HTTP push: This method is where you go into the GW1000 configuration and 
> you set up it up to give it the IP address of the WeeWX system. This is 
> done under the "Customized" server upload feature of the GW1000. This 
> method requires WeeWX to be configured with the Interceptor driver. All of 
> the networked display consoles can also do this method. You don't need a 
> GW1000 for this. But I feel it is better to opt for the other method which 
> is unique to the GW1000 (and WH2650).
>
> - API pull: This method doesn't require any configuration on the part of 
> the GW1000. Rather what you do is give your software the IP address of the 
> GW1000 and then it just asks the GW1000 for live data. This method allows 
> for you to have even other software running on the same system as WeeWX or 
> on a different system that is simultaneously asking the GW1000 for live 
> data. You can even benefit from having two WeeWX systems both getting live 
> data. Then you can have a production system and a test system. Then you try 
> WeeWx customizations on test system and if you mess something up no big 
> deal because your production system is untouched. Then when you figure it 
> out you can then implement those finalizations to the production system. 
> Only the GW100 and its sibling WH2650 have this API capability. You'll need 
> the GW1000 API driver extension for WeeWX.
> https://github.com/gjr80/weewx-gw1000
>
>
> On Tuesday, March 9, 2021 at 11:40:38 AM UTC-5 Auchtermuchty Weather wrote:
>
>> I wasn't quite there, I'm suspecting the GW1000 is set up with a 
>> customized feed to the Pi.
>>
>> On Tuesday, 9 March 2021 at 16:14:32 UTC galfert wrote:
>>
>>> Yes, seems like you understand it now. 
>>>
>>> Here are some added tidbits to understand though
>>> The GW1000 has a USB plug but that is only used for power. You can 
>>> certainly power it by the Pi, but you don't have to. You can plug the 
>>> GW1000 to any USB power source. Do though consider that some power sources 
>>> are less than adequate because some have been known to cause electronic 
>>> interference with the sensor RF reception. I've tested the GW1000 with my 
>>> Pi and it has no problems. But that could also be a function of the power 
>>> supply I'm using with the Pi (I don't know). So just be aware that finding 
>>> the adequate power source for the GW1000 is sometimes a concern. I don' t 
>>> really want you to worry about that too much, because the majority of users 
>>> do not have this problem. It is just good to be aware of it. Therefore 
>>> realize that the GW1000 only sends data via the network to whatever 
>>> application or device talks to itthat can be WeeWX with the GW1000 API 
>>> driver or the mobile app WS View which you'll need to initially configure 
>>> the GW1000 or any other software you may decide to run (Cumulus MX, 
>>> Meteobridge, Weather-Display...etc.).
>>>
>>> To recap...no data over USB on GW1000...The USB is only used for power. 
>>> Use a good clean USB power source.
>>>
>>> Since you don't really want a display console then you should consider 
>>> looking into the following Ecowitt complete kit models.
>>> GW1001 - all-in-one sensor array
>>> GW1002 - separate sensor components with spinning anemometer
>>> GW1003 - separate sensor components with ultrasonic anemometer
>>>
>>> All three of those complete kits come with the same GW1000. The complete 
>>> station is referred to by those model names...but the GW1000 part is still 
>>> just a regular GW1000. The GW1000 is also available separately if you 
>>> wanted to add it to an existing station that came with a display console.
>>>
>>> Your question about the GW1000 being exclusive to Fine Offset is an odd 
>>> question. The GW1000 is a Fine Offset part and it only works with other 
>>> compatible Fine Offset sensors. You will not be able to use a GW1000 with 
>>> any other manufacture's sensors. That said realize that Fine Offset is the 
>>> manufacture and there are reseller brands that slap their brand name on 
>>> Fine Offset hardware. There are some resellers like Froggit, Ambient, 
>>> Conrad, Misol, Watson, etcthat likely sell not just FIne Offset clones 
>>>

Re: [weewx-user] New weather station UK

2021-03-09 Thread Auchtermuchty Weather
I wasn't quite there, I'm suspecting the GW1000 is set up with a customized 
feed to the Pi.

On Tuesday, 9 March 2021 at 16:14:32 UTC galfert wrote:

> Yes, seems like you understand it now. 
>
> Here are some added tidbits to understand though
> The GW1000 has a USB plug but that is only used for power. You can 
> certainly power it by the Pi, but you don't have to. You can plug the 
> GW1000 to any USB power source. Do though consider that some power sources 
> are less than adequate because some have been known to cause electronic 
> interference with the sensor RF reception. I've tested the GW1000 with my 
> Pi and it has no problems. But that could also be a function of the power 
> supply I'm using with the Pi (I don't know). So just be aware that finding 
> the adequate power source for the GW1000 is sometimes a concern. I don' t 
> really want you to worry about that too much, because the majority of users 
> do not have this problem. It is just good to be aware of it. Therefore 
> realize that the GW1000 only sends data via the network to whatever 
> application or device talks to itthat can be WeeWX with the GW1000 API 
> driver or the mobile app WS View which you'll need to initially configure 
> the GW1000 or any other software you may decide to run (Cumulus MX, 
> Meteobridge, Weather-Display...etc.).
>
> To recap...no data over USB on GW1000...The USB is only used for power. 
> Use a good clean USB power source.
>
> Since you don't really want a display console then you should consider 
> looking into the following Ecowitt complete kit models.
> GW1001 - all-in-one sensor array
> GW1002 - separate sensor components with spinning anemometer
> GW1003 - separate sensor components with ultrasonic anemometer
>
> All three of those complete kits come with the same GW1000. The complete 
> station is referred to by those model names...but the GW1000 part is still 
> just a regular GW1000. The GW1000 is also available separately if you 
> wanted to add it to an existing station that came with a display console.
>
> Your question about the GW1000 being exclusive to Fine Offset is an odd 
> question. The GW1000 is a Fine Offset part and it only works with other 
> compatible Fine Offset sensors. You will not be able to use a GW1000 with 
> any other manufacture's sensors. That said realize that Fine Offset is the 
> manufacture and there are reseller brands that slap their brand name on 
> Fine Offset hardware. There are some resellers like Froggit, Ambient, 
> Conrad, Misol, Watson, etcthat likely sell not just FIne Offset clones 
> but they sell stations manufactured by other companies. These weather 
> stations by other manufactures cannot share parts. Therefore when buying a 
> weather station from say Watson or any other reseller it is important to 
> know if the model you are looking at is a Fine Offset clone or some station 
> from a different manufacture. If you become familiar with the Fine Offset 
> catalog you will be able to recognize sensors and display consoles just by 
> looking at them. If it is a Fine Offset clone then it will look like a Fine 
> Offset clone. There is no way to confuse a CCL clone or UCTECH clone for a 
> Fine Offset. The Ecowitt brand is special and they are not like the other 
> resellers. This is because Ecowitt only sells FIne Offset as they are owned 
> and operated by Fine Offsetthey are essentially the same company and 
> they share employees. The way to consider it is that Ecowitt is the retail 
> subsidiary of Fine Offset. You can't buy directly from Fine Offset (unless 
> you are a reseller). So you can familiarize yourself with the Fine Offset 
> catalog and the Ecowitt catalog (same thing but different websites), so 
> that you can become familiar with what all these models look like and what 
> they offer. Then you can more easily window shop and look at Watson, 
> Conrad, Misol, Froggit and not be confused with what is and what isn't a 
> Fine Offset clone.
> www.foshk.com
> www.ecowitt.com
>
> On Tuesday, March 9, 2021 at 10:32:57 AM UTC-5 Auchtermuchty Weather wrote:
>
>> Hi
>>
>> Sorry about the name!
>>
>> Been for a walk and a think, and worked out what you are telling me.  The 
>> consoles no longer have USB, and the station in the garden can connect to a 
>> console and/or a GW1000. I can plug a G1000 into my Pi and use a driver in 
>> the way I'm used to.
>>
>> I'm not interested in a console, the current one is completely hidden.
>>
>> So it's off to shop.  The GW1000 - presumably exclusive to FineOffset 
>> clones.
>>
>> On Tuesday, 9 March 2021 at 13:38:08 UTC galfert wrote:
>>
>>> There is Bob and then there me George. I'm the one th

Re: [weewx-user] New weather station UK

2021-03-09 Thread Auchtermuchty Weather
Hi

Sorry about the name!

Been for a walk and a think, and worked out what you are telling me.  The 
consoles no longer have USB, and the station in the garden can connect to a 
console and/or a GW1000. I can plug a G1000 into my Pi and use a driver in 
the way I'm used to.

I'm not interested in a console, the current one is completely hidden.

So it's off to shop.  The GW1000 - presumably exclusive to FineOffset 
clones.

On Tuesday, 9 March 2021 at 13:38:08 UTC galfert wrote:

> There is Bob and then there me George. I'm the one that brought up the 
> GW1000. 
>
> The newest Fine Offset clones no longer have USB connections. They have 
> all been upgraded to network connectivity. Just like printers have all gone 
> from USB to network connectivity. The Fine Offset display consoles though 
> do not have the same API protocol that the GW1000 / WH2650 have. The 
> display consoles can only send HTTP (push data) to one Customized device 
> destination with a different protocol. The GW1000 / WH2650 has a proper API 
> (pull data) protocol which allows many devices to query for live data. So 
> you can have a display or not, that is up to you, but it won't be used if 
> you have a GW1000 /WH2650. The GW1000 / WH2650 get sensor data directly 
> from the sensors, so they don't need the display. 
>
> On Tuesday, March 9, 2021 at 8:18:41 AM UTC-5 Auchtermuchty Weather wrote:
>
>> Thanks Bob, very useful.  But I'm getting lost when you mention needing a 
>> GW1000 as well as a weather station with console?  Have I misunderstood?  
>> As you can tell since my current station is a WH1080 I've not kept my eye 
>> on new stations at all.  I started running with WeeWx in Oct 2012 which is 
>> a long time ago!
>>
>> I think my problem is I have no idea how the new stuff hangs together, it 
>> certainly seems that plugging the console into the USB port on a Pi isn't 
>> what happens these days.
>>
>> On Monday, 8 March 2021 at 18:39:03 UTC galfert wrote:
>>
>>> Oh and I forgot to mention that you can get the GW1000 from Ecowitt if 
>>> the FO Clone brand of the station and display do not offer it. It will work 
>>> as long as the frequency is the same. Your choices of frequency are 433, 
>>> 868, and 915 MHz.
>>>
>>> For example if you buy the Watson and they don't offer the GW1000 (or 
>>> the WH2650) then you can just get this added part from Ecowitt.
>>>
>>>
>>> On Monday, March 8, 2021 at 1:34:55 PM UTC-5 galfert wrote:
>>>
>>>> Newer Fine Offset clones from the various resellers have all been 
>>>> tested. I recommend that you reference this product matrix to learn what 
>>>> works with what.
>>>> https://www.wxforum.net/index.php?topic=40730.0
>>>>
>>>> My recommendation between the Fine Offset clones and the CCL and UCTECH 
>>>> clones is to stick to the Fine Offset clones. I think they offer better 
>>>> displays and better sensors and more options and better compatibility with 
>>>> WeeWX with new drivers that pick up all these optional sensors. The WeeWX 
>>>> driver to use is the GW1000 API driver. Which means that no matter which 
>>>> display console you get, or maybe you don't get a display at all, then all 
>>>> that matters is that you also include the GW1000 are part of the hardware 
>>>> set of parts. It doesn't matter if you get the Watson WS8686 or the 
>>>> Froggit 
>>>> HP1000SE PRO or whatever other Fine Offset clone...the only thing that 
>>>> matters is that you also include the GW1000 (or its sibling WH2650 which 
>>>> also support the same GW1000 API protocol).
>>>>
>>>> Whatever you decide, the old WH1080 has been surpassed by 4 generations 
>>>> of hardware with many improvements. If you are still sporting a WH1080 it 
>>>> is well due to upgrade it for a much better experience.
>>>>
>>>> On Monday, March 8, 2021 at 9:39:33 AM UTC-5 Auchtermuchty Weather 
>>>> wrote:
>>>>
>>>>> At some point these newer clones with the newer sensors are going to 
>>>>> have to be tried.  A lot of Googling using the makes mentioned in the 
>>>>> documentation failed to reveal any clones of the older stations - they 
>>>>> were 
>>>>> all 'unavailable'.  Whether I am the person to do that is a different 
>>>>> question!
>>>>>
>>>>> On Monday, 8 March 2021 at 10:18:26 UTC nav...@gmail.com wrote:
>>>>>
>>>>>> Sorry, I can't offer any advice on that sys

Re: [weewx-user] New weather station UK

2021-03-09 Thread Auchtermuchty Weather
Thanks Bob, very useful.  But I'm getting lost when you mention needing a 
GW1000 as well as a weather station with console?  Have I misunderstood?  
As you can tell since my current station is a WH1080 I've not kept my eye 
on new stations at all.  I started running with WeeWx in Oct 2012 which is 
a long time ago!

I think my problem is I have no idea how the new stuff hangs together, it 
certainly seems that plugging the console into the USB port on a Pi isn't 
what happens these days.

On Monday, 8 March 2021 at 18:39:03 UTC galfert wrote:

> Oh and I forgot to mention that you can get the GW1000 from Ecowitt if the 
> FO Clone brand of the station and display do not offer it. It will work as 
> long as the frequency is the same. Your choices of frequency are 433, 868, 
> and 915 MHz.
>
> For example if you buy the Watson and they don't offer the GW1000 (or the 
> WH2650) then you can just get this added part from Ecowitt.
>
>
> On Monday, March 8, 2021 at 1:34:55 PM UTC-5 galfert wrote:
>
>> Newer Fine Offset clones from the various resellers have all been tested. 
>> I recommend that you reference this product matrix to learn what works with 
>> what.
>> https://www.wxforum.net/index.php?topic=40730.0
>>
>> My recommendation between the Fine Offset clones and the CCL and UCTECH 
>> clones is to stick to the Fine Offset clones. I think they offer better 
>> displays and better sensors and more options and better compatibility with 
>> WeeWX with new drivers that pick up all these optional sensors. The WeeWX 
>> driver to use is the GW1000 API driver. Which means that no matter which 
>> display console you get, or maybe you don't get a display at all, then all 
>> that matters is that you also include the GW1000 are part of the hardware 
>> set of parts. It doesn't matter if you get the Watson WS8686 or the Froggit 
>> HP1000SE PRO or whatever other Fine Offset clone...the only thing that 
>> matters is that you also include the GW1000 (or its sibling WH2650 which 
>> also support the same GW1000 API protocol).
>>
>> Whatever you decide, the old WH1080 has been surpassed by 4 generations 
>> of hardware with many improvements. If you are still sporting a WH1080 it 
>> is well due to upgrade it for a much better experience.
>>
>> On Monday, March 8, 2021 at 9:39:33 AM UTC-5 Auchtermuchty Weather wrote:
>>
>>> At some point these newer clones with the newer sensors are going to 
>>> have to be tried.  A lot of Googling using the makes mentioned in the 
>>> documentation failed to reveal any clones of the older stations - they were 
>>> all 'unavailable'.  Whether I am the person to do that is a different 
>>> question!
>>>
>>> On Monday, 8 March 2021 at 10:18:26 UTC nav...@gmail.com wrote:
>>>
>>>> Sorry, I can't offer any advice on that system.
>>>>
>>>> For a bit more money you can get a unit which is known to work with 
>>>> Weewx, offers a better display and is compatible with the latest sensors.
>>>>
>>>> On Monday, 8 March 2021 at 10:04:19 UTC Auchtermuchty Weather wrote:
>>>>
>>>>>
>>>>> Hmmm  I wonder if this will work?  Looks like a FineOffset WS2085 
>>>>> clone, same enough as a WS2083?
>>>>>
>>>>> Aercus Instruments WS2085 Wireless Weather Station with USB Upload + 
>>>>> Free Beginner's Guide (eBook): Amazon.co.uk: Kitchen & Home 
>>>>> <https://www.amazon.co.uk/Aercus-Instruments-Wireless-Weather-Beginners/dp/B08148T5ZM/ref=sr_1_1?dchild=1=aercus=1615197377=8-1>
>>>>>  
>>>>>  
>>>>> On Monday, 8 March 2021 at 09:46:07 UTC nav...@gmail.com wrote:
>>>>>
>>>>>> Ecowitt is the trading arm of Fine Offset and the Watson W8686 
>>>>>> appears to be a rebadged/clone of their HP2551.
>>>>>>
>>>>>> I used Weewx Interceptor in Ecowitt mode to receive the information 
>>>>>> from the unit:-https://github.com/matthewwall/weewx-interceptor 
>>>>>> which worked well.
>>>>>> On Monday, 8 March 2021 at 08:31:38 UTC Auchtermuchty Weather wrote:
>>>>>>
>>>>>>> Which driver would this use?  And sorry I have no idea what HP2551 
>>>>>>> and Ecowitt are about.  
>>>>>>> On Sunday, 7 March 2021 at 13:50:43 UTC nav...@gmail.com wrote:
>>>>>>>
>>>>>>>>
>>>>>>>> Have a look at this setup available in the UK: 
>>>>>>>> http

[weewx-user] Re: Tiny letters despite font being installed

2021-03-09 Thread Auchtermuchty Weather
It healed up.  I saw small letters, remembered to install the fonts and I'm 
not sure that was picked up until I restarted - I restarted the whole Pi.

On Tuesday, 9 March 2021 at 07:58:54 UTC Michael wrote:

> This is what your page looks like after you open it. Everything OK 
>
> [image: Screenshot 2021-03-09 085408.png]
>
> But I still have one question: 
> How did you integrate the tabular weather data: "Current Weather", "Last 
> 24 hours" etc.? 
> Are the live data also included there?
>
>
>

-- 
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/ae6dd217-cb24-4593-adc4-519518270e1en%40googlegroups.com.


[weewx-user] Tiny letters despite font being installed

2021-03-08 Thread Auchtermuchty Weather
My skin uses FreeMonoBold.ttf:

skins/Images/skin.conf:top_label_font_path = 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
skins/Images/skin.conf:unit_label_font_path = 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
skins/Images/skin.conf:bottom_label_font_path = 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
skins/Images/skin.conf:axis_label_font_path = 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
skins/Images/skin.conf:rose_label_font_path = 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf

It's installed:
pi@muchtyweather:/home/weewx $ ls -l 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf
-rw-r--r-- 1 root root 300848 Jan 21  2019 
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf

But I have miniscule letters in the graphs:
*http://muchty-weather.org.uk/weather/day.html*

It was OK on the test Pi and I coped /home/weewx across preserving the 
permissions.  Where have I gone wrong?

-- 
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/1f10d17c-9474-4b88-b596-2b4ef34a9a5bn%40googlegroups.com.


Re: [weewx-user] New weather station UK

2021-03-08 Thread Auchtermuchty Weather
At some point these newer clones with the newer sensors are going to have 
to be tried.  A lot of Googling using the makes mentioned in the 
documentation failed to reveal any clones of the older stations - they were 
all 'unavailable'.  Whether I am the person to do that is a different 
question!

On Monday, 8 March 2021 at 10:18:26 UTC nav...@gmail.com wrote:

> Sorry, I can't offer any advice on that system.
>
> For a bit more money you can get a unit which is known to work with Weewx, 
> offers a better display and is compatible with the latest sensors.
>
> On Monday, 8 March 2021 at 10:04:19 UTC Auchtermuchty Weather wrote:
>
>>
>> Hmmm  I wonder if this will work?  Looks like a FineOffset WS2085 
>> clone, same enough as a WS2083?
>>
>> Aercus Instruments WS2085 Wireless Weather Station with USB Upload + Free 
>> Beginner's Guide (eBook): Amazon.co.uk: Kitchen & Home 
>> <https://www.amazon.co.uk/Aercus-Instruments-Wireless-Weather-Beginners/dp/B08148T5ZM/ref=sr_1_1?dchild=1=aercus=1615197377=8-1>
>>  
>>  
>> On Monday, 8 March 2021 at 09:46:07 UTC nav...@gmail.com wrote:
>>
>>> Ecowitt is the trading arm of Fine Offset and the Watson W8686 appears 
>>> to be a rebadged/clone of their HP2551.
>>>
>>> I used Weewx Interceptor in Ecowitt mode to receive the information from 
>>> the unit:-https://github.com/matthewwall/weewx-interceptor which worked 
>>> well.
>>> On Monday, 8 March 2021 at 08:31:38 UTC Auchtermuchty Weather wrote:
>>>
>>>> Which driver would this use?  And sorry I have no idea what HP2551 and 
>>>> Ecowitt are about.  
>>>> On Sunday, 7 March 2021 at 13:50:43 UTC nav...@gmail.com wrote:
>>>>
>>>>>
>>>>> Have a look at this setup available in the UK: 
>>>>> https://www.nevadaradio.co.uk/product/watson-w-8686/
>>>>>
>>>>> Works well, and supports extra sensors and updates (HP 2551) available 
>>>>> from Ecowitt/ws View app.
>>>>>
>>>>> On Sunday, 7 March 2021 at 11:30:38 UTC Auchtermuchty Weather wrote:
>>>>>
>>>>>> So any suggestions?
>>>>>>
>>>>>> Lots of Bresser &  Youshiko  stations on the Internet, but I've no 
>>>>>> idea if any work with WeeWx - in other words if any of them are 
>>>>>> FineOffset 
>>>>>> clones. 
>>>>>>
>>>>>> On Saturday, 6 March 2021 at 15:06:30 UTC Steve Woodford wrote:
>>>>>>
>>>>>>> I’m the wrong person to ask about off-the-shelf recommendations; I 
>>>>>>> built my own: https://www.mctavish.co.uk/weather/about/
>>>>>>>
>>>>>>> Steve
>>>>>>>
>>>>>>> On 6 Mar 2021, at 14:33, Auchtermuchty Weather  
>>>>>>> wrote:
>>>>>>>
>>>>>>> Thanks that what I needed to know.
>>>>>>>
>>>>>>> So what weather station would you suggest?
>>>>>>>
>>>>>>> On Saturday, 6 March 2021 at 13:55:30 UTC Steve Woodford wrote:
>>>>>>>
>>>>>>>> Be aware that WH-1080 and its ilk have had several incompatible 
>>>>>>>> on-air protocol changes over the years. You’d be gambling with your 
>>>>>>>> £75.69...
>>>>>>>>
>>>>>>>> Steve
>>>>>>>>
>>>>>>>> On 6 Mar 2021, at 12:18, Auchtermuchty Weather  
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>> I think it might be time to replace my weather station as a number 
>>>>>>>> of sensors are not working as they should, and replacements are now 
>>>>>>>> expensive.
>>>>>>>>
>>>>>>>> I'm looking for a FineOffset as I'm currently using an old Maplins 
>>>>>>>> as a WH1080, one that uses the same sensors would do me another 10 
>>>>>>>> years.
>>>>>>>>
>>>>>>>> Or
>>>>>>>>
>>>>>>>> Would this do the trick?
>>>>>>>>
>>>>>>>> MISOL 1 set of Spare part (outdoor unit) for Professional Wireless 
>>>>>>>> Weather Station: Amazon.co.uk: Garden & Outdoors 
>>>>>>>> <https://www.a

Re: [weewx-user] New weather station UK

2021-03-08 Thread Auchtermuchty Weather

Hmmm  I wonder if this will work?  Looks like a FineOffset WS2085 
clone, same enough as a WS2083?

Aercus Instruments WS2085 Wireless Weather Station with USB Upload + Free 
Beginner's Guide (eBook): Amazon.co.uk: Kitchen & Home 
<https://www.amazon.co.uk/Aercus-Instruments-Wireless-Weather-Beginners/dp/B08148T5ZM/ref=sr_1_1?dchild=1=aercus=1615197377=8-1>
 
 
On Monday, 8 March 2021 at 09:46:07 UTC nav...@gmail.com wrote:

> Ecowitt is the trading arm of Fine Offset and the Watson W8686 appears to 
> be a rebadged/clone of their HP2551.
>
> I used Weewx Interceptor in Ecowitt mode to receive the information from 
> the unit:-https://github.com/matthewwall/weewx-interceptor which worked 
> well.
> On Monday, 8 March 2021 at 08:31:38 UTC Auchtermuchty Weather wrote:
>
>> Which driver would this use?  And sorry I have no idea what HP2551 and 
>> Ecowitt are about.  
>> On Sunday, 7 March 2021 at 13:50:43 UTC nav...@gmail.com wrote:
>>
>>>
>>> Have a look at this setup available in the UK: 
>>> https://www.nevadaradio.co.uk/product/watson-w-8686/
>>>
>>> Works well, and supports extra sensors and updates (HP 2551) available 
>>> from Ecowitt/ws View app.
>>>
>>> On Sunday, 7 March 2021 at 11:30:38 UTC Auchtermuchty Weather wrote:
>>>
>>>> So any suggestions?
>>>>
>>>> Lots of Bresser &  Youshiko  stations on the Internet, but I've no idea 
>>>> if any work with WeeWx - in other words if any of them are FineOffset 
>>>> clones. 
>>>>
>>>> On Saturday, 6 March 2021 at 15:06:30 UTC Steve Woodford wrote:
>>>>
>>>>> I’m the wrong person to ask about off-the-shelf recommendations; I 
>>>>> built my own: https://www.mctavish.co.uk/weather/about/
>>>>>
>>>>> Steve
>>>>>
>>>>> On 6 Mar 2021, at 14:33, Auchtermuchty Weather  
>>>>> wrote:
>>>>>
>>>>> Thanks that what I needed to know.
>>>>>
>>>>> So what weather station would you suggest?
>>>>>
>>>>> On Saturday, 6 March 2021 at 13:55:30 UTC Steve Woodford wrote:
>>>>>
>>>>>> Be aware that WH-1080 and its ilk have had several incompatible 
>>>>>> on-air protocol changes over the years. You’d be gambling with your 
>>>>>> £75.69...
>>>>>>
>>>>>> Steve
>>>>>>
>>>>>> On 6 Mar 2021, at 12:18, Auchtermuchty Weather  
>>>>>> wrote:
>>>>>>
>>>>>> I think it might be time to replace my weather station as a number of 
>>>>>> sensors are not working as they should, and replacements are now 
>>>>>> expensive.
>>>>>>
>>>>>> I'm looking for a FineOffset as I'm currently using an old Maplins as 
>>>>>> a WH1080, one that uses the same sensors would do me another 10 years.
>>>>>>
>>>>>> Or
>>>>>>
>>>>>> Would this do the trick?
>>>>>>
>>>>>> MISOL 1 set of Spare part (outdoor unit) for Professional Wireless 
>>>>>> Weather Station: Amazon.co.uk: Garden & Outdoors 
>>>>>> <https://www.amazon.co.uk/MISOL-outdoor-Professional-Wireless-Weather/dp/B00EJFCM1M/ref=sr_1_32?crid=3QF58J4XI4Y8F=1=weather+stations+with+outdoor+sensor+wireless=1615033043=p_36%3A7000-8000=388997011=weather+%2Caps%2C130=8-32>
>>>>>>  
>>>>>>
>>>>>>  
>>>>>>
>>>>>> -- 
>>>>>> 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+...@googlegroups.com.
>>>>>> To view this discussion on the web visit 
>>>>>> https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com
>>>>>>  
>>>>>> <https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com?utm_medium=email_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+...@googlegroups.com.
>>>>>
>>>>> To view this discussion on the web visit 
>>>>> https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com
>>>>>  
>>>>> <https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com?utm_medium=email_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/97f23168-7797-4707-9002-997351fd259an%40googlegroups.com.


Re: [weewx-user] New weather station UK

2021-03-08 Thread Auchtermuchty Weather
Which driver would this use?  And sorry I have no idea what HP2551 and 
Ecowitt are about.  
On Sunday, 7 March 2021 at 13:50:43 UTC nav...@gmail.com wrote:

>
> Have a look at this setup available in the UK: 
> https://www.nevadaradio.co.uk/product/watson-w-8686/
>
> Works well, and supports extra sensors and updates (HP 2551) available 
> from Ecowitt/ws View app.
>
> On Sunday, 7 March 2021 at 11:30:38 UTC Auchtermuchty Weather wrote:
>
>> So any suggestions?
>>
>> Lots of Bresser &  Youshiko  stations on the Internet, but I've no idea 
>> if any work with WeeWx - in other words if any of them are FineOffset 
>> clones. 
>>
>> On Saturday, 6 March 2021 at 15:06:30 UTC Steve Woodford wrote:
>>
>>> I’m the wrong person to ask about off-the-shelf recommendations; I built 
>>> my own: https://www.mctavish.co.uk/weather/about/
>>>
>>> Steve
>>>
>>> On 6 Mar 2021, at 14:33, Auchtermuchty Weather  
>>> wrote:
>>>
>>> Thanks that what I needed to know.
>>>
>>> So what weather station would you suggest?
>>>
>>> On Saturday, 6 March 2021 at 13:55:30 UTC Steve Woodford wrote:
>>>
>>>> Be aware that WH-1080 and its ilk have had several incompatible on-air 
>>>> protocol changes over the years. You’d be gambling with your £75.69...
>>>>
>>>> Steve
>>>>
>>>> On 6 Mar 2021, at 12:18, Auchtermuchty Weather  
>>>> wrote:
>>>>
>>>> I think it might be time to replace my weather station as a number of 
>>>> sensors are not working as they should, and replacements are now expensive.
>>>>
>>>> I'm looking for a FineOffset as I'm currently using an old Maplins as a 
>>>> WH1080, one that uses the same sensors would do me another 10 years.
>>>>
>>>> Or
>>>>
>>>> Would this do the trick?
>>>>
>>>> MISOL 1 set of Spare part (outdoor unit) for Professional Wireless 
>>>> Weather Station: Amazon.co.uk: Garden & Outdoors 
>>>> <https://www.amazon.co.uk/MISOL-outdoor-Professional-Wireless-Weather/dp/B00EJFCM1M/ref=sr_1_32?crid=3QF58J4XI4Y8F=1=weather+stations+with+outdoor+sensor+wireless=1615033043=p_36%3A7000-8000=388997011=weather+%2Caps%2C130=8-32>
>>>>  
>>>>
>>>>  
>>>>
>>>> -- 
>>>> 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+...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com?utm_medium=email_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+...@googlegroups.com.
>>>
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com?utm_medium=email_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/eda5ef76-48d5-4aa6-815f-48b668ad5ad6n%40googlegroups.com.


Re: [weewx-user] New weather station UK

2021-03-07 Thread Auchtermuchty Weather
So any suggestions?

Lots of Bresser &  Youshiko  stations on the Internet, but I've no idea if 
any work with WeeWx - in other words if any of them are FineOffset clones. 

On Saturday, 6 March 2021 at 15:06:30 UTC Steve Woodford wrote:

> I’m the wrong person to ask about off-the-shelf recommendations; I built 
> my own: https://www.mctavish.co.uk/weather/about/
>
> Steve
>
> On 6 Mar 2021, at 14:33, Auchtermuchty Weather  wrote:
>
> Thanks that what I needed to know.
>
> So what weather station would you suggest?
>
> On Saturday, 6 March 2021 at 13:55:30 UTC Steve Woodford wrote:
>
>> Be aware that WH-1080 and its ilk have had several incompatible on-air 
>> protocol changes over the years. You’d be gambling with your £75.69...
>>
>> Steve
>>
>> On 6 Mar 2021, at 12:18, Auchtermuchty Weather  
>> wrote:
>>
>> I think it might be time to replace my weather station as a number of 
>> sensors are not working as they should, and replacements are now expensive.
>>
>> I'm looking for a FineOffset as I'm currently using an old Maplins as a 
>> WH1080, one that uses the same sensors would do me another 10 years.
>>
>> Or
>>
>> Would this do the trick?
>>
>> MISOL 1 set of Spare part (outdoor unit) for Professional Wireless 
>> Weather Station: Amazon.co.uk: Garden & Outdoors 
>> <https://www.amazon.co.uk/MISOL-outdoor-Professional-Wireless-Weather/dp/B00EJFCM1M/ref=sr_1_32?crid=3QF58J4XI4Y8F=1=weather+stations+with+outdoor+sensor+wireless=1615033043=p_36%3A7000-8000=388997011=weather+%2Caps%2C130=8-32>
>>  
>>
>>  
>>
>> -- 
>> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com?utm_medium=email_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+...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/weewx-user/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com?utm_medium=email_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/31f997ac-3226-4c7e-97d3-23a107f1782dn%40googlegroups.com.


Re: [weewx-user] New weather station UK

2021-03-06 Thread Auchtermuchty Weather
Thanks that what I needed to know.

So what weather station would you suggest?

On Saturday, 6 March 2021 at 13:55:30 UTC Steve Woodford wrote:

> Be aware that WH-1080 and its ilk have had several incompatible on-air 
> protocol changes over the years. You’d be gambling with your £75.69...
>
> Steve
>
> On 6 Mar 2021, at 12:18, Auchtermuchty Weather  wrote:
>
> I think it might be time to replace my weather station as a number of 
> sensors are not working as they should, and replacements are now expensive.
>
> I'm looking for a FineOffset as I'm currently using an old Maplins as a 
> WH1080, one that uses the same sensors would do me another 10 years.
>
> Or
>
> Would this do the trick?
>
> MISOL 1 set of Spare part (outdoor unit) for Professional Wireless Weather 
> Station: Amazon.co.uk: Garden & Outdoors 
> <https://www.amazon.co.uk/MISOL-outdoor-Professional-Wireless-Weather/dp/B00EJFCM1M/ref=sr_1_32?crid=3QF58J4XI4Y8F=1=weather+stations+with+outdoor+sensor+wireless=1615033043=p_36%3A7000-8000=388997011=weather+%2Caps%2C130=8-32>
>  
>
>  
>
> -- 
> 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+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/weewx-user/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com?utm_medium=email_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/ba67e7ca-72a8-4cc9-88b3-35d85a4b2b0en%40googlegroups.com.


[weewx-user] New weather station UK

2021-03-06 Thread Auchtermuchty Weather
I think it might be time to replace my weather station as a number of 
sensors are not working as they should, and replacements are now expensive.

I'm looking for a FineOffset as I'm currently using an old Maplins as a 
WH1080, one that uses the same sensors would do me another 10 years.

Or

Would this do the trick?

MISOL 1 set of Spare part (outdoor unit) for Professional Wireless Weather 
Station: Amazon.co.uk: Garden & Outdoors 

 

 

-- 
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/c72de1b4-33ca-49e1-b71a-c5b61365ddf0n%40googlegroups.com.


Re: [weewx-user] Bootstrap skin update preview

2021-03-05 Thread Auchtermuchty Weather
Mult fixed my problem, though I hadn't implemented it correctly.  However I 
agree with your change to the test.

On Friday, 5 March 2021 at 12:00:18 UTC michael.k...@gmx.at wrote:

> I think the problem is with the comparisons:
>
> if (value >= (float(c[0])*mult)) and (value <= (float(c[1])*mult)): 
>
> this should probably be:
> if (value >= (float(c[0])*mult)) and (value < (float(c[1])*mult)):  
>  
> With the >= and <= certain values match two colors
> michael.k...@gmx.at schrieb am Freitag, 5. März 2021 um 12:52:30 UTC+1:
>
>> I'll take a look at it. I can reproduce the double-double-quot issue. For 
>> the color and maximum days: that's related to your (or the default) 
>> configuration.
>>
>> Auchtermuchty Weather schrieb am Freitag, 5. März 2021 um 12:46:34 UTC+1:
>>
>>> And of course my initial fix isn't quite right...
>>>
>>> On Friday, 5 March 2021 at 11:39:24 UTC Auchtermuchty Weather wrote:
>>>
>>>> I reported an issue with the Days of rain table which turned out to be 
>>>> caused by the maximum value for colour coding being 50, and there almost 
>>>> always being more than 50 days of rain per year where I live.  I've put my 
>>>> fixed code in the 'issues':
>>>>
>>>> LiveCharts - Days of Rain errors · Issue #60 · brewster76/fuzzy-archer 
>>>> (github.com) <https://github.com/brewster76/fuzzy-archer/issues/60#> 
>>>>  
>>>>
>>>> On Thursday, 4 March 2021 at 09:59:08 UTC michael.k...@gmx.at wrote:
>>>>
>>>>> There is no out-of-the-box template for displaying these values. The 
>>>>> way you did this, is one of several possible ways to go. Adapting the 
>>>>> templates to your own, customized needs, is always possible.
>>>>>
>>>>> For the missing template in the installer: thank you, I fixed it.
>>>>> Michael schrieb am Donnerstag, 4. März 2021 um 09:20:25 UTC+1:
>>>>>
>>>>>> Is there a (hopefully simple) way to display the values of the gauge 
>>>>>> in tabular form (e.g. as they are displayed in the Seasons skin)?
>>>>>> For this display I have added the lines to the file 
>>>>>> livegauges.html.tmpl
>>>>>>
>>>>>>   
>>>>>> $Labels.Generic.outTemp
>>>>>> 23 °C / 57%
>>>>>>   
>>>>>>
>>>>>> Example:
>>>>>> [image: Screenshot.png]
>>>>>>
>>>>>>

-- 
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/3f550f3c-9761-42aa-bbd5-a8a845ae4313n%40googlegroups.com.


Re: [weewx-user] Bootstrap skin update preview

2021-03-05 Thread Auchtermuchty Weather
And of course my initial fix isn't quite right...

On Friday, 5 March 2021 at 11:39:24 UTC Auchtermuchty Weather wrote:

> I reported an issue with the Days of rain table which turned out to be 
> caused by the maximum value for colour coding being 50, and there almost 
> always being more than 50 days of rain per year where I live.  I've put my 
> fixed code in the 'issues':
>
> LiveCharts - Days of Rain errors · Issue #60 · brewster76/fuzzy-archer 
> (github.com) <https://github.com/brewster76/fuzzy-archer/issues/60#> 
>  
>
> On Thursday, 4 March 2021 at 09:59:08 UTC michael.k...@gmx.at wrote:
>
>> There is no out-of-the-box template for displaying these values. The way 
>> you did this, is one of several possible ways to go. Adapting the templates 
>> to your own, customized needs, is always possible.
>>
>> For the missing template in the installer: thank you, I fixed it.
>> Michael schrieb am Donnerstag, 4. März 2021 um 09:20:25 UTC+1:
>>
>>> Is there a (hopefully simple) way to display the values of the gauge in 
>>> tabular form (e.g. as they are displayed in the Seasons skin)?
>>> For this display I have added the lines to the file livegauges.html.tmpl
>>>
>>>   
>>> $Labels.Generic.outTemp
>>> 23 °C / 57%
>>>   
>>>
>>> Example:
>>> [image: Screenshot.png]
>>>
>>>

-- 
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/2922e888-aa3e-4967-9057-747409e1af03n%40googlegroups.com.


Re: [weewx-user] Bootstrap skin update preview

2021-03-05 Thread Auchtermuchty Weather
I reported an issue with the Days of rain table which turned out to be 
caused by the maximum value for colour coding being 50, and there almost 
always being more than 50 days of rain per year where I live.  I've put my 
fixed code in the 'issues':

LiveCharts - Days of Rain errors · Issue #60 · brewster76/fuzzy-archer 
(github.com)  
 

On Thursday, 4 March 2021 at 09:59:08 UTC michael.k...@gmx.at wrote:

> There is no out-of-the-box template for displaying these values. The way 
> you did this, is one of several possible ways to go. Adapting the templates 
> to your own, customized needs, is always possible.
>
> For the missing template in the installer: thank you, I fixed it.
> Michael schrieb am Donnerstag, 4. März 2021 um 09:20:25 UTC+1:
>
>> Is there a (hopefully simple) way to display the values of the gauge in 
>> tabular form (e.g. as they are displayed in the Seasons skin)?
>> For this display I have added the lines to the file livegauges.html.tmpl
>>
>>   
>> $Labels.Generic.outTemp
>> 23 °C / 57%
>>   
>>
>> Example:
>> [image: Screenshot.png]
>>
>>

-- 
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/5eee51b9-26ca-4262-9fe4-898d452af60fn%40googlegroups.com.


Re: [weewx-user] Bootstrap skin update preview

2021-02-27 Thread Auchtermuchty Weather
I found the answer when I looked at the code for WeeWx v4.4.0.  Old code 
simply has:

import Image

This needs amending to:

try:
from PIL import Image, ImageDraw
except ImportError:
import Image, ImageDraw

I had old code on a newly build SD card.


On Friday, 26 February 2021 at 12:17:28 UTC Auchtermuchty Weather wrote:

> I see the colour on first cell only problem is fixed, I like the new 
> images. I'll give it a go.
>
> BTW I had problems installing an earlier version as:
>
>1. import Image cause an error, and the way to resolve it (apt-get) in 
>the FAQ didn't work on a brand new Raspbian installation.  I suspect 
>systems that have been upgraded already had the necessary library.  This 
>URL seems to cover the necessary gound:  Why can't Python import Image 
>from PIL? - Stack Overflow 
>
> <https://stackoverflow.com/questions/26505958/why-cant-python-import-image-from-pil>
>2. Again probably because I started with a new Raspbian image, I 
>didn't have the necessary font loaded.  I put my solution to this in 
>'issues'.
>
> I've got a spare SD card, I think I might start over to install this as 
> I've messed around somewhat.  I copied the database over from my live 
> system to get realistic data rather than turn on the simulator.
>
>
>

-- 
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/546ad529-0a7e-48f1-b1fb-2ff70a2844d5n%40googlegroups.com.


Re: [weewx-user] Bootstrap skin update preview

2021-02-26 Thread Auchtermuchty Weather
I see the colour on first cell only problem is fixed, I like the new 
images. I'll give it a go.

BTW I had problems installing an earlier version as:

   1. import Image cause an error, and the way to resolve it (apt-get) in 
   the FAQ didn't work on a brand new Raspbian installation.  I suspect 
   systems that have been upgraded already had the necessary library.  This 
   URL seems to cover the necessary gound:  Why can't Python import Image 
   from PIL? - Stack Overflow 
   

   2. Again probably because I started with a new Raspbian image, I didn't 
   have the necessary font loaded.  I put my solution to this in 'issues'.

I've got a spare SD card, I think I might start over to install this as 
I've messed around somewhat.  I copied the database over from my live 
system to get realistic data rather than turn on the simulator.


-- 
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/4caf2fea-eb7b-42f7-a652-2e100c755053n%40googlegroups.com.


Re: [weewx-user] Customising NOAATable

2021-02-23 Thread Auchtermuchty Weather

Got around to looking at this, and it was easy thanks to your help.  
Instead of 'return cellText' I used 'return cellText.replace(".txt", "")'

My Python is almost non-existent, but my moderate C# was handy.  :)


On Tuesday, 16 February 2021 at 13:58:59 UTC gjr80 wrote:

> If I understand your question correctly the $NOAATable tag is produced in 
> the MyXSearch search list in user/historygenerator.py. The actual HTML 
> for the links to the month and year NOAA format reports is produced in the 
> _NoaaCell() 
> 
>  
> and _NoaaYear() 
> 
>  
> methods. I hope your python is good!
>
> Gary
>

-- 
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/d99ffa95-1cf2-46a5-a3af-4920ffc4bc53n%40googlegroups.com.


Re: [weewx-user] Customising NOAATable

2021-02-16 Thread Auchtermuchty Weather
I see what you mean!  Suspect I had better rethink...  Thanks anyway.

On Tuesday, 16 February 2021 at 13:58:59 UTC gjr80 wrote:

> If I understand your question correctly the $NOAATable tag is produced in 
> the MyXSearch search list in user/historygenerator.py. The actual HTML 
> for the links to the month and year NOAA format reports is produced in the 
> _NoaaCell() 
> 
>  
> and _NoaaYear() 
> 
>  
> methods. I hope your python is good!
>
> Gary
>

-- 
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/38dbac3f-3557-43d3-801b-0e7c0fb7980an%40googlegroups.com.


Re: [weewx-user] Customising NOAATable

2021-02-16 Thread Auchtermuchty Weather
I'm using the Bootstrap skin which has $NOAATable which generates the 
layout I want. but not quite the code.  That's what I'm asking about - 
$NOAATable in the Bootstrap skin.

I wanted to find the $NOAATable source rather than start from scratch.  

Otherwise, I have custom Javascript in the Wiki, I have the drop-down way 
of displaying a NOAA-.txt etc. working in the DokuWiki page, my NOAA 
files are being correctly generated.


On Monday, 15 February 2021 at 19:08:48 UTC tke...@gmail.com wrote:

> Did you check the locations I mentioned in my post? To repeat:
>
> If you're asking how to customize the Javascript, it depends on the skin. 
>> For the "Standard" skin, it's in the template itself, index.html.tmpl. Just 
>> modify the template. For the "Seasons" skin, it's in seasons.js.
>
> On Mon, Feb 15, 2021 at 10:05 AM Auchtermuchty Weather  
> wrote:
>
>>
>> The output files need to have '.txt' and the end, but the links to them 
>> mustn't include it so they fit the DokuWiki way of doing things.  By 
>> default they do and I can't find where that code is generated to amend it.
>>
>>
>> On Monday, 15 February 2021 at 14:56:10 UTC tke...@gmail.com wrote:
>>
>>> I'm not sure what you're asking.
>>>
>>> If you're asking how to customize the Javascript, it depends on the 
>>> skin. For the "Standard" skin, it's in the template itself, 
>>> index.html.tmpl. Just modify the template. For the "Seasons" skin, it's in 
>>> seasons.js.
>>>
>>> If you're asking how the name of the generated file is set, it's the 
>>> template name minus the ".tmpl" at the end. So, if you don't want the 
>>> ".txt" suffix, just rename the NOAA templates.
>>>
>>> Does that answer your question?
>>>
>>> On Mon, Feb 15, 2021 at 6:45 AM Auchtermuchty Weather <
>>> shunr...@gmail.com> wrote:
>>>
>>>> I much prefer the output of NOAATable for making the NOAA reports 
>>>> available.
>>>>
>>>> However my template where I want this to appear is creating a Dokuwiki 
>>>> Page, so if the name in the link ends with '.txt' it looks for a file 
>>>> ending in '.txt.txt'.
>>>>
>>>> I have it working with the drop-downs as per the header in the Standard 
>>>> website by not appending the '.txt' in the Javascript that loads the page.
>>>>
>>>> What I'd like to do is customise NOAATable so the link is missing the 
>>>> '.txt' - I'd rather not write my own version of it if possible.
>>>>
>>>> But I've searched & searched and can't find where & how it's 
>>>> implemented.  
>>>>
>>>> -- 
>>>> 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+...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/weewx-user/79992f9a-7079-42bb-bb20-9df8fd088fbdn%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/weewx-user/79992f9a-7079-42bb-bb20-9df8fd088fbdn%40googlegroups.com?utm_medium=email_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+...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/8efe627d-02a3-498b-9148-9552721f6127n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/8efe627d-02a3-498b-9148-9552721f6127n%40googlegroups.com?utm_medium=email_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/5a45c271-61b7-4877-a3c3-494a7219919en%40googlegroups.com.


Re: [weewx-user] Customising NOAATable

2021-02-15 Thread Auchtermuchty Weather

The output files need to have '.txt' and the end, but the links to them 
mustn't include it so they fit the DokuWiki way of doing things.  By 
default they do and I can't find where that code is generated to amend it.


On Monday, 15 February 2021 at 14:56:10 UTC tke...@gmail.com wrote:

> I'm not sure what you're asking.
>
> If you're asking how to customize the Javascript, it depends on the skin. 
> For the "Standard" skin, it's in the template itself, index.html.tmpl. Just 
> modify the template. For the "Seasons" skin, it's in seasons.js.
>
> If you're asking how the name of the generated file is set, it's the 
> template name minus the ".tmpl" at the end. So, if you don't want the 
> ".txt" suffix, just rename the NOAA templates.
>
> Does that answer your question?
>
> On Mon, Feb 15, 2021 at 6:45 AM Auchtermuchty Weather  
> wrote:
>
>> I much prefer the output of NOAATable for making the NOAA reports 
>> available.
>>
>> However my template where I want this to appear is creating a Dokuwiki 
>> Page, so if the name in the link ends with '.txt' it looks for a file 
>> ending in '.txt.txt'.
>>
>> I have it working with the drop-downs as per the header in the Standard 
>> website by not appending the '.txt' in the Javascript that loads the page.
>>
>> What I'd like to do is customise NOAATable so the link is missing the 
>> '.txt' - I'd rather not write my own version of it if possible.
>>
>> But I've searched & searched and can't find where & how it's 
>> implemented.  
>>
>> -- 
>> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/79992f9a-7079-42bb-bb20-9df8fd088fbdn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/79992f9a-7079-42bb-bb20-9df8fd088fbdn%40googlegroups.com?utm_medium=email_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/8efe627d-02a3-498b-9148-9552721f6127n%40googlegroups.com.


[weewx-user] Customising NOAATable

2021-02-15 Thread Auchtermuchty Weather
I much prefer the output of NOAATable for making the NOAA reports available.

However my template where I want this to appear is creating a Dokuwiki 
Page, so if the name in the link ends with '.txt' it looks for a file 
ending in '.txt.txt'.

I have it working with the drop-downs as per the header in the Standard 
website by not appending the '.txt' in the Javascript that loads the page.

What I'd like to do is customise NOAATable so the link is missing the 
'.txt' - I'd rather not write my own version of it if possible.

But I've searched & searched and can't find where & how it's implemented.  

-- 
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/79992f9a-7079-42bb-bb20-9df8fd088fbdn%40googlegroups.com.


[weewx-user] Re: Fixing my database

2020-02-19 Thread Auchtermuchty Weather
Ah I think I understand now.  

After a poke around looking at the .py files, I think I need to update 
archive.rain for one row for that date, then run wee_database 
--rebuild_daily for the date range I've altered.

And I need to make sure I update just one row in Archive for the date, not 
all of them!  I have a row every 5 minutes, so the one for 12:00:00 seems 
appropriate.  I can check before I try the update to make sure they all 
exists.  Still like the idea of using the Excel with the data from the 
other site to build the correct SQL.


On Monday, 17 February 2020 16:42:29 UTC, Auchtermuchty Weather wrote:
>
> Thanks.
>
> I need to go back to late November.  
>
> I've found out how to get the date & time from the dateTime column.  :)
>
> But is it just archive_day_rain.sum I need to update?
>
> The weather station is one of the FineOffset ones, does this do rain 
> rate?  I always assumed it was calculated.  But if fixing the rain & 
> running weewx_database will fix it that will be great.
>
> Looks like I need to read up weewx_database.  I can pick up the external 
> data and put it in Excel which will let me build the SQL statements.  And 
> yes, I will stop weewx and take a copy of weewx.sdb before I start changing 
> data!
>
>
> On Monday, 17 February 2020 15:18:49 UTC, Andrew Milner wrote:
>>
>> depends how completely you want to backfill!!
>> in the archive table there are columns for rain and rainrate which is a) 
>> the rain fall in the arhive period and b) the rainrate in the archive 
>> period.  For stations which do not provide rainrate this may well be a 
>> rainrate which decays over a period .
>>
>> If you can fill in all the archive periods with the rainfall data the 
>> summary data could be recreated from the archive using drop daily and 
>> rebuild daily options of weewx_database utility.
>>
>> alternatively you could fill in the columns in the rain daily summary 
>> table and the rainrate daily summary table for all the days you are missing
>>
>>
>>
>>
>> On Monday, 17 February 2020 17:00:58 UTC+2, Auchtermuchty Weather wrote:
>>>
>>> I've finally sorted out my rain gauge, but now I need to backfill the 
>>> rainfall data.  There is a station near enough to me to use their data, but 
>>> I could do with some guidance about what needs updating in my database, and 
>>> if I need to run anything afterwards.  I used SQL for years in the day job 
>>> so no problems there.
>>>
>>

-- 
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/2cffd713-2a43-4497-918b-aed438d93cb7%40googlegroups.com.


[weewx-user] Re: Fixing my database

2020-02-17 Thread Auchtermuchty Weather
Thanks.

I need to go back to late November.  

I've found out how to get the date & time from the dateTime column.  :)

But is it just archive_day_rain.sum I need to update?

The weather station is one of the FineOffset ones, does this do rain rate?  
I always assumed it was calculated.  But if fixing the rain & running 
weewx_database will fix it that will be great.

Looks like I need to read up weewx_database.  I can pick up the external 
data and put it in Excel which will let me build the SQL statements.  And 
yes, I will stop weewx and take a copy of weewx.sdb before I start changing 
data!


On Monday, 17 February 2020 15:18:49 UTC, Andrew Milner wrote:
>
> depends how completely you want to backfill!!
> in the archive table there are columns for rain and rainrate which is a) 
> the rain fall in the arhive period and b) the rainrate in the archive 
> period.  For stations which do not provide rainrate this may well be a 
> rainrate which decays over a period .
>
> If you can fill in all the archive periods with the rainfall data the 
> summary data could be recreated from the archive using drop daily and 
> rebuild daily options of weewx_database utility.
>
> alternatively you could fill in the columns in the rain daily summary 
> table and the rainrate daily summary table for all the days you are missing
>
>
>
>
> On Monday, 17 February 2020 17:00:58 UTC+2, Auchtermuchty Weather wrote:
>>
>> I've finally sorted out my rain gauge, but now I need to backfill the 
>> rainfall data.  There is a station near enough to me to use their data, but 
>> I could do with some guidance about what needs updating in my database, and 
>> if I need to run anything afterwards.  I used SQL for years in the day job 
>> so no problems there.
>>
>

-- 
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/010a7ca7-a2d3-48dd-b012-591987ca2a33%40googlegroups.com.


[weewx-user] Fixing my database

2020-02-17 Thread Auchtermuchty Weather
I've finally sorted out my rain gauge, but now I need to backfill the 
rainfall data.  There is a station near enough to me to use their data, but 
I could do with some guidance about what needs updating in my database, and 
if I need to run anything afterwards.  I used SQL for years in the day job 
so no problems there.

-- 
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/6b2dcfb9-fd8c-4c9b-9974-6c5682e5ed13%40googlegroups.com.


Re: [weewx-user] Re: Update from v3.6.2 to v3.9.2

2019-11-20 Thread Auchtermuchty Weather
It changed the units in my weewx.conf!  I've changed them back but it was a 
bit annoying.

On Wednesday, 20 November 2019 14:44:35 UTC, Auchtermuchty Weather wrote:
>
> Update was so easy, all I wanted was a wget command to bring the .tar.gz 
> file down to the RPi - instead I copied it across from my PC.  Shutdown at 
> 13:43, a bit of thinking, copying & following instructions, restart at 
> 13:59.
>
> Now to try the Belchertown skin...
>
>
>
> On Monday, 4 November 2019 09:21:42 UTC, Auchtermuchty Weather wrote:
>>
>> I want to try the Belchertown skin.
>>
>>
>> On Sunday, 3 November 2019 16:13:40 UTC, Thomas Keffer wrote:
>>>
>>> No reason to upgrade unless you need the functionality of the newer 
>>> versions. I have a station 
>>> <https://www.wunderground.com/dashboard/pws/KORHOODR8> that is still 
>>> running v2.6.2!
>>>
>>> However, the Python consortium will no longer support Python 2.x as of 1 
>>> January 2020. I suspect operating system providers will begin dropping it 
>>> from their distributions soon after. So, there will be a reason to upgrade 
>>> to V4 sometime next year.
>>>
>>> -tk
>>>
>>> On Sun, Nov 3, 2019 at 7:47 AM p q  wrote:
>>>
>>>> I am in a similar boat. I am running 3.5.0 on my site. I have put off 
>>>> upgrading it since it's running fine with no problems. I want to see if 
>>>> the 
>>>> newer version would cause problems if I upgraded so I created a virtual 
>>>> machine using Virtual Box and installed Raspian on it, put the latest 
>>>> Weewx 
>>>> and copied my custom skin and other files. It took some tweaking but it 
>>>> was 
>>>> fine.
>>>>
>>>> I haven't made the jump to moving my main site to 3.9.x yet. I have 
>>>> been thinking of waiting for 4 but I could if I ran into some reason to 
>>>> upgrade. The thing that might make me upgrade is getting a better 
>>>> forecasting service. I was using WU but it stopped working and I switched 
>>>> to NWS. I might look into one of the others which might mean I upgrade.
>>>>
>>>> Why do you want to upgrade? Unless you change skins you'll see no 
>>>> difference.
>>>>
>>>>
>>>> On Sun, Nov 3, 2019 at 4:28 AM Auchtermuchty Weather <
>>>> shunr...@gmail.com> wrote:
>>>>
>>>>> Think doing some RTFM answered my question.  It looks like I can 
>>>>> install on top and run 'wee_database --update' and all should be well.  
>>>>>
>>>>> Maybe I should keep more up-to-date with new versions of WeeWx, not to 
>>>>> mention new versions of Raspberian!
>>>>>
>>>>>
>>>>>
>>>>> On Sunday, 3 November 2019 11:55:54 UTC, Auchtermuchty Weather wrote:
>>>>>>
>>>>>> I've not updated the Pi running Weewx for quite some time hence it's 
>>>>>> on what's now quite an old version, 3.6.2.
>>>>>>
>>>>>> Are there any gotchas about upgrading to the latest version?  I will 
>>>>>> of course take a backup first!
>>>>>>
>>>>> -- 
>>>>> 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/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com
>>>>>  
>>>>> <https://groups.google.com/d/msgid/weewx-user/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com?utm_medium=email_source=footer>
>>>>> .
>>>>>
>>>>
>>>>
>>>> -- 
>>>> Peter Quinn
>>>> (415)794-2264
>>>>
>>>> -- 
>>>> 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/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com
>>>>  
>>>> <https://groups.google.com/d/msgid/weewx-user/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com?utm_medium=email_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/d478a822-942a-4b82-b891-e19ee195623d%40googlegroups.com.


Re: [weewx-user] Re: Update from v3.6.2 to v3.9.2

2019-11-20 Thread Auchtermuchty Weather
Update was so easy, all I wanted was a wget command to bring the .tar.gz 
file down to the RPi - instead I copied it across from my PC.  Shutdown at 
13:43, a bit of thinking, copying & following instructions, restart at 
13:59.

Now to try the Belchertown skin...



On Monday, 4 November 2019 09:21:42 UTC, Auchtermuchty Weather wrote:
>
> I want to try the Belchertown skin.
>
>
> On Sunday, 3 November 2019 16:13:40 UTC, Thomas Keffer wrote:
>>
>> No reason to upgrade unless you need the functionality of the newer 
>> versions. I have a station 
>> <https://www.wunderground.com/dashboard/pws/KORHOODR8> that is still 
>> running v2.6.2!
>>
>> However, the Python consortium will no longer support Python 2.x as of 1 
>> January 2020. I suspect operating system providers will begin dropping it 
>> from their distributions soon after. So, there will be a reason to upgrade 
>> to V4 sometime next year.
>>
>> -tk
>>
>> On Sun, Nov 3, 2019 at 7:47 AM p q  wrote:
>>
>>> I am in a similar boat. I am running 3.5.0 on my site. I have put off 
>>> upgrading it since it's running fine with no problems. I want to see if the 
>>> newer version would cause problems if I upgraded so I created a virtual 
>>> machine using Virtual Box and installed Raspian on it, put the latest Weewx 
>>> and copied my custom skin and other files. It took some tweaking but it was 
>>> fine.
>>>
>>> I haven't made the jump to moving my main site to 3.9.x yet. I have been 
>>> thinking of waiting for 4 but I could if I ran into some reason to upgrade. 
>>> The thing that might make me upgrade is getting a better forecasting 
>>> service. I was using WU but it stopped working and I switched to NWS. I 
>>> might look into one of the others which might mean I upgrade.
>>>
>>> Why do you want to upgrade? Unless you change skins you'll see no 
>>> difference.
>>>
>>>
>>> On Sun, Nov 3, 2019 at 4:28 AM Auchtermuchty Weather  
>>> wrote:
>>>
>>>> Think doing some RTFM answered my question.  It looks like I can 
>>>> install on top and run 'wee_database --update' and all should be well.  
>>>>
>>>> Maybe I should keep more up-to-date with new versions of WeeWx, not to 
>>>> mention new versions of Raspberian!
>>>>
>>>>
>>>>
>>>> On Sunday, 3 November 2019 11:55:54 UTC, Auchtermuchty Weather wrote:
>>>>>
>>>>> I've not updated the Pi running Weewx for quite some time hence it's 
>>>>> on what's now quite an old version, 3.6.2.
>>>>>
>>>>> Are there any gotchas about upgrading to the latest version?  I will 
>>>>> of course take a backup first!
>>>>>
>>>> -- 
>>>> 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/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/weewx-user/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>>
>>>
>>> -- 
>>> Peter Quinn
>>> (415)794-2264
>>>
>>> -- 
>>> 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/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com
>>>  
>>> <https://groups.google.com/d/msgid/weewx-user/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com?utm_medium=email_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/f00de67d-ae50-4a8c-ac3b-0859754449ab%40googlegroups.com.


Re: [weewx-user] Re: Update from v3.6.2 to v3.9.2

2019-11-04 Thread Auchtermuchty Weather
I want to try the Belchertown skin.


On Sunday, 3 November 2019 16:13:40 UTC, Thomas Keffer wrote:
>
> No reason to upgrade unless you need the functionality of the newer 
> versions. I have a station 
> <https://www.wunderground.com/dashboard/pws/KORHOODR8> that is still 
> running v2.6.2!
>
> However, the Python consortium will no longer support Python 2.x as of 1 
> January 2020. I suspect operating system providers will begin dropping it 
> from their distributions soon after. So, there will be a reason to upgrade 
> to V4 sometime next year.
>
> -tk
>
> On Sun, Nov 3, 2019 at 7:47 AM p q > 
> wrote:
>
>> I am in a similar boat. I am running 3.5.0 on my site. I have put off 
>> upgrading it since it's running fine with no problems. I want to see if the 
>> newer version would cause problems if I upgraded so I created a virtual 
>> machine using Virtual Box and installed Raspian on it, put the latest Weewx 
>> and copied my custom skin and other files. It took some tweaking but it was 
>> fine.
>>
>> I haven't made the jump to moving my main site to 3.9.x yet. I have been 
>> thinking of waiting for 4 but I could if I ran into some reason to upgrade. 
>> The thing that might make me upgrade is getting a better forecasting 
>> service. I was using WU but it stopped working and I switched to NWS. I 
>> might look into one of the others which might mean I upgrade.
>>
>> Why do you want to upgrade? Unless you change skins you'll see no 
>> difference.
>>
>>
>> On Sun, Nov 3, 2019 at 4:28 AM Auchtermuchty Weather > > wrote:
>>
>>> Think doing some RTFM answered my question.  It looks like I can install 
>>> on top and run 'wee_database --update' and all should be well.  
>>>
>>> Maybe I should keep more up-to-date with new versions of WeeWx, not to 
>>> mention new versions of Raspberian!
>>>
>>>
>>>
>>> On Sunday, 3 November 2019 11:55:54 UTC, Auchtermuchty Weather wrote:
>>>>
>>>> I've not updated the Pi running Weewx for quite some time hence it's on 
>>>> what's now quite an old version, 3.6.2.
>>>>
>>>> Are there any gotchas about upgrading to the latest version?  I will of 
>>>> course take a backup first!
>>>>
>>> -- 
>>> 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/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/weewx-user/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com?utm_medium=email_source=footer>
>>> .
>>>
>>
>>
>> -- 
>> Peter Quinn
>> (415)794-2264
>>
>> -- 
>> 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/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/CAA1SM217KEv%2BRn2WErNjpeT35cfVWzhrrx3bVMhTQDp8OxOxOA%40mail.gmail.com?utm_medium=email_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/4c841a7f-59b7-4caf-a57b-55108dd3ab75%40googlegroups.com.


[weewx-user] Re: Update from v3.6.2 to v3.9.2

2019-11-03 Thread Auchtermuchty Weather
Think doing some RTFM answered my question.  It looks like I can install on 
top and run 'wee_database --update' and all should be well.  

Maybe I should keep more up-to-date with new versions of WeeWx, not to 
mention new versions of Raspberian!



On Sunday, 3 November 2019 11:55:54 UTC, Auchtermuchty Weather wrote:
>
> I've not updated the Pi running Weewx for quite some time hence it's on 
> what's now quite an old version, 3.6.2.
>
> Are there any gotchas about upgrading to the latest version?  I will of 
> course take a backup first!
>

-- 
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/6813a5b2-a436-4248-a57f-346e58ccc2aa%40googlegroups.com.


[weewx-user] Update from v3.6.2 to v3.9.2

2019-11-03 Thread Auchtermuchty Weather
I've not updated the Pi running Weewx for quite some time hence it's on 
what's now quite an old version, 3.6.2.

Are there any gotchas about upgrading to the latest version?  I will of 
course take a backup first!

-- 
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/69994ca2-a071-443b-8b6c-2664d64be2c0%40googlegroups.com.


[weewx-user] Re: 24-hour aggregate?

2019-08-07 Thread Auchtermuchty Weather
OK great for the past 24 hours.

Is there anything to choose between (e.g.) '$span($week_delta=1)' and '$week', 
given I'm not offering max/min etc. for the past 2 weeks for example?

On Wednesday, 7 August 2019 09:09:20 UTC+1, Andrew Milner wrote:
>
> have you tried $span with $hour_delta
> eg
> $span($day_delta=1).outTemp.max for the max temp in the previus 24 hours
>
>
>
> On Wednesday, 7 August 2019 10:11:51 UTC+3, Auchtermuchty Weather wrote:
>>
>> Apologies if this is the wrong place to ask.
>>
>> I'd like 24-hour aggregates / max / min rather than today or yesterday.  
>> Is this something that might come along?
>>
>

-- 
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/60721780-d8ed-4fb2-b10c-341d8864f87e%40googlegroups.com.


[weewx-user] Re: 24-hour aggregate?

2019-08-07 Thread Auchtermuchty Weather
Thanks will try that.

On Wednesday, 7 August 2019 09:09:20 UTC+1, Andrew Milner wrote:
>
> have you tried $span with $hour_delta 
> eg
> $span($day_delta=1).outTemp.max for the max temp in the previus 24 hours
>
>
>
> On Wednesday, 7 August 2019 10:11:51 UTC+3, Auchtermuchty Weather wrote:
>>
>> Apologies if this is the wrong place to ask.
>>
>> I'd like 24-hour aggregates / max / min rather than today or yesterday.  
>> Is this something that might come along?
>>
>

-- 
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/8ba430ef-468a-4578-9bdc-400cf686aa78%40googlegroups.com.


[weewx-user] 24-hour aggregate?

2019-08-07 Thread Auchtermuchty Weather
Apologies if this is the wrong place to ask.

I'd like 24-hour aggregates / max / min rather than today or yesterday.  Is 
this something that might come along?

-- 
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/49e0b321-c298-48b4-bfa3-cfb0efa4efb9%40googlegroups.com.


[weewx-user] Re: Cannot start weewx

2018-10-20 Thread Auchtermuchty Weather
Thanks, I compared it's weewx.conf to the one from my own, working, station 
and found I'd missed a couple of rows from the [FineOffsetUSB] section. 

On Saturday, 20 October 2018 13:24:17 UTC+1, gjr80 wrote:
>
> Hi,
>
> Sounds like your weewx.conf is missing something or has a typo. Suggest 
> you go through the [Station] and driver stanzas with a fine tooth comb. If 
> you can't find anything wrong post a sanitised version of your weewx.conf.
>
> Gary
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Cannot start weewx

2018-10-20 Thread Auchtermuchty Weather
Installed the latest WeeWx on a Raspberry Pi, worked my way through 
configuration errors in weewx.conf and now this:

Oct 20 13:09:24 sgcweather systemd[1]: Starting LSB: weewx weather system...
Oct 20 13:09:26 sgcweather weewx[504]: engine: Initializing weewx version 
3.8.2
Oct 20 13:09:26 sgcweather weewx[504]: engine: Using Python 2.7.13 
(default, Sep 26 2018, 18:42:22) #012[GCC 6.3.0 20170516]
Oct 20 13:09:26 sgcweather weewx[504]: engine: Platform 
Linux-4.14.50+-armv6l-with-debian-9.4
Oct 20 13:09:26 sgcweather weewx[504]: engine: Locale is 'en_GB.UTF-8'
Oct 20 13:09:26 sgcweather weewx[504]: engine: pid file is 
/var/run/weewx.pid
Oct 20 13:09:26 sgcweather weewx[493]: Starting weewx weather system: weewx.
Oct 20 13:09:26 sgcweather systemd[1]: Started LSB: weewx weather system.
Oct 20 13:09:26 sgcweather weewx[508]: engine: Using configuration file 
/home/weewx/weewx.conf
Oct 20 13:09:26 sgcweather weewx[508]: engine: Debug is 1
Oct 20 13:09:26 sgcweather weewx[508]: engine: Initializing engine
Oct 20 13:09:26 sgcweather weewx[508]: engine: Caught unrecoverable 
exception in engine:
Oct 20 13:09:26 sgcweather weewx[508]:   'driver'
Oct 20 13:09:26 sgcweather weewx[508]:   Traceback (most recent 
call last):
Oct 20 13:09:26 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 871, in main
Oct 20 13:09:26 sgcweather weewx[508]:   engine = 
engine_class(config_dict)
Oct 20 13:09:26 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 72, in __init__
Oct 20 13:09:26 sgcweather weewx[508]:   
self.setupStation(config_dict)
Oct 20 13:09:27 sgcweather weewx[508]: File 
"/home/weewx/bin/weewx/engine.py", line 90, in setupStation
Oct 20 13:09:27 sgcweather weewx[508]:   driver = 
config_dict[stationType]['driver']
Oct 20 13:09:27 sgcweather weewx[508]: File 
"/usr/lib/python2.7/dist-packages/configobj.py", line 554, in __getitem__
Oct 20 13:09:27 sgcweather weewx[508]:   val = 
dict.__getitem__(self, key)
Oct 20 13:09:27 sgcweather weewx[508]:   KeyError: 'driver'
Oct 20 13:09:27 sgcweather weewx[508]:   Exiting.

It looks like the RPi has 'seen' the weather station:

pi@sgcweather:/home/weewx $ lsusb
Bus 001 Device 004: ID 1941:8021 Dream Link WH1080 Weather Station / USB 
Missile Launcher
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 
Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp. SMC9512/9514 
USB Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

The weather station is an Aercus WS2083 which is on the list of devices.  
Operating System is the latest Stretch Lite.

Nothing of interest in /var/log/debug:

Oct 20 13:09:26 sgcweather weewx[508]: engine: Debug is 1
Oct 20 13:09:26 sgcweather weewx[508]: engine: Initializing engine


It worked fine with the Simulator...



-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: "cannot find 'document'"

2018-10-12 Thread Auchtermuchty Weather
Ah - must have lost them along the way.  Thanks for explaining.

On Friday, 12 October 2018 18:21:46 UTC+1, Andrew Milner wrote:
>
> The original had #raw and #end raw around the js code - so that cheetah 
> would ignore the section - as the comment says - to avoid the dollars 
> causing confusion!!
>
>
>
> On Friday, 12 October 2018 17:45:06 UTC+3, Auchtermuchty Weather wrote:
>>
>> I am getting this error when I run wee_reports for the Bootstrap skin. 
>> This is using WeeWx 3.8.2 on an RPi running the latest Stretch Lite, Debian 
>> 9.
>>
>> From /var/log/syslog:
>>
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator: Generate 
>> failed with exception ''
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator:  
>> Ignoring template /home/weewx/skins/Bootstrap/index.html.tmpl
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator:  
>> Reason: cannot find 'document'
>> Oct 12 14:07:50 sgcweather wee_reports[28336]:   Traceback (most 
>> recent call last):
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
>> "/home/weewx/bin/weewx/cheetahgenerator.py", line 330, in generate
>> Oct 12 14:07:50 sgcweather wee_reports[28336]:   print >> _file, 
>> compiled_template
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
>> "/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in 
>> __str__
>> Oct 12 14:07:50 sgcweather wee_reports[28336]:   rc = 
>> getattr(self, mainMethName)()
>> Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
>> "_home_weewx_skins_Bootstrap_index_html_tmpl.py", line 216, in respond
>> Oct 12 14:07:50 sgcweather wee_reports[28336]:   NotFound: cannot 
>> find 'document'
>> Oct 12 14:07:53 sgcweather wee_reports[28336]: cheetahgenerator: 
>> Generated 9 files for report HTMLPages in 28.55 seconds
>>
>> Unfortunately it doesn't give the name of what it can't find.
>>
>> The index.html.tmpl file exists:
>>
>> $ ls /home/weewx/skins/Bootstrap/index.html.tmpl
>> /home/weewx/skins/Bootstrap/index.html.tmpl
>>
>> It has three #include statements, the files they refer to all exist as 
>> well so I'm not sure what the error is.
>>
>> #include "gauges.html.tmpl"
>> #include "stationinfo.html.tmpl"
>> #include "graphs.html.tmpl"
>>
>>
>> Index.html.tmpl:
>>
>> 
>> 
>>   
>> 
>> 
>> 
>> $BootstrapLabels.title
>> 
>> 
>> 
>> 
>> 
>>   
>>   
>> 
>> 
>>   
>> > data-toggle="collapse" data-target=".navbar-collapse">
>>   Toggle navigation
>>   
>>   
>>   
>>   
>> 
>> > href="$BootstrapLabels.location_href">$station.location
>>
>>   
>> 
>>   > href="#">$BootstrapLabels.headings.front_page
>>   > href="stats.html">$BootstrapLabels.headings.stats
>>   > href="history.html">$BootstrapLabels.headings.history
>>   $BootstrapLabels.headings.news
>>   > href="about.html">$BootstrapLabels.headings.about
>> 
>> $BootstrapLabels.headings.last_update $current.dateTime
>>   
>>   
>> 
>> 
>>   
>> 
>>   
>> #include "gauges.html.tmpl"
>>   
>> #include "stationinfo.html.tmpl"
>>  
>> 
>> 
>>
>>  > href="#">$BootstrapLabels.timespans.day
>>  > href="week.html">$BootstrapLabels.timespans.week
>>  > href="month.html">$BootstrapLabels.timespans.month
>>  > href="year.html">$BootstrapLabels.timespans.year
>>  
>>
>> 
>> #include "graphs.html.tmpl"
>>  
>>
>>   
>> 
>> 
>>SGC 2018
>> 
>> 
>> 
>> https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js</a>
>> ">
>> 
>> 
>> 

Re: [weewx-user] Re: "cannot find 'document'"

2018-10-12 Thread Auchtermuchty Weather
Fab, that worked.  Thanks.

On Friday, 12 October 2018 16:21:56 UTC+1, Auchtermuchty Weather wrote:
>
> Thanks will try this, though strangely it used to generate.
>
> On Friday, 12 October 2018 15:53:06 UTC+1, Thomas Keffer wrote:
>>
>> Oh, and you're going to have the same problem with 'this'. So, you want
>>
>>   \$(document).delegate('*[data-toggle="lightbox"]', 'click', 
>> function(event) {
>> event.preventDefault();
>> \$(this).ekkoLightbox();
>> });
>>
>> On Fri, Oct 12, 2018 at 7:51 AM Thomas Keffer  wrote:
>>
>>> I suspect the problem is a collision between jQuery and Cheetah.
>>>
>>> Your index.html.tmpl template contains the phrase
>>>
>>>   $(document).delegate('*[data-toggle="lightbox"]', 'click', 
>>> function(event) {
>>> event.preventDefault();
>>> $(this).ekkoLightbox();
>>> });
>>>
>>> This is a call to the jQuery function $(), but Cheetah is treating it as 
>>> a tag. Escape the dollar sign like this:
>>>
>>>   \$(document).delegate('*[data-toggle="lightbox"]', 'click', 
>>> function(event) {
>>> event.preventDefault();
>>> $(this).ekkoLightbox();
>>> });
>>>
>>> -tk
>>>
>>> On Fri, Oct 12, 2018 at 7:47 AM Auchtermuchty Weather <
>>> shunr...@gmail.com> wrote:
>>>
>>>>
>>>> Just to add, I use 'sudo' to run wee_reports as otherwise I get 
>>>> permission errors.
>>>>
>>>>>
>>>>> -- 
>>>> 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+...@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: "cannot find 'document'"

2018-10-12 Thread Auchtermuchty Weather
Thanks will try this, though strangely it used to generate.

On Friday, 12 October 2018 15:53:06 UTC+1, Thomas Keffer wrote:
>
> Oh, and you're going to have the same problem with 'this'. So, you want
>
>   \$(document).delegate('*[data-toggle="lightbox"]', 'click', 
> function(event) {
> event.preventDefault();
> \$(this).ekkoLightbox();
> });
>
> On Fri, Oct 12, 2018 at 7:51 AM Thomas Keffer  > wrote:
>
>> I suspect the problem is a collision between jQuery and Cheetah.
>>
>> Your index.html.tmpl template contains the phrase
>>
>>   $(document).delegate('*[data-toggle="lightbox"]', 'click', 
>> function(event) {
>> event.preventDefault();
>> $(this).ekkoLightbox();
>> });
>>
>> This is a call to the jQuery function $(), but Cheetah is treating it as 
>> a tag. Escape the dollar sign like this:
>>
>>   \$(document).delegate('*[data-toggle="lightbox"]', 'click', 
>> function(event) {
>> event.preventDefault();
>> $(this).ekkoLightbox();
>> });
>>
>> -tk
>>
>> On Fri, Oct 12, 2018 at 7:47 AM Auchtermuchty Weather > > wrote:
>>
>>>
>>> Just to add, I use 'sudo' to run wee_reports as otherwise I get 
>>> permission errors.
>>>
>>>>
>>>> -- 
>>> 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+...@googlegroups.com .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: "cannot find 'document'"

2018-10-12 Thread Auchtermuchty Weather

Just to add, I use 'sudo' to run wee_reports as otherwise I get permission 
errors.

>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] "cannot find 'document'"

2018-10-12 Thread Auchtermuchty Weather
I am getting this error when I run wee_reports for the Bootstrap skin. This 
is using WeeWx 3.8.2 on an RPi running the latest Stretch Lite, Debian 9.

>From /var/log/syslog:

Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator: Generate 
failed with exception ''
Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator:  
Ignoring template /home/weewx/skins/Bootstrap/index.html.tmpl
Oct 12 14:07:50 sgcweather wee_reports[28336]: cheetahgenerator:  
Reason: cannot find 'document'
Oct 12 14:07:50 sgcweather wee_reports[28336]:   Traceback (most recent 
call last):
Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
"/home/weewx/bin/weewx/cheetahgenerator.py", line 330, in generate
Oct 12 14:07:50 sgcweather wee_reports[28336]:   print >> _file, 
compiled_template
Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
"/usr/lib/python2.7/dist-packages/Cheetah/Template.py", line 1005, in 
__str__
Oct 12 14:07:50 sgcweather wee_reports[28336]:   rc = getattr(self, 
mainMethName)()
Oct 12 14:07:50 sgcweather wee_reports[28336]: File 
"_home_weewx_skins_Bootstrap_index_html_tmpl.py", line 216, in respond
Oct 12 14:07:50 sgcweather wee_reports[28336]:   NotFound: cannot find 
'document'
Oct 12 14:07:53 sgcweather wee_reports[28336]: cheetahgenerator: Generated 
9 files for report HTMLPages in 28.55 seconds

Unfortunately it doesn't give the name of what it can't find.

The index.html.tmpl file exists:

$ ls /home/weewx/skins/Bootstrap/index.html.tmpl
/home/weewx/skins/Bootstrap/index.html.tmpl

It has three #include statements, the files they refer to all exist as well 
so I'm not sure what the error is.

#include "gauges.html.tmpl"
#include "stationinfo.html.tmpl"
#include "graphs.html.tmpl"


Index.html.tmpl:



  



$BootstrapLabels.title





  
  


  

  Toggle navigation
  
  
  
  

$station.location
   
  

  $BootstrapLabels.headings.front_page
  $BootstrapLabels.headings.stats
  $BootstrapLabels.headings.history
  $BootstrapLabels.headings.news
  $BootstrapLabels.headings.about

$BootstrapLabels.headings.last_update $current.dateTime
  
  


  

  
#include "gauges.html.tmpl"
  
#include "stationinfo.html.tmpl"
 


   
 $BootstrapLabels.timespans.day
 $BootstrapLabels.timespans.week
 $BootstrapLabels.timespans.month
 $BootstrapLabels.timespans.year
 
   

#include "graphs.html.tmpl"
 
   
  


   SGC 2018



https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js";>





$(document).delegate('*[data-toggle="lightbox"]', 'click', 
function(event) {
event.preventDefault();
$(this).ekkoLightbox();
});

  


gauges.html.tmp:

  
  

Wind Rose
windRoseGuage.png

   
  
  

$Labels.Generic.outTemp
outTempGauge.png

  

$Labels.Generic.barometer
barometerGauge.png

   
  
  

$Labels.Generic.windDir
windDirGauge.png

  

$Labels.Generic.outHumidity
outHumidityGauge.png

   
  
  

$Labels.Generic.windSpeed
windSpeedGuage.png

  

$Labels.Generic.windGust
windGustGuage.png

   


stationinfo.html.tmpl:



  
  
$BootstrapLabels.status.latitude
$station.latitude[0] $station.latitude[1]' 
$station.latitude[2]
  
  
$BootstrapLabels.status.longitude
$station.longitude[0] 
$station.longitude[1]' $station.longitude[2]
  
  
$BootstrapLabels.status.altitude
$station.altitude
  
  
$BootstrapLabels.status.station_uptime
$station.uptime
  
  
$BootstrapLabels.status.server_uptime
$station.os_uptime
  

[weewx-user] Re: Wind scatter graph

2018-10-12 Thread Auchtermuchty Weather
That would be terrific if you could.  No massive rush as the weather 
station that was blown away back in September hasn't been replaced yet - 
it's an insurance job as half the roof of the building it was on went as 
well.  :o

Thanks for the link to the code, but I've never coded in Python in my life 

On Friday, 12 October 2018 11:05:26 UTC+1, gjr80 wrote:
>
> Late last year Neil and myself were collaborating on a revised version of 
> my stacked windrose generator that would be able to produce 4 different 
> polar wind plots. One plot is what I call the traditional windrose and the 
> others we called trail, spiral and scatter plots. Unfortunately, I can't 
> remember for the life of me exactly what these 3 plots did (other than the 
> obvious). I looked just now but can't put my hands on any of the sample 
> plots we had working.
>
> Unfortunately again, Neil started a new job late last year and I had other 
> things come up and we did not take the new generator any further. I seem to 
> remember we basically had it working and just needed to fix a number minor 
> issues before it could be released as a WeeWX extension. I am happy to have 
> a look at it when I get home on 22nd and see if the scatter plot is what 
> you seek. It certainly should not take too much extra work to get the whole 
> thing tidied up and out the door.
>
> Not much to see other than code but the repo link is 
> https://github.com/gjr80/weewx-polarwindplot
>
> Gary
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Wind scatter graph

2018-10-12 Thread Auchtermuchty Weather
Is there anything for WeeWx which will produce a graph similar to this one? 
 

https://uk.mathworks.com/matlabcentral/mlc-downloads/downloads/submissions/49488/versions/20/screenshot.jpg

Not worried about the colour coding for recency, just wanting the dots on 
the rose. 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Stopping Weewx from auto starting

2018-10-12 Thread Auchtermuchty Weather


On Thursday, 11 October 2018 22:50:15 UTC+1, vince wrote:
>
> Recent weewx versions should already delay startup until you get accurate 
> system time.
>

Out of interest, how does it do that? 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Cannot install brewster76/Fuzzy-Archer

2018-10-11 Thread Auchtermuchty Weather

And having found and corrected my error in editing one of it's skin.conf 
files, it's working just fine with the Simulator.

On Thursday, 11 October 2018 15:06:28 UTC+1, Auchtermuchty Weather wrote:
>
> It installed the packed one for me!  :)
>
> On Thursday, 11 October 2018 13:39:19 UTC+1, Thomas Keffer wrote:
>>
>> The documentation is not very clear. The utility wee_extension can 
>> install an *unpacked* extension from a directory. You have to unpack it 
>> first.
>>
>> -tk
>>
>> On Thu, Oct 11, 2018 at 4:15 AM Auchtermuchty Weather  
>> wrote:
>>
>>> Ah ha!  thanks.  Why on earth does the documentation suggest install 
>>> points to the directory containing the .tar.gz rather than the .gar.gz 
>>> itself?  And why didn't I think of that?  :)
>>>
>>> Now to make it work...
>>>
>>>
>>> On Thursday, 11 October 2018 08:43:24 UTC+1, Auchtermuchty Weather wrote:
>>>>
>>>> I’d like to use the gauges for a weather station I’m setting up, but am 
>>>> having problems installing the download in 
>>>> *https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz* 
>>>> <https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz>.
>>>>
>>>>  
>>>>
>>>> I installed WeeWx myself so it’s in /home/weewx.  I downloaded 
>>>> fuzz-archer-2.23.tar.gz it in /tmp where it’s the only .tar.gz file.
>>>>
>>>>  
>>>>
>>>> When I attempt to run the installation script I end up with an error:
>>>>
>>>>  
>>>>
>>>> $ pwd
>>>>
>>>> /home/weewx
>>>>
>>>>  
>>>>
>>>> $ ls /tmp/*gz
>>>>
>>>> /tmp/fuzzy-archer-2.23.tar.gz
>>>>
>>>>  
>>>>
>>>> $ bin/wee_extension --install=/tmp
>>>>
>>>> Request to install '/tmp'
>>>>
>>>> Traceback (most recent call last):
>>>>
>>>>   File "bin/wee_extension", line 83, in 
>>>>
>>>> main()
>>>>
>>>>   File "bin/wee_extension", line 75, in main
>>>>
>>>> ext.install_extension(options.install)
>>>>
>>>>   File "/home/weewx/bin/weecfg/extension.py", line 122, in 
>>>> install_extension
>>>>
>>>> self.install_from_dir(extension_path)
>>>>
>>>>   File "/home/weewx/bin/weecfg/extension.py", line 137, in 
>>>> install_from_dir
>>>>
>>>> extension_dir)
>>>>
>>>>   File "/home/weewx/bin/weecfg/__init__.py", line 1296, in 
>>>> get_extension_installer
>>>>
>>>> raise ExtensionError("Cannot find 'install' module in %s" % 
>>>> extension_installer_dir)
>>>> weecfg.ExtensionError: Cannot find 'install' module in /tmp
>>>>
>>>> I imagine I've made a very simple & stupid mistake!
>>>>
>>> -- 
>>> 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+...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Cannot install brewster76/Fuzzy-Archer

2018-10-11 Thread Auchtermuchty Weather
It installed the packed one for me!  :)

On Thursday, 11 October 2018 13:39:19 UTC+1, Thomas Keffer wrote:
>
> The documentation is not very clear. The utility wee_extension can install 
> an *unpacked* extension from a directory. You have to unpack it first.
>
> -tk
>
> On Thu, Oct 11, 2018 at 4:15 AM Auchtermuchty Weather  > wrote:
>
>> Ah ha!  thanks.  Why on earth does the documentation suggest install 
>> points to the directory containing the .tar.gz rather than the .gar.gz 
>> itself?  And why didn't I think of that?  :)
>>
>> Now to make it work...
>>
>>
>> On Thursday, 11 October 2018 08:43:24 UTC+1, Auchtermuchty Weather wrote:
>>>
>>> I’d like to use the gauges for a weather station I’m setting up, but am 
>>> having problems installing the download in 
>>> *https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz* 
>>> <https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz>.
>>>
>>>  
>>>
>>> I installed WeeWx myself so it’s in /home/weewx.  I downloaded 
>>> fuzz-archer-2.23.tar.gz it in /tmp where it’s the only .tar.gz file.
>>>
>>>  
>>>
>>> When I attempt to run the installation script I end up with an error:
>>>
>>>  
>>>
>>> $ pwd
>>>
>>> /home/weewx
>>>
>>>  
>>>
>>> $ ls /tmp/*gz
>>>
>>> /tmp/fuzzy-archer-2.23.tar.gz
>>>
>>>  
>>>
>>> $ bin/wee_extension --install=/tmp
>>>
>>> Request to install '/tmp'
>>>
>>> Traceback (most recent call last):
>>>
>>>   File "bin/wee_extension", line 83, in 
>>>
>>> main()
>>>
>>>   File "bin/wee_extension", line 75, in main
>>>
>>> ext.install_extension(options.install)
>>>
>>>   File "/home/weewx/bin/weecfg/extension.py", line 122, in 
>>> install_extension
>>>
>>> self.install_from_dir(extension_path)
>>>
>>>   File "/home/weewx/bin/weecfg/extension.py", line 137, in 
>>> install_from_dir
>>>
>>> extension_dir)
>>>
>>>   File "/home/weewx/bin/weecfg/__init__.py", line 1296, in 
>>> get_extension_installer
>>>
>>> raise ExtensionError("Cannot find 'install' module in %s" % 
>>> extension_installer_dir)
>>> weecfg.ExtensionError: Cannot find 'install' module in /tmp
>>>
>>> I imagine I've made a very simple & stupid mistake!
>>>
>> -- 
>> 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+...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Cannot install brewster76/Fuzzy-Archer

2018-10-11 Thread Auchtermuchty Weather
Ah ha!  thanks.  Why on earth does the documentation suggest install points 
to the directory containing the .tar.gz rather than the .gar.gz itself?  
And why didn't I think of that?  :)

Now to make it work...


On Thursday, 11 October 2018 08:43:24 UTC+1, Auchtermuchty Weather wrote:
>
> I’d like to use the gauges for a weather station I’m setting up, but am 
> having problems installing the download in 
> *https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz* 
> <https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz>.
>
>  
>
> I installed WeeWx myself so it’s in /home/weewx.  I downloaded 
> fuzz-archer-2.23.tar.gz it in /tmp where it’s the only .tar.gz file.
>
>  
>
> When I attempt to run the installation script I end up with an error:
>
>  
>
> $ pwd
>
> /home/weewx
>
>  
>
> $ ls /tmp/*gz
>
> /tmp/fuzzy-archer-2.23.tar.gz
>
>  
>
> $ bin/wee_extension --install=/tmp
>
> Request to install '/tmp'
>
> Traceback (most recent call last):
>
>   File "bin/wee_extension", line 83, in 
>
> main()
>
>   File "bin/wee_extension", line 75, in main
>
> ext.install_extension(options.install)
>
>   File "/home/weewx/bin/weecfg/extension.py", line 122, in 
> install_extension
>
> self.install_from_dir(extension_path)
>
>   File "/home/weewx/bin/weecfg/extension.py", line 137, in install_from_dir
>
> extension_dir)
>
>   File "/home/weewx/bin/weecfg/__init__.py", line 1296, in 
> get_extension_installer
>
> raise ExtensionError("Cannot find 'install' module in %s" % 
> extension_installer_dir)
> weecfg.ExtensionError: Cannot find 'install' module in /tmp
>
> I imagine I've made a very simple & stupid mistake!
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Cannot install brewster76/Fuzzy-Archer

2018-10-11 Thread Auchtermuchty Weather

PS this is on a Raspberry Pi with the latest Stretch Lite downloaded and 
installed a couple of days ago.


On Thursday, 11 October 2018 08:43:24 UTC+1, Auchtermuchty Weather wrote:
>
> I’d like to use the gauges for a weather station I’m setting up, but am 
> having problems installing the download in 
> *https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz* 
> <https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz>.
>
>  
>
> I installed WeeWx myself so it’s in /home/weewx.  I downloaded 
> fuzz-archer-2.23.tar.gz it in /tmp where it’s the only .tar.gz file.
>
>  
>
> When I attempt to run the installation script I end up with an error:
>
>  
>
> $ pwd
>
> /home/weewx
>
>  
>
> $ ls /tmp/*gz
>
> /tmp/fuzzy-archer-2.23.tar.gz
>
>  
>
> $ bin/wee_extension --install=/tmp
>
> Request to install '/tmp'
>
> Traceback (most recent call last):
>
>   File "bin/wee_extension", line 83, in 
>
> main()
>
>   File "bin/wee_extension", line 75, in main
>
> ext.install_extension(options.install)
>
>   File "/home/weewx/bin/weecfg/extension.py", line 122, in 
> install_extension
>
> self.install_from_dir(extension_path)
>
>   File "/home/weewx/bin/weecfg/extension.py", line 137, in install_from_dir
>
> extension_dir)
>
>   File "/home/weewx/bin/weecfg/__init__.py", line 1296, in 
> get_extension_installer
>
> raise ExtensionError("Cannot find 'install' module in %s" % 
> extension_installer_dir)
> weecfg.ExtensionError: Cannot find 'install' module in /tmp
>
> I imagine I've made a very simple & stupid mistake!
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Cannot install brewster76/Fuzzy-Archer

2018-10-11 Thread Auchtermuchty Weather
 

I’d like to use the gauges for a weather station I’m setting up, but am 
having problems installing the download in 
*https://github.com/brewster76/fuzzy-archer/archive/v2.23.tar.gz* 
.

 

I installed WeeWx myself so it’s in /home/weewx.  I downloaded 
fuzz-archer-2.23.tar.gz it in /tmp where it’s the only .tar.gz file.

 

When I attempt to run the installation script I end up with an error:

 

$ pwd

/home/weewx

 

$ ls /tmp/*gz

/tmp/fuzzy-archer-2.23.tar.gz

 

$ bin/wee_extension --install=/tmp

Request to install '/tmp'

Traceback (most recent call last):

  File "bin/wee_extension", line 83, in 

main()

  File "bin/wee_extension", line 75, in main

ext.install_extension(options.install)

  File "/home/weewx/bin/weecfg/extension.py", line 122, in install_extension

self.install_from_dir(extension_path)

  File "/home/weewx/bin/weecfg/extension.py", line 137, in install_from_dir

extension_dir)

  File "/home/weewx/bin/weecfg/__init__.py", line 1296, in 
get_extension_installer

raise ExtensionError("Cannot find 'install' module in %s" % 
extension_installer_dir)
weecfg.ExtensionError: Cannot find 'install' module in /tmp

I imagine I've made a very simple & stupid mistake!

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] UK Replacement hardware

2018-09-28 Thread Auchtermuchty Weather

The weather station on the roof of the gliding club was blown away along 
with some of the roof last week.

Wondering what to best replace it with that will work with WeeWX.  Looking 
for mid-to-low price, but replacement sensors must be available.  We are in 
the UK so looking for a UK supplier.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Images without Bottom Label

2017-05-01 Thread Auchtermuchty Weather
Can I generate some of my images without the day & time at the bottom?  
Commenting out bottom_label_format doesn't make that happen.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Amending spurious readings in the database

2017-04-14 Thread Auchtermuchty Weather
The colour coding makes it easier (for me) to spot the days with rogue data 
although sorting the data by (say) windspeed is another say to find it and 
yes, I realise what I need to do to find the values.  I put the spreadsheet 
up to show people what I was seeing.

My question was if this is a sign of sensors reaching the end of their 
life, given most of the rogue values have occurred since the start of March 
this year.



On Friday, 14 April 2017 10:02:52 UTC+1, Andrew Milner wrote:

> What you need to do is to use the NOAA data to possibly pinpoint a rogue 
> day, and then check the archive table to see if there is a single rogue 
> record.
>
> If there is then you can just correct the rogue record or delete it even, 
> and rebuild the stats tables and noaa files if required.
>
> You should check the log at around the time the rogue record or recoprds 
> were inserted into the database and see if there were issues recorded in 
> the log.  Maybe you have a comms problem.
>
> I could not tell what we were supposed to deduce from the colour coded 
> noaa data - since there were so many colours in use!!
>
>
>
> On Friday, 14 April 2017 11:19:15 UTC+3, Auchtermuchty Weather wrote:
>
>> Have picked up my NOAA data into excel, and find that nearly all my 'bad' 
>> values are since 1st March this year.  It was December 2016 when I replaced 
>> the Pi with a better one with the then up-to-date version of Weewx.
>>
>> XLXS file attached - I have colour coded the values in each appropriate 
>> column.
>>
>> Makes me think I do have a sensor problem or problems.  :(
>>  
>>
>> On Wednesday, 12 April 2017 09:20:06 UTC+1, Auchtermuchty Weather wrote:
>>
>>> I am getting the odd spike in my readings, for example:
>>>
>>>
>>>TEMPERATURE (C), RAIN (mm), WIND SPEED (knots)
>>>
>>>  HEAT   COOL AVG
>>>   MEAN   DEGDEG  
>>> WIND   DOM
>>> DAY   TEMP   HIGH   TIMELOW   TIME   DAYS   DAYS   RAIN  SPEED   
>>> HIGH   TIMEDIR
>>>
>>> ---
>>> 013.5   13.1  11:12   -1.1  04:31   14.80.00.00.4
>>> 6.0  07:19 22
>>> 024.3   13.4  05:56   -0.7  00:02   14.00.0  148.81.8   
>>> 44.9  05:56 25
>>> 034.3   11.9  11:31   -2.3  07:56   14.00.05.10.7
>>> 8.6  22:43191
>>> 045.26.7  15:304.0  08:30   13.20.09.90.7   
>>> 12.6  09:50207
>>> 055.6   10.3  15:25   -0.2  23:51   12.70.03.60.0
>>> 3.3  07:37108
>>> 065.2   16.7  14:55   -0.3  01:18   13.10.01.20.1   
>>> 43.5  15:34130
>>> 075.1   12.4  11:19  -15.1  08:56   13.20.0  807.90.4
>>> 8.0  16:15 77
>>> 087.3   13.3  11:314.8  07:30   11.00.02.41.7   
>>> 19.2  11:44360
>>> 098.0   14.3  14:262.7  23:51   10.30.0  271.81.2   
>>> 11.9  08:48345
>>> 106.0   10.2  16:021.2  02:30   12.40.0   76.80.1   
>>> 26.4  07:35249
>>> 11   10.2   16.3  14:02  -38.0  15:328.10.0  625.50.6  
>>> 128.9  06:15 29
>>>
>>>
>>> There is no way there has been a wind speed of 128.9 knots!
>>>
>>> I can't remember how to fix these, nor can I remember if there is a 
>>> setup somewhere to reject readings outside the parameters.
>>>
>>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Amending spurious readings in the database

2017-04-13 Thread Auchtermuchty Weather
Thanks, the backfill in progress and I have a feeling my weather station 
might have problems as it's clear the erroneous readings have greatly 
increased.

I have a question about the QC.  It's clear what the temperature values 
(for example) should be, but rain is a cumulative thing, so over what 
period of time?  I'm guessing between readings, but to me that doesn't make 
sense with a default QC value of 60 inches!


On Wednesday, 12 April 2017 09:20:06 UTC+1, Auchtermuchty Weather wrote:

> I am getting the odd spike in my readings, for example:
>
>
>TEMPERATURE (C), RAIN (mm), WIND SPEED (knots)
>
>  HEAT   COOL AVG
>   MEAN   DEGDEG  
> WIND   DOM
> DAY   TEMP   HIGH   TIMELOW   TIME   DAYS   DAYS   RAIN  SPEED   
> HIGH   TIMEDIR
>
> ---
> 013.5   13.1  11:12   -1.1  04:31   14.80.00.00.46.0  
> 07:19 22
> 024.3   13.4  05:56   -0.7  00:02   14.00.0  148.81.8   44.9  
> 05:56 25
> 034.3   11.9  11:31   -2.3  07:56   14.00.05.10.78.6  
> 22:43191
> 045.26.7  15:304.0  08:30   13.20.09.90.7   12.6  
> 09:50207
> 055.6   10.3  15:25   -0.2  23:51   12.70.03.60.03.3  
> 07:37108
> 065.2   16.7  14:55   -0.3  01:18   13.10.01.20.1   43.5  
> 15:34130
> 075.1   12.4  11:19  -15.1  08:56   13.20.0  807.90.48.0  
> 16:15 77
> 087.3   13.3  11:314.8  07:30   11.00.02.41.7   19.2  
> 11:44360
> 098.0   14.3  14:262.7  23:51   10.30.0  271.81.2   11.9  
> 08:48345
> 106.0   10.2  16:021.2  02:30   12.40.0   76.80.1   26.4  
> 07:35249
> 11   10.2   16.3  14:02  -38.0  15:328.10.0  625.50.6  128.9  
> 06:15 29
>
>
> There is no way there has been a wind speed of 128.9 knots!
>
> I can't remember how to fix these, nor can I remember if there is a setup 
> somewhere to reject readings outside the parameters.
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Amending spurious readings in the database

2017-04-12 Thread Auchtermuchty Weather
I am getting the odd spike in my readings, for example:


   TEMPERATURE (C), RAIN (mm), WIND SPEED (knots)

 HEAT   COOL AVG
  MEAN   DEGDEG  
WIND   DOM
DAY   TEMP   HIGH   TIMELOW   TIME   DAYS   DAYS   RAIN  SPEED   HIGH   
TIMEDIR
---
013.5   13.1  11:12   -1.1  04:31   14.80.00.00.46.0  
07:19 22
024.3   13.4  05:56   -0.7  00:02   14.00.0  148.81.8   44.9  
05:56 25
034.3   11.9  11:31   -2.3  07:56   14.00.05.10.78.6  
22:43191
045.26.7  15:304.0  08:30   13.20.09.90.7   12.6  
09:50207
055.6   10.3  15:25   -0.2  23:51   12.70.03.60.03.3  
07:37108
065.2   16.7  14:55   -0.3  01:18   13.10.01.20.1   43.5  
15:34130
075.1   12.4  11:19  -15.1  08:56   13.20.0  807.90.48.0  
16:15 77
087.3   13.3  11:314.8  07:30   11.00.02.41.7   19.2  
11:44360
098.0   14.3  14:262.7  23:51   10.30.0  271.81.2   11.9  
08:48345
106.0   10.2  16:021.2  02:30   12.40.0   76.80.1   26.4  
07:35249
11   10.2   16.3  14:02  -38.0  15:328.10.0  625.50.6  128.9  
06:15 29


There is no way there has been a wind speed of 128.9 knots!

I can't remember how to fix these, nor can I remember if there is a setup 
somewhere to reject readings outside the parameters.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Replacing the Raspberry Pi

2016-12-16 Thread Auchtermuchty Weather
Well the last restart has fixed it with nothing else being done!  

The generated page is visible via the Pi's web server, and it's uploading 
to the other PC which serves it to the wider web.  Wunderground reports I 
am back on line as well, so it is looking good.

http://muchty-weather.org.uk/weather/

(I don't put wind direction data on as due to the location of the sensors 
it's meaningless)

Think the initial problem was not being hot plug the Pi.  I was keen to 
switch to wifi having found the problems I did have with it are resolved in 
latest version of the Pi OS to get rid of the Homeplug and it's cable.



On Friday, 16 December 2016 15:29:32 UTC, Andrew Milner wrote:

> Just do one thing at a time
>
> still have not seen the log from start for 10 minutes when using wifi!!
>
> Personally, if it used to be Ethernet then I would be using Ethernet now 
> and only change to wifi when once I knew that what used to work still 
> works!!
>
> I never imagined the console had moved - I was always assuming that it 
> would be the pi in a different place - but that still means the cable run 
> from weather station to old pi is not exactly the same as weather station 
> to new pi, and the new pi may be located near interference or the cable may 
> now be crossing over a cause of interference - when it wasn't before.
>
>
>
> On 16 December 2016 at 17:21, Auchtermuchty Weather <shunr...@gmail.com 
> > wrote:
>
>> The weather station is in exactly the same place.  The Pi is in a 
>> slightly different one, I'm not using a hub as this is one of the newer Pis 
>> with 4 USB ports - the old Pi had one but I was using a wired network via a 
>> Powerlink plug.
>>
>> However I can switch back to the Powerlink...
>>
>>
>> On Friday, 16 December 2016 15:09:41 UTC, Andrew Milner wrote:
>>
>>> switching on a wifi dongle will certainly cause the system to be busy 
>>> while it sorts itself out and estasblishes the network connection - and 
>>> depending on hoable and physicallyw you have things connected may well 
>>> cause problems (especially on a rpi) and especially if you are not using a 
>>> powered hub.  Also I thought you had moved the station from one pi to 
>>> another - so you have moved the cable and physically reconnected to the new 
>>> rpi - er so I cant be the same as it has been for 4 years - or are we still 
>>> on the original rpi and just upgraded the weewx?  Am getting confuzzed now 
>>>  think I'll just stay quiet for a while ..
>>>
>>>
>>>
>>> On Friday, 16 December 2016 17:02:36 UTC+2, Auchtermuchty Weather wrote:
>>>
>>>> Could switching to a wifi dongle cause enough interference to be a 
>>>> problem?  Otherwise it's almost exactly as it's been for 4 years.
>>>>
>>>>
>>>>
>>>> On Friday, 16 December 2016 14:56:01 UTC, Andrew Milner wrote:
>>>>
>>>>>  or you could just have it routed badly now near some form of 
>>>>> interference ..
>>>>>
>>>>> slow down
>>>>>
>>>>> 1.  connect all your hardware
>>>>> 2. stop weewx
>>>>> 3. set debug = 1 in weewx.conf
>>>>> 3. start weewx
>>>>> 4. wait for weewx to get 'missing' archive records from console if 
>>>>> there are any to retrieve
>>>>> 5.wait for first archive interval to pass (5 or 10 minutes??)
>>>>>
>>>>> 6. post log from start to first interval if you still have problems.
>>>>>
>>>>> If all is well
>>>>> edit weewx.conf to turn debug off and restart weewx
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On Friday, 16 December 2016 16:40:53 UTC+2, Auchtermuchty Weather 
>>>>> wrote:
>>>>>
>>>>>> I shut down weewx and rebooted the Pi as it occurred to me hot 
>>>>>> plugging the weather station might be a problem, and then restarted Pi 
>>>>>> again with 'debug=1'.  It's not finding the weather station:
>>>>>>
>>>>>> Dec 16 14:23:02 weather2 systemd[1]: Stopping LSB: weewx weather 
>>>>>> system...
>>>>>> Dec 16 14:23:02 weather2 weewx[9448]: Stopping weewx weather system: 
>>>>>> weewx not running
>>>>>> Dec 16 14:23:02 weather2 systemd[1]: Starting LSB: weewx weather 
>>>>>> system...
>>>>>> Dec 16 14:23:03 weather2 weewx[9472]: 

Re: [weewx-user] Re: Replacing the Raspberry Pi

2016-12-16 Thread Auchtermuchty Weather
The weather station is in exactly the same place.  The Pi is in a slightly 
different one, I'm not using a hub as this is one of the newer Pis with 4 
USB ports - the old Pi had one but I was using a wired network via a 
Powerlink plug.

However I can switch back to the Powerlink...


On Friday, 16 December 2016 15:09:41 UTC, Andrew Milner wrote:

> switching on a wifi dongle will certainly cause the system to be busy 
> while it sorts itself out and estasblishes the network connection - and 
> depending on hoable and physicallyw you have things connected may well 
> cause problems (especially on a rpi) and especially if you are not using a 
> powered hub.  Also I thought you had moved the station from one pi to 
> another - so you have moved the cable and physically reconnected to the new 
> rpi - er so I cant be the same as it has been for 4 years - or are we still 
> on the original rpi and just upgraded the weewx?  Am getting confuzzed now 
>  think I'll just stay quiet for a while ..
>
>
>
> On Friday, 16 December 2016 17:02:36 UTC+2, Auchtermuchty Weather wrote:
>
>> Could switching to a wifi dongle cause enough interference to be a 
>> problem?  Otherwise it's almost exactly as it's been for 4 years.
>>
>>
>>
>> On Friday, 16 December 2016 14:56:01 UTC, Andrew Milner wrote:
>>
>>>  or you could just have it routed badly now near some form of 
>>> interference ..
>>>
>>> slow down
>>>
>>> 1.  connect all your hardware
>>> 2. stop weewx
>>> 3. set debug = 1 in weewx.conf
>>> 3. start weewx
>>> 4. wait for weewx to get 'missing' archive records from console if there 
>>> are any to retrieve
>>> 5.wait for first archive interval to pass (5 or 10 minutes??)
>>>
>>> 6. post log from start to first interval if you still have problems.
>>>
>>> If all is well
>>> edit weewx.conf to turn debug off and restart weewx
>>>
>>>
>>>
>>>
>>>
>>>
>>> On Friday, 16 December 2016 16:40:53 UTC+2, Auchtermuchty Weather wrote:
>>>
>>>> I shut down weewx and rebooted the Pi as it occurred to me hot plugging 
>>>> the weather station might be a problem, and then restarted Pi again with 
>>>> 'debug=1'.  It's not finding the weather station:
>>>>
>>>> Dec 16 14:23:02 weather2 systemd[1]: Stopping LSB: weewx weather 
>>>> system...
>>>> Dec 16 14:23:02 weather2 weewx[9448]: Stopping weewx weather system: 
>>>> weewx not running
>>>> Dec 16 14:23:02 weather2 systemd[1]: Starting LSB: weewx weather 
>>>> system...
>>>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Initializing weewx 
>>>> version 3.6.2
>>>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Using Python 2.7.9 
>>>> (default, Sep 17 2016, 20:26:04) #012[GCC 4.9.2]
>>>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Platform 
>>>> Linux-4.4.34+-armv6l-with-debian-8.0
>>>> Dec 16 14:23:04 weather2 weewx[9472]: engine: pid file is 
>>>> /var/run/weewx.pid
>>>> Dec 16 14:23:04 weather2 weewx[9462]: Starting weewx weather system: 
>>>> weewx.
>>>> Dec 16 14:23:04 weather2 systemd[1]: Started LSB: weewx weather system.
>>>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Using configuration file 
>>>> /home/weewx/weewx.conf
>>>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Initializing engine
>>>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Loading station type 
>>>> FineOffsetUSB (weewx.drivers.fousb)
>>>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: driver version is 1.9
>>>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: polling mode is PERIODIC
>>>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: polling interval is 60
>>>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: Cannot find USB device 
>>>> with Vendor=0x1941 ProdID=0x8021 Device=None
>>>> Dec 16 14:23:04 weather2 weewx[9476]: import of driver failed: Unable 
>>>> to find USB device ()
>>>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Unable to load driver: 
>>>> Unable to find USB device
>>>> Dec 16 14:23:04 weather2 weewx[9476]:   Exiting...
>>>>
>>>> FineOffset is correct.
>>>>
>>>>
>>>> Fiddling with the cable produced several of these:
>>>> Dec 16 14:27:50 weather2 kernel: [ 1703.009271] usb 1-1.2: new 
>>>> low-speed USB device number 5 using dwc_otg
>>>> Dec 16 

Re: [weewx-user] Re: Replacing the Raspberry Pi

2016-12-16 Thread Auchtermuchty Weather
Could switching to a wifi dongle cause enough interference to be a 
problem?  Otherwise it's almost exactly as it's been for 4 years.



On Friday, 16 December 2016 14:56:01 UTC, Andrew Milner wrote:

>  or you could just have it routed badly now near some form of 
> interference ..
>
> slow down
>
> 1.  connect all your hardware
> 2. stop weewx
> 3. set debug = 1 in weewx.conf
> 3. start weewx
> 4. wait for weewx to get 'missing' archive records from console if there 
> are any to retrieve
> 5.wait for first archive interval to pass (5 or 10 minutes??)
>
> 6. post log from start to first interval if you still have problems.
>
> If all is well
> edit weewx.conf to turn debug off and restart weewx
>
>
>
>
>
>
> On Friday, 16 December 2016 16:40:53 UTC+2, Auchtermuchty Weather wrote:
>
>> I shut down weewx and rebooted the Pi as it occurred to me hot plugging 
>> the weather station might be a problem, and then restarted Pi again with 
>> 'debug=1'.  It's not finding the weather station:
>>
>> Dec 16 14:23:02 weather2 systemd[1]: Stopping LSB: weewx weather system...
>> Dec 16 14:23:02 weather2 weewx[9448]: Stopping weewx weather system: 
>> weewx not running
>> Dec 16 14:23:02 weather2 systemd[1]: Starting LSB: weewx weather system...
>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Initializing weewx version 
>> 3.6.2
>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Using Python 2.7.9 
>> (default, Sep 17 2016, 20:26:04) #012[GCC 4.9.2]
>> Dec 16 14:23:03 weather2 weewx[9472]: engine: Platform 
>> Linux-4.4.34+-armv6l-with-debian-8.0
>> Dec 16 14:23:04 weather2 weewx[9472]: engine: pid file is 
>> /var/run/weewx.pid
>> Dec 16 14:23:04 weather2 weewx[9462]: Starting weewx weather system: 
>> weewx.
>> Dec 16 14:23:04 weather2 systemd[1]: Started LSB: weewx weather system.
>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Using configuration file 
>> /home/weewx/weewx.conf
>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Initializing engine
>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Loading station type 
>> FineOffsetUSB (weewx.drivers.fousb)
>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: driver version is 1.9
>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: polling mode is PERIODIC
>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: polling interval is 60
>> Dec 16 14:23:04 weather2 weewx[9476]: fousb: Cannot find USB device with 
>> Vendor=0x1941 ProdID=0x8021 Device=None
>> Dec 16 14:23:04 weather2 weewx[9476]: import of driver failed: Unable to 
>> find USB device ()
>> Dec 16 14:23:04 weather2 weewx[9476]: engine: Unable to load driver: 
>> Unable to find USB device
>> Dec 16 14:23:04 weather2 weewx[9476]:   Exiting...
>>
>> FineOffset is correct.
>>
>>
>> Fiddling with the cable produced several of these:
>> Dec 16 14:27:50 weather2 kernel: [ 1703.009271] usb 1-1.2: new low-speed 
>> USB device number 5 using dwc_otg
>> Dec 16 14:27:50 weather2 kernel: [ 1703.155425] usb 1-1.2: New USB device 
>> found, idVendor=1941, idProduct=8021
>> Dec 16 14:27:50 weather2 kernel: [ 1703.155465] usb 1-1.2: New USB device 
>> strings: Mfr=0, Product=0, SerialNumber=0
>> Dec 16 14:27:50 weather2 kernel: [ 1703.213542] hid-generic 
>> 0003:1941:8021.0001: hiddev0,hidraw0: USB HID v1.00 Device [HID 1941:8021] 
>> on usb-2098.usb-1.2/input0
>>
>> And I have this:
>> pi@weather2:/home/weewx $ sudo lsusb
>> Bus 001 Device 004: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless 
>> Adapter
>> Bus 001 Device 008: ID 1941:8021 Dream Link WH1080 Weather Station / USB 
>> Missile Launcher
>> Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. 
>> SMSC9512/9514 Fast Ethernet Adapter
>> Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
>> Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>>
>> Restarted weewx, the tail of syslog:
>> 021] on usb-2098.usb-1.2/input0
>> Dec 16 14:30:38 weather2 systemd[1]: Started LSB: weewx weather system.
>> pi@weather2:/home/weewx $ date
>> Fri 16 Dec 14:39:06 GMT 2016
>> pi@weather2:/home/weewx $
>>
>>
>> Connection problem, having disturbed a cable that was left to it's own 
>> devices for 4 years?  New USB cable maybe?
>>
>>
>> On Friday, 16 December 2016 14:15:44 UTC, Tom Keffer wrote:
>>
>>> Take a look at the "driver" option in weewx.conf and make sure it's 
>>> correct. 
>>>
>>> If that's not the problem, then set debug=1, restart weewx, then follow 
>>>

Re: [weewx-user] Re: Replacing the Raspberry Pi

2016-12-10 Thread Auchtermuchty Weather
The penny has dropped that I had the new RPi uploading to a different 
folder on the web server.  The one it will use when running live of course 
has it's NOAA folder complete!  It doesn't matter if it's incomplete on the 
RPi.

On Friday, 9 December 2016 18:58:46 UTC, Andrew Milner wrote:
>
> If you delete the NOAA dire3cory it will be re-created on the firs report 
> run
>
>
> On Friday, 9 December 2016 20:55:14 UTC+2, Auchtermuchty Weather wrote:
>
>> *"I'm going to try copying the entire /home/weewx tree to the new RPi and 
>> then use setup.py to upgrade there, and see how it goes."*
>>
>> That seems to work including the Ftp (I had passwd not password!), so I 
>> will stop the old Pi, take another copy etc. and put it on the new Pi and 
>> take it from there.  However I do also need to copy the NOAA directory to 
>> the web server that the Internet sees.
>>
>>
>>
>> On Friday, 9 December 2016 16:27:32 UTC, Tom Keffer wrote:
>>
>>> Keep it simple.
>>>
>>> Your strategy is a reasonable, simple one. Go for it. 
>>>
>>> -tk
>>>
>>> On Fri, Dec 9, 2016 at 5:26 AM, Auchtermuchty Weather <
>>> shunr...@gmail.com> wrote:
>>>
>>>> Clean install of the OS, Weewx or both?
>>>>
>>>> I'm going to try copying the entire /home/weewx tree to the new RPi and 
>>>> then use setup.py to upgrade there, and see how it goes.
>>>>
>>>>
>>>> On Friday, 9 December 2016 12:19:47 UTC, Andrew Milner wrote:
>>>>
>>>>> Dave - I don't think that would move from Wheezy to Jessie, and I seem 
>>>>> to recall that Raspberry recommended a clean install when going to Jessie.
>>>>>
>>>>>
>>>>>
>>>>> On Friday, 9 December 2016 14:15:49 UTC+2, Dave Webb wrote:
>>>>>
>>>>>> Why don't you just upgrade everything on the currently running Pi 
>>>>>> including weewx then copy the card and burn to bigger SD card. After you 
>>>>>> do 
>>>>>> that you can put the card in the B+. 
>>>>>>
>>>>>> https://www.raspberrypi.org/documentation/raspbian/updating.md
>>>>>>
>>>>>> Dave-KB1PVH
>>>>>>
>>>>>>
>>>>>> Sent from my Galaxy S7
>>>>>>
>>>>>> On Dec 9, 2016 7:07 AM, "Auchtermuchty Weather" <shunr...@gmail.com> 
>>>>>> wrote:
>>>>>>
>>>>>>> OK, so there is nothing else?  Was wondering about the NOAA stuff?  
>>>>>>>
>>>>>>> I will try copying the weewx.sdb over and recreating stats.sdb.
>>>>>>>
>>>>>>> On Friday, 9 December 2016 11:55:40 UTC, Andrew Milner wrote:
>>>>>>>
>>>>>>>> If you installed weewx 3.6.2 then the old 2.7 database will need to 
>>>>>>>> be updated to the new format.  The easiest way of updating is to copy 
>>>>>>>> over 
>>>>>>>> the archive sdb file and use the 3.6 utilities for database 
>>>>>>>> manipulation 
>>>>>>>> (see documentation) to create the daily summaries (the old stats 
>>>>>>>> database).
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On Friday, 9 December 2016 12:41:37 UTC+2, Auchtermuchty Weather 
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> I realised that not only am I running an old (2.7) version of 
>>>>>>>>> Weewx, the RPi it's on is short of room on the SD card - it's an old 
>>>>>>>>> B 
>>>>>>>>> model with an SD card.
>>>>>>>>>
>>>>>>>>> I had a B+ Pi doing nothing (Micro SD card, 4 USB ports) so I put 
>>>>>>>>> the latest Raspberrian on an 8GB card and then installed Weewx and 
>>>>>>>>> it's 
>>>>>>>>> working fine with the simulator - the HTML files are being produced 
>>>>>>>>> with 
>>>>>>>>> correct units & layout.
>>>>>>>>>
>>>>>>>>> Not quite sure what the process of changing the two over is 
>>>>>>>>> though.  I know I will have to copy some stuff across (not a problem 
>>>>>>>>> as 
>>>>>>>>> both are on my network), not sure what stuff though.
>>>>>>>>>
>>>>>>>>> Nor am I sure if there are any 'gotchas' I need to be aware of.
>>>>>>>>>
>>>>>>>>> -- 
>>>>>>> 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+...@googlegroups.com.
>>>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>>>
>>>>>> -- 
>>>> 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+...@googlegroups.com.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>>
>>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Replacing the Raspberry Pi

2016-12-09 Thread Auchtermuchty Weather
*"I'm going to try copying the entire /home/weewx tree to the new RPi and 
then use setup.py to upgrade there, and see how it goes."*

That seems to work including the Ftp (I had passwd not password!), so I 
will stop the old Pi, take another copy etc. and put it on the new Pi and 
take it from there.  However I do also need to copy the NOAA directory to 
the web server that the Internet sees.



On Friday, 9 December 2016 16:27:32 UTC, Tom Keffer wrote:

> Keep it simple.
>
> Your strategy is a reasonable, simple one. Go for it. 
>
> -tk
>
> On Fri, Dec 9, 2016 at 5:26 AM, Auchtermuchty Weather <shunr...@gmail.com 
> > wrote:
>
>> Clean install of the OS, Weewx or both?
>>
>> I'm going to try copying the entire /home/weewx tree to the new RPi and 
>> then use setup.py to upgrade there, and see how it goes.
>>
>>
>> On Friday, 9 December 2016 12:19:47 UTC, Andrew Milner wrote:
>>
>>> Dave - I don't think that would move from Wheezy to Jessie, and I seem 
>>> to recall that Raspberry recommended a clean install when going to Jessie.
>>>
>>>
>>>
>>> On Friday, 9 December 2016 14:15:49 UTC+2, Dave Webb wrote:
>>>
>>>> Why don't you just upgrade everything on the currently running Pi 
>>>> including weewx then copy the card and burn to bigger SD card. After you 
>>>> do 
>>>> that you can put the card in the B+. 
>>>>
>>>> https://www.raspberrypi.org/documentation/raspbian/updating.md
>>>>
>>>> Dave-KB1PVH
>>>>
>>>>
>>>> Sent from my Galaxy S7
>>>>
>>>> On Dec 9, 2016 7:07 AM, "Auchtermuchty Weather" <shunr...@gmail.com> 
>>>> wrote:
>>>>
>>>>> OK, so there is nothing else?  Was wondering about the NOAA stuff?  
>>>>>
>>>>> I will try copying the weewx.sdb over and recreating stats.sdb.
>>>>>
>>>>> On Friday, 9 December 2016 11:55:40 UTC, Andrew Milner wrote:
>>>>>
>>>>>> If you installed weewx 3.6.2 then the old 2.7 database will need to 
>>>>>> be updated to the new format.  The easiest way of updating is to copy 
>>>>>> over 
>>>>>> the archive sdb file and use the 3.6 utilities for database manipulation 
>>>>>> (see documentation) to create the daily summaries (the old stats 
>>>>>> database).
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Friday, 9 December 2016 12:41:37 UTC+2, Auchtermuchty Weather 
>>>>>> wrote:
>>>>>>
>>>>>>> I realised that not only am I running an old (2.7) version of Weewx, 
>>>>>>> the RPi it's on is short of room on the SD card - it's an old B model 
>>>>>>> with 
>>>>>>> an SD card.
>>>>>>>
>>>>>>> I had a B+ Pi doing nothing (Micro SD card, 4 USB ports) so I put 
>>>>>>> the latest Raspberrian on an 8GB card and then installed Weewx and it's 
>>>>>>> working fine with the simulator - the HTML files are being produced 
>>>>>>> with 
>>>>>>> correct units & layout.
>>>>>>>
>>>>>>> Not quite sure what the process of changing the two over is though.  
>>>>>>> I know I will have to copy some stuff across (not a problem as both are 
>>>>>>> on 
>>>>>>> my network), not sure what stuff though.
>>>>>>>
>>>>>>> Nor am I sure if there are any 'gotchas' I need to be aware of.
>>>>>>>
>>>>>>> -- 
>>>>> 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+...@googlegroups.com.
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>> -- 
>> 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+...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Ftp not requested

2016-12-09 Thread Auchtermuchty Weather
Doh!  Thanks.

On Friday, 9 December 2016 15:24:19 UTC, Tom Keffer wrote:
>
> It's "password", not "passwd"
>
> -tk
>
> On Fri, Dec 9, 2016 at 4:01 AM, Auchtermuchty Weather <shunr...@gmail.com 
> > wrote:
>
>> Here you go - I copied it over from the other RPi which works.  The 
>> service has been restarted several times since last editing this part of 
>> the config.  When I was doing it originally I had problems which however 
>> created error messages that let me work out what the issue was:
>>
>> [[FTP]]
>> # FTP'ing the results to a webserver is treated as just another 
>> report,
>> # albeit one with an unusual report generator!
>> skin = Ftp
>> # If you wish to use FTP, uncomment and fill out the next four 
>> lines.
>> #user = replace with the ftp username
>> user=
>> #password = replace with the ftp password
>> passwd=
>> #server = replace with the ftp server name, e.g, 
>> www.threefools.org
>> server=192.168.x.x
>> #path = replace with the ftp destination directory (e.g., 
>> /weather)
>> path=
>>
>>
>>
>> On Friday, 9 December 2016 11:51:01 UTC, Andrew Milner wrote:
>>
>>> We could possibly help if we knew what was actually in your weewx.conf 
>>> rather than just taking your word for it!!
>>>
>>> Have you, for example, uncommented the lines which require uncommenting 
>>> in the FTP section of stdReport in weewx.conf??
>>>
>>>
>>>
>>> On Friday, 9 December 2016 12:58:24 UTC+2, Auchtermuchty Weather wrote:
>>>
>>>> Getting the following on my newer RPi with Weewx 3.6.2:
>>>>
>>>> Dec  9 10:45:25 weather2 weewx[26990]: reportengine: Found 
>>>> configuration file /home/weewx/skins/Ftp/skin.conf for report FTP
>>>> Dec  9 10:45:25 weather2 weewx[26990]: reportengine: FTP upload not 
>>>> requested. Skipped.
>>>>
>>>> Very puzzled as the details for Ftp in weewx.conf are the same as on 
>>>> the one which is working.  
>>>>
>>>> FTP is installed:
>>>>
>>>> pi@weather2:~ $ type ftp
>>>> ftp is /usr/bin/ftp
>>>>
>>> -- 
>> 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+...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Ftp not requested

2016-12-09 Thread Auchtermuchty Weather
Here you go - I copied it over from the other RPi which works.  The service 
has been restarted several times since last editing this part of the 
config.  When I was doing it originally I had problems which however 
created error messages that let me work out what the issue was:

[[FTP]]
# FTP'ing the results to a webserver is treated as just another 
report,
# albeit one with an unusual report generator!
skin = Ftp
# If you wish to use FTP, uncomment and fill out the next four 
lines.
#user = replace with the ftp username
user=
#password = replace with the ftp password
passwd=
#server = replace with the ftp server name, e.g, www.threefools.org
server=192.168.x.x
#path = replace with the ftp destination directory (e.g., /weather)
path=



On Friday, 9 December 2016 11:51:01 UTC, Andrew Milner wrote:

> We could possibly help if we knew what was actually in your weewx.conf 
> rather than just taking your word for it!!
>
> Have you, for example, uncommented the lines which require uncommenting in 
> the FTP section of stdReport in weewx.conf??
>
>
>
> On Friday, 9 December 2016 12:58:24 UTC+2, Auchtermuchty Weather wrote:
>
>> Getting the following on my newer RPi with Weewx 3.6.2:
>>
>> Dec  9 10:45:25 weather2 weewx[26990]: reportengine: Found configuration 
>> file /home/weewx/skins/Ftp/skin.conf for report FTP
>> Dec  9 10:45:25 weather2 weewx[26990]: reportengine: FTP upload not 
>> requested. Skipped.
>>
>> Very puzzled as the details for Ftp in weewx.conf are the same as on the 
>> one which is working.  
>>
>> FTP is installed:
>>
>> pi@weather2:~ $ type ftp
>> ftp is /usr/bin/ftp
>>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Ftp not requested

2016-12-09 Thread Auchtermuchty Weather
Getting the following on my newer RPi with Weewx 3.6.2:

Dec  9 10:45:25 weather2 weewx[26990]: reportengine: Found configuration 
file /home/weewx/skins/Ftp/skin.conf for report FTP
Dec  9 10:45:25 weather2 weewx[26990]: reportengine: FTP upload not 
requested. Skipped.

Very puzzled as the details for Ftp in weewx.conf are the same as on the 
one which is working.  

FTP is installed:

pi@weather2:~ $ type ftp
ftp is /usr/bin/ftp

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Replacing the Raspberry Pi

2016-12-09 Thread Auchtermuchty Weather
I realised that not only am I running an old (2.7) version of Weewx, the 
RPi it's on is short of room on the SD card - it's an old B model with an 
SD card.

I had a B+ Pi doing nothing (Micro SD card, 4 USB ports) so I put the 
latest Raspberrian on an 8GB card and then installed Weewx and it's working 
fine with the simulator - the HTML files are being produced with correct 
units & layout.

Not quite sure what the process of changing the two over is though.  I know 
I will have to copy some stuff across (not a problem as both are on my 
network), not sure what stuff though.

Nor am I sure if there are any 'gotchas' I need to be aware of.

-- 
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.
For more options, visit https://groups.google.com/d/optout.