[weewx-user] Re: Second FTP issues

2020-06-09 Thread gjr80
Hi,

Can't really say much without a debug log. Suggest you edit weewx.conf, set 
debug 
= 1, save weewx.conf and restart WeeWX. Let WeeWX run for at least a couple 
of archive periods and then post the log from WeeWX startup through until 
the couple of archive periods have passed.

Gary

On Wednesday, 10 June 2020 12:42:08 UTC+10, Jonathan Zitelman wrote:
>
> I'm running WeeWX 4.1.1 (Python 2.7).  I can't seem to get my second FTP 
> script to run.  The first one runs fine and I am able to connect directly 
> to the ftp server so know the credentials are good. Any help is appreciated.
>
> From weewx.conf (just below the first FTP skin) :
>
> [[FTP2]]
> skin = Ftp2
> enable = true
> secure_ftp = False
> port = 21
> passive = 1
> user = {secret username}
> password = {secret password}
> server = www.texwx.info
> path = /
> HTML_ROOT = /var/www/html/belchertown
>
> From syslog:
>
> Jun  9 21:36:48 raspberrypi weewxd: observerip: packet interval 18
> Jun  9 21:37:05 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:37:20 raspberrypi weewx[3121] INFO weewx.imagegenerator: 
> Generated 32 images for report cmon in 95.37 seconds
> Jun  9 21:37:22 raspberrypi weewxd: observerip: packet interval 16
> Jun  9 21:37:28 raspberrypi weewx[3121] INFO weewx.cheetahgenerator: 
> Generated 11 files for report Belchertown in 8.19 seconds
> Jun  9 21:37:28 raspberrypi weewx[3121] INFO weewx.reportengine: Copied 2 
> files to /var/www/html/weewx/belchertown
> Jun  9 21:37:38 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:37:55 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:38:12 raspberrypi weewxd: observerip: packet interval 16
> Jun  9 21:38:21 raspberrypi weewx[3121] INFO weewx.reportengine: 
> ftpgenerator: Ftp'd 105 files in 39.51 seconds
> Jun  9 21:38:28 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:38:45 raspberrypi weewxd: observerip: packet interval 16
> Jun  9 21:39:02 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:39:18 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:39:35 raspberrypi weewxd: observerip: packet interval 16
> Jun  9 21:39:51 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:40:08 raspberrypi weewxd: observerip: packet interval 17
> Jun  9 21:40:25 raspberrypi weewxd: observerip: packet interval 16
> Jun  9 21:40:25 raspberrypi weewx[3121] INFO weewx.manager: Added record 
> 2020-06-09 21:40:25 CDT (1591756825) to database 'cmon'
> Jun  9 21:40:25 raspberrypi weewx[3121] INFO weewx.manager: Added record 
> 2020-06-09 21:40:25 CDT (1591756825) to daily summary in 'cmon'
> Jun  9 21:40:26 raspberrypi weewx[3121] INFO weewx.manager: Added record 
> 2020-06-09 21:40:00 CDT (1591756800) to database 'weewx'
> Jun  9 21:40:26 raspberrypi weewx[3121] INFO weewx.manager: Added record 
> 2020-06-09 21:40:00 CDT (1591756800) to daily summary in '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/848564bb-ae5e-4ba1-8959-4423e037308eo%40googlegroups.com.


[weewx-user] Re: weewx 4.1.1 exceptions with interceptor 0.53 / Ecowitt HP2551

2020-06-09 Thread gjr80
You may be right. I have followed the log through and I cannot see the 
casue, it is almost as if the restart after the database error results in 
an instance of the interceptor driver that is in a confused state. There 
were some substantial changes to the WeeWX engine code in v4.0, not so much 
the code itself but a good deal was moved from engine.py to weewxd. Perhaps 
there is some unusual effect going on. I think this is one for Matthew or 
Tom.

The vibe I get from your posts is that jthis is not a one off occurrence, 
but it does happen semi-regularly. In that case as a workaround you could 
make a small patch to the interceptor driver. In 
usr/share/weewx/user/interceptor.py locate the following lines (circa line 
2395):

if 'totalrainin' not in data and 'yearlyrainin' in data:
self.LABEL_MAP.pop('totalrainin') 
self.LABEL_MAP['yearlyrainin'] = 'rain_total'

and change it to read:

if 'totalrainin' not in data and 'yearlyrainin' in data:
if 'totalrainin' in self.LABEL_MAP:
self.LABEL_MAP.pop('totalrainin') 
self.LABEL_MAP['yearlyrainin'] = 'rain_total'

Save and restart WeeWX. That will prevent the specific error you originally 
posted but if other oddball issues come up they may well still bring down 
WeeWX. If it doesn't cause a problem it might be worth continuing to 
run/monitor the logs with debug = 1 for the time being.

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/c9a58846-6e94-4439-a211-82e9b6feeab3o%40googlegroups.com.


Re: [weewx-user] Re: WU outage

2020-06-09 Thread Timothy Witham
That outage was just over 3 hours long and service was restored about 2 
hours ago.  At least for me, per my logs and resulting uploads.

-- 
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/6b0984fc-fc83-4eee-87f9-ec669ae75810o%40googlegroups.com.


[weewx-user] Re: FUN with Windows

2020-06-09 Thread Andrew Milner
I agree with Vince


On Wednesday, 10 June 2020 01:16:28 UTC+3, vince wrote:
>
> On Tuesday, June 9, 2020 at 2:16:26 PM UTC-7, Xant wrote:
>>
>> Properly posted at WeeWX User's Group, not Development
>>
>
> My opinion - long discussions not relevant to weewx at all aren't properly 
> posted.
> Others of course might differ in opinion, which is fine too.
> Have a nice day.
>

-- 
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/d2568396-5321-4b63-b642-5feb0ca24b52o%40googlegroups.com.


[weewx-user] Second FTP issues

2020-06-09 Thread Jonathan Zitelman
I'm running WeeWX 4.1.1 (Python 2.7).  I can't seem to get my second FTP 
script to run.  The first one runs fine and I am able to connect directly 
to the ftp server so know the credentials are good. Any help is appreciated.

>From weewx.conf (just below the first FTP skin) :

[[FTP2]]
skin = Ftp2
enable = true
secure_ftp = False
port = 21
passive = 1
user = {secret username}
password = {secret password}
server = www.texwx.info
path = /
HTML_ROOT = /var/www/html/belchertown

>From syslog:

Jun  9 21:36:48 raspberrypi weewxd: observerip: packet interval 18
Jun  9 21:37:05 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:37:20 raspberrypi weewx[3121] INFO weewx.imagegenerator: 
Generated 32 images for report cmon in 95.37 seconds
Jun  9 21:37:22 raspberrypi weewxd: observerip: packet interval 16
Jun  9 21:37:28 raspberrypi weewx[3121] INFO weewx.cheetahgenerator: 
Generated 11 files for report Belchertown in 8.19 seconds
Jun  9 21:37:28 raspberrypi weewx[3121] INFO weewx.reportengine: Copied 2 
files to /var/www/html/weewx/belchertown
Jun  9 21:37:38 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:37:55 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:38:12 raspberrypi weewxd: observerip: packet interval 16
Jun  9 21:38:21 raspberrypi weewx[3121] INFO weewx.reportengine: 
ftpgenerator: Ftp'd 105 files in 39.51 seconds
Jun  9 21:38:28 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:38:45 raspberrypi weewxd: observerip: packet interval 16
Jun  9 21:39:02 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:39:18 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:39:35 raspberrypi weewxd: observerip: packet interval 16
Jun  9 21:39:51 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:40:08 raspberrypi weewxd: observerip: packet interval 17
Jun  9 21:40:25 raspberrypi weewxd: observerip: packet interval 16
Jun  9 21:40:25 raspberrypi weewx[3121] INFO weewx.manager: Added record 
2020-06-09 21:40:25 CDT (1591756825) to database 'cmon'
Jun  9 21:40:25 raspberrypi weewx[3121] INFO weewx.manager: Added record 
2020-06-09 21:40:25 CDT (1591756825) to daily summary in 'cmon'
Jun  9 21:40:26 raspberrypi weewx[3121] INFO weewx.manager: Added record 
2020-06-09 21:40:00 CDT (1591756800) to database 'weewx'
Jun  9 21:40:26 raspberrypi weewx[3121] INFO weewx.manager: Added record 
2020-06-09 21:40:00 CDT (1591756800) to daily summary in '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/74a3cece-57c7-49cf-890e-94acdfb97590o%40googlegroups.com.


[weewx-user] Re: weewx-cmon doesn't read cpu_temp of Raspberri PI

2020-06-09 Thread Jonathan Zitelman
Mike, I have updated my weewx.conf file.  Could you offer a little more 
clarification on the new file?  To confirm this is the /usr/bin directory?  
Does the filename matter?

-Jonathan


On Friday, May 8, 2020 at 3:41:39 AM UTC-5, Mike Revitt wrote:
>
> I have this working on my Rasberry pi at 
> https://weather.cougar.eu.com/telemetry.html and this is how I did it
>
> in weewx.conf 
>
> In
> [Engine]
>  [[Services]]
>
> set
>
> data_services = user.cputemp.AddCpuTemp
>
> Then add this Python program to the bin user directory where your Rasberry 
> Pi code is.
>
> #Copyright (c) 2009-2020 Mike Revitt 
>
> #See the file LICENSE.txt for your rights.
>
> """Gets the CPU temperature on a Rasberry Pi"""
>
>
>
> *import*  weewx
>
> *from*weewx.engine*import*  StdService
>
> *from*gpiozero*import*  CPUTemperature
>
>
>
> *class* AddCpuTemp(StdService):
>
>
>
> *def* __init__(self, engine, config_dict):
>
>
>
>   # Initialize my superclass first:
>
>   super(AddCpuTemp, self).__init__(engine, config_dict)
>
>
>
>   # Bind to any new archive record events:
>
>   self.bind(weewx.NEW_ARCHIVE_RECORD, self.new_archive_record)
>
>
>
> *def* new_archive_record(self, event):
>
>
>
> cpu = CPUTemperature()
>
> 
>
> *if* event.record['usUnits'] == weewx.US:
>
> event.record['extraTemp1'] = ( cpu.temperature * 1.8 ) + 32
>
> *else*:
>
> event.record['extraTemp1'] = cpu.temperature
>
>
>
>
>
>
>
>
> On Thursday, May 7, 2020 at 3:48:53 PM UTC+1, Luc Heijst wrote:
>>
>> Recently I downloaded the latest version of weewx-cmon (v 0.20) which was 
>> converted to use with python3.
>> This version, and also elder versions of cmon.py, did not read the 
>> cpu-temp of my Raspberri PI systems (models 1B, 2B, 3B and 3B+).
>>
>> On my raspberry PI the following statement is true: 
>> *os.path.exists(tdir)*, still a cpu-temp could not be found in this 
>> section
>> The *elif os.path.exists(tfile):* statement caused the bottem section to 
>> be skipped and that is the section that reads the RPI cpu-temp.
>>
>> See the modifications in yellow which fixed this problem.
>>
>> Luc
>>
>> --- snipped of cmon.py ---
>> # read cpu temperature
>> tdir = '/sys/class/hwmon/hwmon0/device'
>> # rpi keeps cpu temperature in a different location
>> tfile = '/sys/class/thermal/thermal_zone0/temp'
>> *temp_found = False*
>> if os.path.exists(tdir):
>> try:
>> for f in os.listdir(tdir):
>> if f.endswith('_input'):
>> s = self._readproc_line(os.path.join(tdir, f))
>> if s and len(s):
>> *temp_found = True*
>> n = f.replace('_input', '')
>> t_C = int(s) / 1000 # degree C
>> record['cpu_' + n] = t_C
>> except Exception as e:
>> logdbg("read failed for %s: %s" % (tdir, e))
>> ### elif os.path.exists(tfile):  ### original statement
>> if* not temp_found and *os.path.exists(tfile):
>> try:
>> s = self._readproc_line(tfile)
>> t_C = int(s) / 1000 # degree C
>> record['cpu_temp'] = t_C
>> except Exception as e:
>> logdbg("read failed for %s: %s" % (tfile, e))
>>
>> ---
>>
>>
> You can then access the Rasberry Pi CPU temperature as the variable 
> extraTemp1 from within your HTML files 
>

-- 
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/6ef948ff-9799-4349-8012-3aa9e61c7e5eo%40googlegroups.com.


Re: [weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin
Working great in beta5!   Thanks!

-- 
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/460f5ab8-073d-436d-bc70-76e176c92330o%40googlegroups.com.


Re: [weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
Yep, just pushed the fix to the development branch. Download a fresh copy, 
install and restart weewx. It should be good after your next archive 
interval. Let me know

On Tuesday, June 9, 2020 at 9:27:14 PM UTC-4 blu...@gmail.com wrote:

> Actually I’m running b4.Just put the fix in beta 5 and I’ll update.
>
>
> On Tuesday, June 9, 2020 at 9:24:35 PM UTC-4, Jeff Rabin wrote:
>>
>> Beta 5
>>
>> -- 
>> Jeff Rabin
>>
>> rain15days.jpg
>>
>

-- 
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/e79c0f75-b765-46f9-9a65-2b7a93ef09a2n%40googlegroups.com.


Re: [weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin
Actually I’m running b4.Just put the fix in beta 5 and I’ll update.

On Tuesday, June 9, 2020 at 9:24:35 PM UTC-4, Jeff Rabin wrote:
>
> Beta 5
>
> -- 
> Jeff Rabin
>
> rain15days.jpg
>

-- 
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/807bceef-1684-4a01-b3b6-204878d07ce3o%40googlegroups.com.


Re: [weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin
Beta 5

-- 
Jeff Rabin

rain15days.jpg

-- 
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/CAGdGUkSwcR8CRxrLeAc0GsS3V4A-3QF40Uem1%3D%2B8Lrd4tiogKQ%40mail.gmail.com.


[weewx-user] Re: Stackedwindrose and fexed colors

2020-06-09 Thread gjr80
Tom,

First thoughts are that something like you describe should not be too hard 
to implement. Unfortunately I am a bit pressed at the moment with a number 
of other extensions etc that need porting to WeeWX4/python3. I will make a 
note and try to look at it in the not too distant future. Feel free to give 
me prod if you hear nothing back in a few weeks.

Gary

On Wednesday, 10 June 2020 00:30:25 UTC+10, Darth Weber wrote:
>
> Hi Gary,
>
> many thanks for that great extension, it works perfect now with my new 
> installation of weewx.
>
> One question / wish for the colors: Is it possible to define somehow fixed 
> colors according the windspeed ? A couple of days ago we had quite stron 
> wind around 50km/h, i choosed red color for it. Today with a quite calm 
> day, red is assigned to speeds above 14 km/h. I would  like to assign more 
> than 7 colors for different wind speeds with  - as now - 7 of them being 
> shown in the windrose. But i would like to have red always for strong wind 
> speeds. It would be easier to read for me, as the color clearly indicates 
> the region of speed (maybe colored in beaufort or something like that).
>
> Of course this Is only an idea, not an issue !
>
> many thanks again,
> Tom
>
>
>

-- 
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/2688b713-f2c7-4ba1-9ebe-b8f3ad6d8aeco%40googlegroups.com.


Re: [weewx-user] Re: WU outage

2020-06-09 Thread Jamie Stephens
Considering IBM owns WU it’s a safe bet it is related 

-- 
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/82fe0b32-48e7-47ff-9038-8c0467326bb5o%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
I've got a fix ready; what version of the skin are you using?

On Tuesday, June 9, 2020 at 6:45:10 PM UTC-4 Pat wrote:

> Ah, wait, I think I understand even more now. If I set it to 14 days like 
> yours, I get the weird day offset happening. 
>
> It's showing the days in numerical order, not in calendar order (It should 
> be 9, 8, 7, 6, 5, 4, 3, 2, 1, 31, 30, 29, 28, 27, 26)
>
> Let me look into if there's a way to change the sort in graphs.conf
>
>
>
> On Tuesday, June 9, 2020 at 6:42:04 PM UTC-4 Pat wrote:
>
>> Thanks! I've been drinking a lot of it lately with my 2 month old and my 
>> 2 year old :) Sleep will get back to normal again, right?
>>
>> Ok I think I understand now. The time_length 
>> of
>>  
>> "month" or "week" will begin on the 1st day of the month, or Sunday. You 
>> want time_length =  604800 - this is the number of seconds for the last 7 
>> days.  Adjust to however many seconds in the past you want to show. 
>>
>> The code below will give the result attached
>>
>> [raintotals]
>> title = Rain Totals by Month
>> show_button = true
>> button_text = Rain Totals
>> type = column
>> time_length = 604800
>> aggregate_type = max
>> aggregate_interval = 86400 # 1 day
>>
>> [[raindaytotals]]
>> title = Historical Rain Totals For The Last 7 Days
>> xAxis_groupby = day
>> [[[rainTotal]]]
>> name = Rain Total
>> 
>>
>> On Tuesday, June 9, 2020 at 5:49:43 PM UTC-4 blu...@gmail.com wrote:
>>
>>>
>>> I just bought you a cup of coffee.  Thanks for the great skin and 
>>> support!
>>>
>>

-- 
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/621d74dc-5b08-43da-9fb2-b1b354e2962cn%40googlegroups.com.


Re: [weewx-user] Re: WU outage

2020-06-09 Thread Alex Rodriguez
https://techcrunch.com/2020/06/09/ibm-cloud-suffers-prolonged-outage/

Sent from my iPad

> On Jun 9, 2020, at 9:01 PM, Alex Rodriguez  wrote:
> 
> The IBM cloud has been having an outage, my guess it’s related.
> 
> Sent from my iPhone
> 
>> On Jun 9, 2020, at 8:57 PM, Jamie Stephens  wrote:
>> 
>> IBM is having a major cloud outage.  Lots of sites impacted 
>> 
>> -- 
>> 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/89ddfd4c-e519-48c7-8980-23cb9fbf656fo%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/B7C8D0D5-0907-4B5B-8C71-3D2BE9120B19%40sdpimail.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/21454C7E-DC5F-46EC-9050-886A764939FF%40sdpimail.com.


Re: [weewx-user] Re: WU outage

2020-06-09 Thread Alex Rodriguez
The IBM cloud has been having an outage, my guess it’s related.

Sent from my iPhone

> On Jun 9, 2020, at 8:57 PM, Jamie Stephens  wrote:
> 
> IBM is having a major cloud outage.  Lots of sites impacted 
> 
> -- 
> 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/89ddfd4c-e519-48c7-8980-23cb9fbf656fo%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/B7C8D0D5-0907-4B5B-8C71-3D2BE9120B19%40sdpimail.com.


Re: [weewx-user] Re: WU outage

2020-06-09 Thread Leon Shaner
Jamie,

Thanks for the heads up.  Cheers!

Regards,
\Leon
--
Leon Shaner :: Dearborn, Michigan (iPad)

> On Jun 9, 2020, at 8:57 PM, Jamie Stephens  wrote:
> 
> IBM is having a major cloud outage.  Lots of sites impacted 
> 
> -- 
> 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/89ddfd4c-e519-48c7-8980-23cb9fbf656fo%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/29B1FBCB-3F98-4757-B3E4-F4F3AFC7E437%40isylum.org.


[weewx-user] Re: WU outage

2020-06-09 Thread Jamie Stephens
IBM is having a major cloud outage.  Lots of sites impacted 

-- 
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/89ddfd4c-e519-48c7-8980-23cb9fbf656fo%40googlegroups.com.


Re: [weewx-user] WU outage

2020-06-09 Thread Leon Shaner
Greg, thanks, for the confirmation.

As a result of this I took a look at my API key and found that it expired in 
Nov 2019, even though it's been working all this time.  I just renewed it and 
updated it in my config, but that didn't help.

As a side-note, apparently API keys are only good for 6 months.  New one is 
only good through Dec.
Clearly they don't bother to send a reminder about expiry, so I set one 
manually.   Par for the course re: (lack-there-of) quality from IBM, since 
taking over WU.  :-(

Regards,
\Leon
--
Leon Shaner :: Dearborn, Michigan (iPad)

> On Jun 9, 2020, at 8:48 PM, Leon Shaner  wrote:
> 
> Actually, I was only glancing at the chart.
> According to the table, my last record was posted at 7:15 p.m. US/Eastern.
> Anyone else having the same issue?
> 
> Regards,
> \Leon
> --
> Leon Shaner :: Dearborn, Michigan (iPad)
> 
>> On Jun 9, 2020, at 8:31 PM, Leon Shaner  wrote:
>> 
>> FYI, I just happened to be checking my station on WU and noticed it said it 
>> was offline since a little after 6 US/Eastern.  No problem with WeeWx...
>> 
>> This is going on right now:
>> 
>> Jun  9 20:25:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:25:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:24:55 EDT (1591748695): Failed upload after 
>> 1 tries
>> Jun  9 20:25:40 nixie weewx[357] INFO weewx.drivers.wmr300: history buffer 
>> at 0.79% (291)
>> Jun  9 20:25:49 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 1: 
>> Jun  9 20:26:07 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:26:07 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:25:37 EDT (1591748737): Failed upload after 
>> 1 tries
>> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:26:00 EDT (1591748760) to database 'weewx.sdb'
>> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:26:00 EDT (1591748760) to daily summary in 'weewx.sdb'
>> Jun  9 20:26:25 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 2: 
>> Jun  9 20:26:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:26:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:26:07 EDT (1591748767): Failed upload after 
>> 1 tries
>> Jun  9 20:27:00 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 3: 
>> Jun  9 20:27:00 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed 
>> to publish record 2020-06-09 20:25:00 EDT (1591748700): Failed upload after 
>> 3 tries
>> Jun  9 20:27:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:27:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:26:38 EDT (1591748798): Failed upload after 
>> 1 tries
>> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:27:00 EDT (1591748820) to database 'weewx.sdb'
>> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:27:00 EDT (1591748820) to daily summary in 'weewx.sdb'
>> Jun  9 20:27:30 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 1: 
>> Jun  9 20:27:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:27:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:27:08 EDT (1591748828): Failed upload after 
>> 1 tries
>> Jun  9 20:28:05 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 2: 
>> Jun  9 20:28:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:28:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:27:37 EDT (1591748857): Failed upload after 
>> 1 tries
>> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:28:00 EDT (1591748880) to database 'weewx.sdb'
>> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
>> 20:28:00 EDT (1591748880) to daily summary in 'weewx.sdb'
>> Jun  9 20:28:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upload attempt 1: 
>> Jun  9 20:28:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
>> to publish record 2020-06-09 20:28:07 EDT (1591748887): Failed upload after 
>> 1 tries
>> Jun  9 20:28:40 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
>> upload attempt 3: 
>> Jun  9 20:28:40 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed 
>> to publish record 2020-06-09 20:26:00 EDT (1591748760): Failed upload after 
>> 3 tries
>> Jun  9 20:29:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
>> upl

Re: [weewx-user] WU outage

2020-06-09 Thread Leon Shaner
Actually, I was only glancing at the chart.
According to the table, my last record was posted at 7:15 p.m. US/Eastern.
Anyone else having the same issue?

Regards,
\Leon
--
Leon Shaner :: Dearborn, Michigan (iPad)

> On Jun 9, 2020, at 8:31 PM, Leon Shaner  wrote:
> 
> FYI, I just happened to be checking my station on WU and noticed it said it 
> was offline since a little after 6 US/Eastern.  No problem with WeeWx...
> 
> This is going on right now:
> 
> Jun  9 20:25:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:25:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:24:55 EDT (1591748695): Failed upload after 1 
> tries
> Jun  9 20:25:40 nixie weewx[357] INFO weewx.drivers.wmr300: history buffer at 
> 0.79% (291)
> Jun  9 20:25:49 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 1: 
> Jun  9 20:26:07 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:26:07 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:25:37 EDT (1591748737): Failed upload after 1 
> tries
> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:26:00 EDT (1591748760) to database 'weewx.sdb'
> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:26:00 EDT (1591748760) to daily summary in 'weewx.sdb'
> Jun  9 20:26:25 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 2: 
> Jun  9 20:26:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:26:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:26:07 EDT (1591748767): Failed upload after 1 
> tries
> Jun  9 20:27:00 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 3: 
> Jun  9 20:27:00 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed 
> to publish record 2020-06-09 20:25:00 EDT (1591748700): Failed upload after 3 
> tries
> Jun  9 20:27:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:27:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:26:38 EDT (1591748798): Failed upload after 1 
> tries
> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:27:00 EDT (1591748820) to database 'weewx.sdb'
> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:27:00 EDT (1591748820) to daily summary in 'weewx.sdb'
> Jun  9 20:27:30 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 1: 
> Jun  9 20:27:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:27:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:27:08 EDT (1591748828): Failed upload after 1 
> tries
> Jun  9 20:28:05 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 2: 
> Jun  9 20:28:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:28:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:27:37 EDT (1591748857): Failed upload after 1 
> tries
> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:28:00 EDT (1591748880) to database 'weewx.sdb'
> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
> 20:28:00 EDT (1591748880) to daily summary in 'weewx.sdb'
> Jun  9 20:28:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:28:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:28:07 EDT (1591748887): Failed upload after 1 
> tries
> Jun  9 20:28:40 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 3: 
> Jun  9 20:28:40 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed 
> to publish record 2020-06-09 20:26:00 EDT (1591748760): Failed upload after 3 
> tries
> Jun  9 20:29:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
> upload attempt 1: 
> Jun  9 20:29:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed 
> to publish record 2020-06-09 20:28:38 EDT (1591748918): Failed upload after 1 
> tries
> Jun  9 20:29:10 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
> upload attempt 1: 
> 
> 
> Regards,
> \Leon
> --
> Leon Shaner :: Dearborn, Michigan (iPad)
> 
> -- 
> 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/FA59913F-B1CF-4173-9509-A613FB7C37F5%40

[weewx-user] Re: WU outage

2020-06-09 Thread Greg from Oz
Same here in Australia

On Wednesday, 10 June 2020 10:30:55 UTC+10, Leon Shaner wrote:
>
> FYI, I just happened to be checking my station on WU and noticed it said 
> it was offline since a little after 6 US/Eastern.  No problem with WeeWx... 
>
> This is going on right now: 
>
> Jun  9 20:25:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:25:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:24:55 EDT (1591748695): Failed 
> upload after 1 tries 
> Jun  9 20:25:40 nixie weewx[357] INFO weewx.drivers.wmr300: history buffer 
> at 0.79% (291) 
> Jun  9 20:25:49 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 1:  
> Jun  9 20:26:07 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:26:07 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:25:37 EDT (1591748737): Failed 
> upload after 1 tries 
> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:26:00 EDT (1591748760) to database 'weewx.sdb' 
> Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:26:00 EDT (1591748760) to daily summary in 'weewx.sdb' 
> Jun  9 20:26:25 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 2:  
> Jun  9 20:26:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:26:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:26:07 EDT (1591748767): Failed 
> upload after 1 tries 
> Jun  9 20:27:00 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 3:  
> Jun  9 20:27:00 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: 
> Failed to publish record 2020-06-09 20:25:00 EDT (1591748700): Failed 
> upload after 3 tries 
> Jun  9 20:27:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:27:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:26:38 EDT (1591748798): Failed 
> upload after 1 tries 
> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:27:00 EDT (1591748820) to database 'weewx.sdb' 
> Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:27:00 EDT (1591748820) to daily summary in 'weewx.sdb' 
> Jun  9 20:27:30 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 1:  
> Jun  9 20:27:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:27:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:27:08 EDT (1591748828): Failed 
> upload after 1 tries 
> Jun  9 20:28:05 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 2:  
> Jun  9 20:28:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:28:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:27:37 EDT (1591748857): Failed 
> upload after 1 tries 
> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:28:00 EDT (1591748880) to database 'weewx.sdb' 
> Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 
> 2020-06-09 20:28:00 EDT (1591748880) to daily summary in 'weewx.sdb' 
> Jun  9 20:28:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:28:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:28:07 EDT (1591748887): Failed 
> upload after 1 tries 
> Jun  9 20:28:40 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 3:  
> Jun  9 20:28:40 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: 
> Failed to publish record 2020-06-09 20:26:00 EDT (1591748760): Failed 
> upload after 3 tries 
> Jun  9 20:29:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: 
> Failed upload attempt 1:  
> Jun  9 20:29:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: 
> Failed to publish record 2020-06-09 20:28:38 EDT (1591748918): Failed 
> upload after 1 tries 
> Jun  9 20:29:10 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: 
> Failed upload attempt 1:  
>
>
> Regards, 
> \Leon 
> -- 
> Leon Shaner :: Dearborn, Michigan (iPad) 
>

-- 
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/8e9715b6-be20-4655-a6d9-d0f3615eda50o%40googlegroups.com.


[weewx-user] WU outage

2020-06-09 Thread Leon Shaner
FYI, I just happened to be checking my station on WU and noticed it said it was 
offline since a little after 6 US/Eastern.  No problem with WeeWx...

This is going on right now:

Jun  9 20:25:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:25:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:24:55 EDT (1591748695): Failed upload after 1 tries
Jun  9 20:25:40 nixie weewx[357] INFO weewx.drivers.wmr300: history buffer at 
0.79% (291)
Jun  9 20:25:49 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 1: 
Jun  9 20:26:07 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:26:07 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:25:37 EDT (1591748737): Failed upload after 1 tries
Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:26:00 EDT (1591748760) to database 'weewx.sdb'
Jun  9 20:26:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:26:00 EDT (1591748760) to daily summary in 'weewx.sdb'
Jun  9 20:26:25 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 2: 
Jun  9 20:26:37 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:26:37 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:26:07 EDT (1591748767): Failed upload after 1 tries
Jun  9 20:27:00 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 3: 
Jun  9 20:27:00 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed to 
publish record 2020-06-09 20:25:00 EDT (1591748700): Failed upload after 3 tries
Jun  9 20:27:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:27:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:26:38 EDT (1591748798): Failed upload after 1 tries
Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:27:00 EDT (1591748820) to database 'weewx.sdb'
Jun  9 20:27:14 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:27:00 EDT (1591748820) to daily summary in 'weewx.sdb'
Jun  9 20:27:30 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 1: 
Jun  9 20:27:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:27:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:27:08 EDT (1591748828): Failed upload after 1 tries
Jun  9 20:28:05 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 2: 
Jun  9 20:28:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:28:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:27:37 EDT (1591748857): Failed upload after 1 tries
Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:28:00 EDT (1591748880) to database 'weewx.sdb'
Jun  9 20:28:15 nixie weewx[357] INFO weewx.manager: Added record 2020-06-09 
20:28:00 EDT (1591748880) to daily summary in 'weewx.sdb'
Jun  9 20:28:38 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:28:38 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:28:07 EDT (1591748887): Failed upload after 1 tries
Jun  9 20:28:40 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 3: 
Jun  9 20:28:40 nixie weewx[357] ERROR weewx.restx: Wunderground-PWS: Failed to 
publish record 2020-06-09 20:26:00 EDT (1591748760): Failed upload after 3 tries
Jun  9 20:29:08 nixie weewx[357] DEBUG weewx.restx: Wunderground-RF: Failed 
upload attempt 1: 
Jun  9 20:29:08 nixie weewx[357] ERROR weewx.restx: Wunderground-RF: Failed to 
publish record 2020-06-09 20:28:38 EDT (1591748918): Failed upload after 1 tries
Jun  9 20:29:10 nixie weewx[357] DEBUG weewx.restx: Wunderground-PWS: Failed 
upload attempt 1: 


Regards,
\Leon
--
Leon Shaner :: Dearborn, Michigan (iPad)

-- 
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/FA59913F-B1CF-4173-9509-A613FB7C37F5%40isylum.org.


[weewx-user] Re: weewx and opensprinkler

2020-06-09 Thread gjr80
Hi,

I don't know what you mean by the 'OpenSprinkler-Weather service'. Are you 
just wanting WeeWX to upload data to WeatherUnderground? Is the config 
snippet you posted from the [StdRESTful] stanza in weewx.conf, if so there 
should be no need to specify server_url.

It might help if you explained your setup in more detail and described 
exactly what you are trying to do/what is not working.

Gary

On Tuesday, 9 June 2020 23:35:53 UTC+10, Wifi75 wrote:
>
> Hello I am using OpenSprinkler-Weather service i configured weewx as below:
> I have a doubt: if I also enter the user and the key, can I also use the 
> same code to send the data to the WU?
>
>  [[Wunderground]]
> enable = true
> station = MY Station id?
> password = My key ?
> server_url = 
> http://:/weatherstation/updateweatherstation.php
> rapidfire = False
>
>  
>
>
>

-- 
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/d4868b91-a7ab-44bc-ac06-4b67bcb98101o%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
Seems like it's SQL sorting it as part of the query because of the GROUP BY 
.
 
Need to research how to make it knock it off. 

On Tuesday, June 9, 2020 at 6:45:10 PM UTC-4 Pat wrote:

> Ah, wait, I think I understand even more now. If I set it to 14 days like 
> yours, I get the weird day offset happening. 
>
> It's showing the days in numerical order, not in calendar order (It should 
> be 9, 8, 7, 6, 5, 4, 3, 2, 1, 31, 30, 29, 28, 27, 26)
>
> Let me look into if there's a way to change the sort in graphs.conf
>
>
>
> On Tuesday, June 9, 2020 at 6:42:04 PM UTC-4 Pat wrote:
>
>> Thanks! I've been drinking a lot of it lately with my 2 month old and my 
>> 2 year old :) Sleep will get back to normal again, right?
>>
>> Ok I think I understand now. The time_length 
>> of
>>  
>> "month" or "week" will begin on the 1st day of the month, or Sunday. You 
>> want time_length =  604800 - this is the number of seconds for the last 7 
>> days.  Adjust to however many seconds in the past you want to show. 
>>
>> The code below will give the result attached
>>
>> [raintotals]
>> title = Rain Totals by Month
>> show_button = true
>> button_text = Rain Totals
>> type = column
>> time_length = 604800
>> aggregate_type = max
>> aggregate_interval = 86400 # 1 day
>>
>> [[raindaytotals]]
>> title = Historical Rain Totals For The Last 7 Days
>> xAxis_groupby = day
>> [[[rainTotal]]]
>> name = Rain Total
>> 
>>
>> On Tuesday, June 9, 2020 at 5:49:43 PM UTC-4 blu...@gmail.com wrote:
>>
>>>
>>> I just bought you a cup of coffee.  Thanks for the great skin and 
>>> support!
>>>
>>

-- 
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/80f590a4-ce4f-46ad-bafc-d26a951ee366n%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
Ah, wait, I think I understand even more now. If I set it to 14 days like 
yours, I get the weird day offset happening. 

It's showing the days in numerical order, not in calendar order (It should 
be 9, 8, 7, 6, 5, 4, 3, 2, 1, 31, 30, 29, 28, 27, 26)

Let me look into if there's a way to change the sort in graphs.conf



On Tuesday, June 9, 2020 at 6:42:04 PM UTC-4 Pat wrote:

> Thanks! I've been drinking a lot of it lately with my 2 month old and my 2 
> year old :) Sleep will get back to normal again, right?
>
> Ok I think I understand now. The time_length 
> of
>  
> "month" or "week" will begin on the 1st day of the month, or Sunday. You 
> want time_length =  604800 - this is the number of seconds for the last 7 
> days.  Adjust to however many seconds in the past you want to show. 
>
> The code below will give the result attached
>
> [raintotals]
> title = Rain Totals by Month
> show_button = true
> button_text = Rain Totals
> type = column
> time_length = 604800
> aggregate_type = max
> aggregate_interval = 86400 # 1 day
>
> [[raindaytotals]]
> title = Historical Rain Totals For The Last 7 Days
> xAxis_groupby = day
> [[[rainTotal]]]
> name = Rain Total
> 
>
> On Tuesday, June 9, 2020 at 5:49:43 PM UTC-4 blu...@gmail.com wrote:
>
>>
>> I just bought you a cup of coffee.  Thanks for the great skin and support!
>>
>

-- 
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/2ffb2376-8309-4f29-aa4f-15dcf3b8fcffn%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
Thanks! I've been drinking a lot of it lately with my 2 month old and my 2 
year old :) Sleep will get back to normal again, right?

Ok I think I understand now. The time_length 
of
 
"month" or "week" will begin on the 1st day of the month, or Sunday. You 
want time_length =  604800 - this is the number of seconds for the last 7 
days.  Adjust to however many seconds in the past you want to show. 

The code below will give the result attached

[raintotals]
title = Rain Totals by Month
show_button = true
button_text = Rain Totals
type = column
time_length = 604800
aggregate_type = max
aggregate_interval = 86400 # 1 day

[[raindaytotals]]
title = Historical Rain Totals For The Last 7 Days
xAxis_groupby = day
[[[rainTotal]]]
name = Rain Total


On Tuesday, June 9, 2020 at 5:49:43 PM UTC-4 blu...@gmail.com wrote:

>
> I just bought you a cup of coffee.  Thanks for the great skin and support!
>

-- 
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/27f31028-1f88-4fd7-aa74-1ff1e91f49acn%40googlegroups.com.


[weewx-user] Re: FUN with Windows

2020-06-09 Thread vince
On Tuesday, June 9, 2020 at 2:16:26 PM UTC-7, Xant wrote:
>
> Properly posted at WeeWX User's Group, not Development
>

My opinion - long discussions not relevant to weewx at all aren't properly 
posted.
Others of course might differ in opinion, which is fine too.
Have a nice day.

-- 
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/6582c0c6-5d26-4a00-a8de-07789f230f11o%40googlegroups.com.


[weewx-user] Re: Driver crash without logs - Weewx

2020-06-09 Thread vince
On Tuesday, June 9, 2020 at 2:26:06 PM UTC-7, Florentin Prevost wrote:
>
> I'm use this driver and sometimes, it happen that the driver crash and 
> they are no logs in /var/log/syslog. 
>
> I use this : 
> https://github.com/Drealine/weewx-weatherlinklive-json/tree/patch-1
>
> The driver send a request each 3 seconds. It is possible to check if a 
> driver fail and restart it ?
>  
>
At the moment, I restart weewx each 5 minutes to prevent lost data if the 
> driver fail. 
>
>
You'd have to ask the driver author, but you'll need to provide more 
information.  Which version of weewx, what is your os, are you using the 
setup.py or pre-packaged weewx, are you using python2 or python3, etc.. 

You should never have a driver crash 'or' need to restart weewx ever, but 
bugs happen.   Turn debug=1 on in your weewx.conf and restart weewx for 
starters.

-- 
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/a0ffcbc3-b963-480b-8be2-6b2a9eb4eeffo%40googlegroups.com.


[weewx-user] Re: post-generate.sh -> shellreport.py ?

2020-06-09 Thread Timothy Witham
Your approach worked great!  I updated my code to officially support weewx:

https://github.com/twitham1/wview-rrd

Here is the resulting interactive front-end that displays the RRD files:

http://twitham.homelinux.org/cgi-bin/weather

Thank you sir!

-- 
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/321c5d3c-f3e5-4ef1-b5b5-e70d267c6eabo%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin

I just bought you a cup of coffee.  Thanks for the great skin and support!

-- 
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/25f85166-635f-47e5-b6f7-b980b540fd61o%40googlegroups.com.


[weewx-user] Driver crash without logs - Weewx

2020-06-09 Thread Florentin Prevost
Hi, 

I'm use this driver and sometimes, it happen that the driver crash and they 
are no logs in /var/log/syslog. 

I use this : 
https://github.com/Drealine/weewx-weatherlinklive-json/tree/patch-1

The driver send a request each 3 seconds. It is possible to check if a 
driver fail and restart it ?


At the moment, I restart weewx each 5 minutes to prevent lost data if the 
driver fail. 

Thank for your support,

-- 
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/f2595ce6-7ae1-4333-b9d5-c0dc6244b922o%40googlegroups.com.


[weewx-user] Re: FUN with Windows

2020-06-09 Thread Xant

Per diverse related postings, there are Users that may not be comfortable 
with Linux boxes, and in search for WeeWX Windows solutions.

That said, there are recent developments and portability in Windows for 
Linux, other than VM (as you previously posted), and wondering if feasible 
option to those searching for Windows solutions.

Properly posted at WeeWX User's Group, not Development

-- 
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/cf889ee7-11a0-4bff-b2ee-85d9076ec763o%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin
I've got several tabs in the graph section.   One is called "Week", which 
should show the data for the previous seven days.For the rain section I 
would like a bar chart that shows the total rain for each day.   Not the 
historical data, just how must rain was collected for each of the previous 
seven days.I have that working fine, see it here:  Week Tab 


If you look at it today everything looks fine. But when the month wraps 
to the next month, the columns are list in the wrong order.The columns 
are sorting on the literal "day", not the month/day.   If it is the 3rd 
of June, the columns should start with the last few days of May, then the 
first few days of June.  

Check out my website now.   I've increase the "last week" tab to show 14 
days.You can see the order on the "rain" section starts with the June 
days, then lists the May days.   Backwards.It is sorting numerically.  
  

[image: Screen Shot 2020-06-09 at 4.17.14 PM.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/4159a3af-9613-43f4-9d12-e4ada69ef3c0o%40googlegroups.com.


[weewx-user] Re: Belchertown - table cell size - row temperature-row

2020-06-09 Thread Joachim Puttkammer
with the new custom.css it is better. I have choosen 1px and now I am 
waiting for heavy rain :-)

Am Dienstag, 9. Juni 2020 14:21:11 UTC+2 schrieb Pat:
>
> Create a new file skins/Belchertown/custom.css 
>
> Then inside this file, try this
>
> .temperature-row .col-lg-3 { padding-left: 0px }
>
> Then adjust as you see necessary
>
>
>
> On Tuesday, June 9, 2020 at 2:37:49 AM UTC-4, Joachim Puttkammer wrote:
>>
>> Hi,
>>
>> if it rains over 10mm, the rain line is written into the windy.com 
>> window. 
>> I would like to move the green cell separator 2 digits to the left to 
>> make room for the rain row. 
>> But I can't get it in.
>>
>> [image: Wetterstation Puttkammer.png]
>>
>> Joachim
>>
>

-- 
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/22100254-c71b-424e-b997-aeb6fae90635o%40googlegroups.com.


[weewx-user] Re: Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Pat
I'm a little confused what you're looking for. Do you want daily totals of 
rain for all time?

The code below will give you the graph attached.


[[raindaytotals]]
title = Historical Rain Totals By Day
subtitle = Rain Totals grouped by Days for All Time
xAxis_groupby = day
[[[rainTotal]]]
name = Rain Total



On Tuesday, June 9, 2020 at 9:53:59 AM UTC-4, Jeff Rabin wrote:
>
> I am playing with graphs and I would like to have the rain totals 
> displayed as daily totals in columns.   I've got it working, but when the 
> month is rolling over it sorts the columns by the day.   
>
> For example, on June 3rd it showed: 
>
>- columns listed as 1, 2, 3, 28, 29, 30, 31
>- I would like to have it displayed as 28, 29, 30, 31, 1, 2, 3
>
>
> My Website 
>
> Code:
>
> [week]
>
> # Chart Timespan Defaults
>
> title = "Last 7 Days"
>
> show_button = true
>
> button_text = "Week"
>
> time_length = 604800 # Last 7 days
>
> tooltip_date_format = "LLL"
>
> aggregate_type = max
>
> aggregate_interval = 3600 # 1 hour
>
> gapsize = 360 # 1 hour in milliseconds
>
>
>
> [[chart1]]
>
> title = Temperature
>
> [[[outTemp]]]
>
> zIndex = 1
>
> name = Temperature
>
> [[[inTemp]]]
>
> name = Inside
>
> [[[windchill]]]
>
> [[[heatindex]]]
>
> color = "#f7a35c"
>
> [[[dewpoint]]]
>
> color = purple
>
>
>
> [[chart2]]
>
> title = Rain
>
> type = column
>
> xAxis_groupby = day
>
> [[[rainTotal]]]
>
> name = Rain Total
>
>
>
>
>

-- 
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/8d0c94fd-8775-4754-95dc-f12cf0d3e2c1o%40googlegroups.com.


[weewx-user] Re: Belchertown skin - page "yesterday"...

2020-06-09 Thread Manfred Maier
Hi Sebastian,
you can find the documentation for the graphs 
here: 
https://github.com/poblabs/weewx-belchertown/wiki/Belchertown-Charts-Documentation

Have fun with your weather station!
Manfred (wetter-zorneding.de)

Am Dienstag, 9. Juni 2020 20:49:20 UTC+2 schrieb Sébastien Bouillon:
>
> Hello,
>
>
> I am a happy owner of a Davis Pro station and a raspberry, since few weeks.
>
>
> I just installed the Belchertown's skin. It's really nice. Thanks you Pat. 
> I live in French. The URL of my station is www.solognemeteo.com
>
>
> A question : I don't have all the pages that I can see on the Pat's pages 
> : https://belchertownweather.com/graphs/ : yesterday's graphs, month... 
> How can I get them ? It's need to code some news files ?.
> I find the presentation of the wind with windrose very nice . How can I 
> activate it.
>
>
> Have a good day
>

-- 
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/5aa8ce59-6ed7-45d8-9d0c-c074392473dbo%40googlegroups.com.


[weewx-user] Belchertown skin - page "yesterday"...

2020-06-09 Thread Sébastien Bouillon
Hello,


I am a happy owner of a Davis Pro station and a raspberry, since few weeks.


I just installed the Belchertown's skin. It's really nice. Thanks you Pat. 
I live in French. The URL of my station is www.solognemeteo.com


A question : I don't have all the pages that I can see on the Pat's pages : 
https://belchertownweather.com/graphs/ : yesterday's graphs, month... How 
can I get them ? It's need to code some news files ?.
I find the presentation of the wind with windrose very nice . How can I 
activate it.


Have a good day

-- 
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/bdc41dfb-d54a-41ec-97b5-af73ddfcbcfco%40googlegroups.com.


Re: [weewx-user] Belchertown

2020-06-09 Thread Ken Walker
Pat,
That did the trick.  Thanks for the quick response and for the great 
skin

Ken

> On Jun 9, 2020, at 2:28 PM, Pat  wrote:
> 
> You need to restart weewx after any changes to belchertown.py
> 
> On Tuesday, June 9, 2020 at 1:13:18 PM UTC-4, Ken Walker wrote:
> Forgot to add that I made the changes to the belchertown.py file.  Does it 
> not get executed on every update interval.
> I put it there because that is where the "forecast" stuff for DarkSky is 
> located, so I assumed it was executed every update interval.  Should I be 
> putting that code somewhere else?
> 
> On Tuesday, June 9, 2020 at 1:05:54 PM UTC-4, Ken Walker wrote:
> I am using the Belchertown skin and have modified it to use the National 
> Weather Service(NWS) current observations to get the current icon and current 
> observation summary.
> 
> It all works well when I manually run the wee_reports.
> 
> But when I reload the page after the update interval it does not properly 
> show the icon or the summary.
> 
> I don't see anything relevant in the log
> 
> Any ideas?
> 
> Thanks,
> 
> Ken
> 
> -- 
> 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/4e7d8678-dfd7-4734-8c7a-78b3afb7bed6o%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/3D7CDBBA-D719-4E2B-8578-CA8DFA3E6513%40gmail.com.


[weewx-user] Manjaro - help seeing data from Vantage Pro 2

2020-06-09 Thread Henri Emurian
I am new to Linux and recently installed Manjaro. My old operating system 
is Windows 7. I have a Vantage Pro 2 station which is connected via USB. On 
Windows 7 I used the WeatherLink software from Davis. That gave me my data 
by clicking the executable. 
I read the user guide for Weewx and installed it using the Python utility 
Setup.py. The install seemed to go well, although I was not sure which port 
to choose (I chose the default ttyUSB0). No error messages came up.
To run the program directly, I use cd /home/weewx, then sudo ./bin/weewxd. 
When I execute this command, nothing happens. The cursor just goes to the 
command line. There is no indication that data is being downloaded from the 
station. My question is, how do I know whether data is being downloaded, 
and how do I see my data, charts, etc? I have read the user manual and 
found nothing which would help. TIA for any assistance.

-- 
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/43abd07e-0947-4266-a579-8dc14538fd5do%40googlegroups.com.


[weewx-user] Re: Belchertown

2020-06-09 Thread Pat
You need to restart weewx after any changes to belchertown.py

On Tuesday, June 9, 2020 at 1:13:18 PM UTC-4, Ken Walker wrote:
>
> Forgot to add that I made the changes to the belchertown.py file.  Does it 
> not get executed on every update interval.
> I put it there because that is where the "forecast" stuff for DarkSky is 
> located, so I assumed it was executed every update interval.  Should I be 
> putting that code somewhere else?
>
> On Tuesday, June 9, 2020 at 1:05:54 PM UTC-4, Ken Walker wrote:
>>
>> I am using the Belchertown skin and have modified it to use the National 
>> Weather Service(NWS) current observations to get the current icon and 
>> current observation summary.
>>
>> It all works well when I manually run the wee_reports.
>>
>> But when I reload the page after the update interval it does not properly 
>> show the icon or the summary.
>>
>> I don't see anything relevant in the log
>>
>> Any ideas?
>>
>> Thanks,
>>
>> Ken
>>
>

-- 
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/4e7d8678-dfd7-4734-8c7a-78b3afb7bed6o%40googlegroups.com.


[weewx-user] Re: Belchertown

2020-06-09 Thread Ken Walker
Forgot to add that I made the changes to the belchertown.py file.  Does it 
not get executed on every update interval.
I put it there because that is where the "forecast" stuff for DarkSky is 
located, so I assumed it was executed every update interval.  Should I be 
putting that code somewhere else?

On Tuesday, June 9, 2020 at 1:05:54 PM UTC-4, Ken Walker wrote:
>
> I am using the Belchertown skin and have modified it to use the National 
> Weather Service(NWS) current observations to get the current icon and 
> current observation summary.
>
> It all works well when I manually run the wee_reports.
>
> But when I reload the page after the update interval it does not properly 
> show the icon or the summary.
>
> I don't see anything relevant in the log
>
> Any ideas?
>
> Thanks,
>
> Ken
>

-- 
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/35530c54-ee9f-425c-a2f5-94feef0c1849o%40googlegroups.com.


[weewx-user] Belchertown

2020-06-09 Thread Ken Walker
I am using the Belchertown skin and have modified it to use the National 
Weather Service(NWS) current observations to get the current icon and 
current observation summary.

It all works well when I manually run the wee_reports.

But when I reload the page after the update interval it does not properly 
show the icon or the summary.

I don't see anything relevant in the log

Any ideas?

Thanks,

Ken

-- 
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/6c94a01b-02be-4185-89be-5b524e2d3f28o%40googlegroups.com.


[weewx-user] Re: FUN with Windows

2020-06-09 Thread vince
On Monday, June 8, 2020 at 10:35:16 PM UTC-7, Xant wrote:

> Wondering feedback from any path above.
>
>
>
Actually I'm wondering what your post(s) have to do with weewx.   Seems 
like you want to write a Medium blog or something, which is fine - good 
stuff, just perhaps the wrong place to post about it.   There are a 
thousand reddit forums if you're looking for other places to post instead.

-- 
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/46dee588-6009-4858-a151-e8f760394a1ao%40googlegroups.com.


[weewx-user] Stackedwindrose and fexed colors

2020-06-09 Thread Darth Weber
Hi Gary,

many thanks for that great extension, it works perfect now with my new 
installation of weewx.

One question / wish for the colors: Is it possible to define somehow fixed 
colors according the windspeed ? A couple of days ago we had quite stron 
wind around 50km/h, i choosed red color for it. Today with a quite calm 
day, red is assigned to speeds above 14 km/h. I would  like to assign more 
than 7 colors for different wind speeds with  - as now - 7 of them being 
shown in the windrose. But i would like to have red always for strong wind 
speeds. It would be easier to read for me, as the color clearly indicates 
the region of speed (maybe colored in beaufort or something like that).

Of course this Is only an idea, not an issue !

many thanks again,
Tom


-- 
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/8aaa8333-b8fe-4f45-b6b8-e4fbdbe9941co%40googlegroups.com.


[weewx-user] Re: weewx 4.1.1 exceptions with interceptor 0.53 / Ecowitt HP2551

2020-06-09 Thread James Berry
I can see a previous run that is short and has the error.
Interesting it looks like there is a database connection failure (see at 
16:16:07) .. I can see that in other bits of my log before the crash. 
Perhaps that is the common issue

Jun  8 16:05:08 weather weewx[27884]:  * Starting weewx weather system weewx
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Initializing weewx 
version 4.1.1
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Using Python 2.7.17 
(default, Apr 15 2020, 17:20:14) #012[GCC 7.5.0]
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Platform 
Linux-4.15.0-76-generic-x86_64-with-Ubuntu-18.04-bionic
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Locale is 'en_US.UTF-8'
Jun  8 16:05:09 weather weewx[27906] INFO __main__: PID file is 
/var/run/weewx.pid
Jun  8 16:05:09 weather weewx[27884]:...done.
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Using configuration 
file /etc/weewx/weewx.conf
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Debug is 0
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Loading station 
type Interceptor (user.interceptor)
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: driver version 
is 0.53
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: device type: 
ecowitt-client
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: mode is listen
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: listen on :8000
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: sensor map: 
{'extraTemp2': 'temperature_2', 'pm2_5': 'pm2_5', 'soilTemp1': 
'soil_temperature_1', 'soilTemp2': 'soil_temperature_2', 'soilTemp3': 
'soil_temperature_3', 'soilTemp4': 'soil_temperature_4', 'txBatteryStatus': 
'battery', 'outTemp': 'temperature_out', 'windSpeed': 'wind_speed', 
'windGust': 'wind_gust', 'outHumidity': 'humidity_out', 'windDir': 
'wind_dir', 'radiation': 'solar_radiation', 'inTemp': 'temperature_in', 
'windGustDir': 'wind_gust_dir', 'barometer': 'barometer', 'windchill': 
'windchill', 'dewpoint': 'dewpoint', 'rain': 'rain', 'extraHumid6': 
'humidity_6', 'pressure': 'pressure', 'extraHumid4': 'humidity_4', 
'extraHumid5': 'humidity_5', 'extraHumid2': 'humidity_2', 'extraHumid3': 
'humidity_3', 'extraTemp8': 'temperature_8', 'extraHumid1': 'humidity_1', 
'extraTemp6': 'temperature_6', 'extraTemp7': 'temperature_7', 'extraTemp4': 
'temperature_4', 'extraTemp5': 'temperature_5', 'rainRate': 'rain_rate', 
'extraTemp3': 'temperature_3', 'extraHumid8': 'humidity_8', 'extraTemp1': 
'temperature_1', 'leafWet1': 'leafwetness_1', 'leafWet2': 'leafwetness_2', 
'extraHumid7': 'humidity_7', 'UV': 'uv', 'soilMoist3': 'soil_moisture_3', 
'soilMoist2': 'soil_moisture_2', 'soilMoist1': 'soil_moisture_1', 
'inHumidity': 'humidity_in', 'soilMoist4': 'soil_moisture_4'}
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: StdConvert target 
unit is 0x1
Jun  8 16:05:09 weather weewx[27913] INFO weewx.wxservices: The following 
values will be calculated: pressure=prefer_hardware, 
barometer=prefer_hardware, altimeter=prefer_hardware, 
windchill=prefer_hardware, heatindex=prefer_hardware, 
dewpoint=prefer_hardware, inDewpoint=prefer_hardware, 
rainRate=prefer_hardware, maxSolarRad=prefer_hardware, 
cloudbase=prefer_hardware, humidex=prefer_hardware, 
appTemp=prefer_hardware, ET=prefer_hardware, windrun=prefer_hardware
Jun  8 16:05:09 weather weewx[27913] INFO weewx.wxservices: The following 
algorithms will be used for calculations: altimeter=aaASOS, maxSolarRad=RS
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Archive will use 
data binding wx_binding
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Record generation 
will be attempted in 'hardware'
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Using archive 
interval of 300 seconds (specified in weewx configuration)
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: StationRegistry: 
Registration not requested.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: Wunderground: 
Posting not enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: PWSweather: Posting 
not enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: CWOP: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: WOW: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: AWEKAS: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Starting up weewx 
version 4.1.1
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Using binding 
'wx_binding' to database 'weewx'
Jun  8 16:05:09 weather weewx[27913] INFO weewx.manager: Starting backfill 
of daily summaries
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Starting main 
packet loop.
Jun  8 16:05:23 weather weewx[27913] INFO user.interceptor: using 
'yearlyrainin' for rain_total
Jun  8 16:05:23 weather weewx[27913] INFO user.interceptor: skipping rain 
measurement of 5.154: no last rain
Jun  8 16:08:04 weather weewx[28037]:  * Sto

[weewx-user] Re: weewx 4.1.1 exceptions with interceptor 0.53 / Ecowitt HP2551

2020-06-09 Thread James Berry
I think the previous run actually might help (looks like I had debug mode 
on).  I can see (and in other cases) that there looks like a database 
reconnection occurs see at 16:16:07 below.
I am using an external mysql database...


Jun  8 16:05:08 weather weewx[27884]:  * Starting weewx weather system weewx
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Initializing weewx 
version 4.1.1
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Using Python 2.7.17 
(default, Apr 15 2020, 17:20:14) #012[GCC 7.5.0]
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Platform 
Linux-4.15.0-76-generic-x86_64-with-Ubuntu-18.04-bionic
Jun  8 16:05:09 weather weewx[27906] INFO __main__: Locale is 'en_US.UTF-8'
Jun  8 16:05:09 weather weewx[27906] INFO __main__: PID file is 
/var/run/weewx.pid
Jun  8 16:05:09 weather weewx[27884]:...done.
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Using configuration 
file /etc/weewx/weewx.conf
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Debug is 0
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Loading station 
type Interceptor (user.interceptor)
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: driver version 
is 0.53
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: device type: 
ecowitt-client
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: mode is listen
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: listen on :8000
Jun  8 16:05:09 weather weewx[27913] INFO user.interceptor: sensor map: 
{'extraTemp2': 'temperature_2', 'pm2_5': 'pm2_5', 'soilTemp1': 
'soil_temperature_1', 'soilTemp2': 'soil_temperature_2', 'soilTemp3': 
'soil_temperature_3', 'soilTemp4': 'soil_temperature_4', 'txBatteryStatus': 
'battery', 'outTemp': 'temperature_out', 'windSpeed': 'wind_speed', 
'windGust': 'wind_gust', 'outHumidity': 'humidity_out', 'windDir': 
'wind_dir', 'radiation': 'solar_radiation', 'inTemp': 'temperature_in', 
'windGustDir': 'wind_gust_dir', 'barometer': 'barometer', 'windchill': 
'windchill', 'dewpoint': 'dewpoint', 'rain': 'rain', 'extraHumid6': 
'humidity_6', 'pressure': 'pressure', 'extraHumid4': 'humidity_4', 
'extraHumid5': 'humidity_5', 'extraHumid2': 'humidity_2', 'extraHumid3': 
'humidity_3', 'extraTemp8': 'temperature_8', 'extraHumid1': 'humidity_1', 
'extraTemp6': 'temperature_6', 'extraTemp7': 'temperature_7', 'extraTemp4': 
'temperature_4', 'extraTemp5': 'temperature_5', 'rainRate': 'rain_rate', 
'extraTemp3': 'temperature_3', 'extraHumid8': 'humidity_8', 'extraTemp1': 
'temperature_1', 'leafWet1': 'leafwetness_1', 'leafWet2': 'leafwetness_2', 
'extraHumid7': 'humidity_7', 'UV': 'uv', 'soilMoist3': 'soil_moisture_3', 
'soilMoist2': 'soil_moisture_2', 'soilMoist1': 'soil_moisture_1', 
'inHumidity': 'humidity_in', 'soilMoist4': 'soil_moisture_4'}
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: StdConvert target 
unit is 0x1
Jun  8 16:05:09 weather weewx[27913] INFO weewx.wxservices: The following 
values will be calculated: pressure=prefer_hardware, 
barometer=prefer_hardware, altimeter=prefer_hardware, 
windchill=prefer_hardware, heatindex=prefer_hardware, 
dewpoint=prefer_hardware, inDewpoint=prefer_hardware, 
rainRate=prefer_hardware, maxSolarRad=prefer_hardware, 
cloudbase=prefer_hardware, humidex=prefer_hardware, 
appTemp=prefer_hardware, ET=prefer_hardware, windrun=prefer_hardware
Jun  8 16:05:09 weather weewx[27913] INFO weewx.wxservices: The following 
algorithms will be used for calculations: altimeter=aaASOS, maxSolarRad=RS
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Archive will use 
data binding wx_binding
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Record generation 
will be attempted in 'hardware'
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Using archive 
interval of 300 seconds (specified in weewx configuration)
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: StationRegistry: 
Registration not requested.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: Wunderground: 
Posting not enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: PWSweather: Posting 
not enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: CWOP: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: WOW: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO weewx.restx: AWEKAS: Posting not 
enabled.
Jun  8 16:05:09 weather weewx[27913] INFO __main__: Starting up weewx 
version 4.1.1
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Using binding 
'wx_binding' to database 'weewx'
Jun  8 16:05:09 weather weewx[27913] INFO weewx.manager: Starting backfill 
of daily summaries
Jun  8 16:05:09 weather weewx[27913] INFO weewx.engine: Starting main 
packet loop.
Jun  8 16:05:23 weather weewx[27913] INFO user.interceptor: using 
'yearlyrainin' for rain_total
Jun  8 16:05:23 weather weewx[27913] INFO user.interceptor: skipping rain 
measurement of 5.154: no last rain
Jun  8 16:08:04 weather weewx[28037]:  * Stopping

[weewx-user] Belchertown Graphs, a week of daily rain in "columns"

2020-06-09 Thread Jeff Rabin
I am playing with graphs and I would like to have the rain totals displayed 
as daily totals in columns.   I've got it working, but when the month is 
rolling over it sorts the columns by the day.   

For example, on June 3rd it showed: 

   - columns listed as 1, 2, 3, 28, 29, 30, 31
   - I would like to have it displayed as 28, 29, 30, 31, 1, 2, 3
   

My Website 

Code:

[week]

# Chart Timespan Defaults

title = "Last 7 Days"

show_button = true

button_text = "Week"

time_length = 604800 # Last 7 days

tooltip_date_format = "LLL"

aggregate_type = max

aggregate_interval = 3600 # 1 hour

gapsize = 360 # 1 hour in milliseconds



[[chart1]]

title = Temperature

[[[outTemp]]]

zIndex = 1

name = Temperature

[[[inTemp]]]

name = Inside

[[[windchill]]]

[[[heatindex]]]

color = "#f7a35c"

[[[dewpoint]]]

color = purple



[[chart2]]

title = Rain

type = column

xAxis_groupby = day

[[[rainTotal]]]

name = Rain Total




-- 
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/a98b8347-d480-4468-9c8e-ed0562946e0co%40googlegroups.com.


[weewx-user] weewx and opensprinkler

2020-06-09 Thread Wifi75
Hello I am using OpenSprinkler-Weather service i configured weewx as below:
I have a doubt: if I also enter the user and the key, can I also use the 
same code to send the data to the WU?

 [[Wunderground]]
enable = true
station = MY Station id?
password = My key ?
server_url = http://:/weatherstation/updateweatherstation.php
rapidfire = False

 


-- 
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/9fa8a274-0287-4099-9d51-e6127235b0b5o%40googlegroups.com.


[weewx-user] Re: Belchertown - table cell size - row temperature-row

2020-06-09 Thread Pat
Create a new file skins/Belchertown/custom.css 

Then inside this file, try this

.temperature-row .col-lg-3 { padding-left: 0px }

Then adjust as you see necessary



On Tuesday, June 9, 2020 at 2:37:49 AM UTC-4, Joachim Puttkammer wrote:
>
> Hi,
>
> if it rains over 10mm, the rain line is written into the windy.com 
> window. 
> I would like to move the green cell separator 2 digits to the left to make 
> room for the rain row. 
> But I can't get it in.
>
> [image: Wetterstation Puttkammer.png]
>
> Joachim
>

-- 
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/2ab790ee-2e9a-487c-83a0-5aa65c901234o%40googlegroups.com.


[weewx-user] Re: MQTT working but Belchertown skin 'Failed connecting to weather station'

2020-06-09 Thread Matt
Hi again all,

I am seeing connection issues again after turning off MQTT for a while and 
then turning it back on.  I have not changed any configuration yet I am 
seeing "Connected. Waiting for data." constantly.  To summarise, my config 
is as follows:

Belchertown skin.conf:


# MQTT Websockets defaults
mqtt_websockets_enabled = 1
mqtt_websockets_host = 192.168.86.55
mqtt_websockets_port = 9001
mqtt_websockets_ssl = 0
mqtt_websockets_topic = weather/loop
disconnect_live_website_visitor = 180


weewx.conf:


# [[MQTT]]
server_url = mqtt://pi:***@192.168.86.55:1883/
topic = weather
unit_system = METRIC
binding = archive, loop
aggregation = aggregate
log_failure = true
# log_success = true
[[[inputs]]]
windSpeed
name = windSpeed_mph
units = mile_per_hour
windGust
name = windGust_mph
units = mile_per_hour


I cannot see anything wrong, as I haven't changed the config.

For info, the mosquitto log shows some errors as below, but I don't know 
enough to troubleshoot.  Can anyone suggest anything please?

1591698145: mosquitto version 1.5.7 starting
1591698145: Config loaded from /etc/mosquitto/mosquitto.conf.
1591698145: Opening ipv4 listen socket on port 1883.
1591698145: Opening ipv6 listen socket on port 1883.
1591698145: Opening websockets listen socket on port 9001.
1591698150: New client connected from 192.168.86.36 as website73629308 (c1, 
k60$
1591698177: New connection from 192.168.86.22 on port 1883.
1591698177: New client connected from 192.168.86.22 as 
97f80dbc-e5e5-45c0-8094-$
1591698951: Socket error on client website73629308, disconnecting.
1591698954: New client connected from 192.168.86.36 as website930898639 
(c1, k6$
1591699117: Socket error on client website930898639, disconnecting.
1591699120: New client connected from 192.168.86.36 as website720925838 
(c1, k6$
1591699176: Socket error on client website720925838, disconnecting.
1591699178: New client connected from 192.168.86.36 as website566978445 
(c1, k6$
1591699606: Socket error on client website566978445, disconnecting.
1591699609: New client connected from 192.168.86.36 as website141237067 
(c1, k6$
1591699867: Socket error on client website141237067, disconnecting.
1591699869: New client connected from 192.168.86.36 as website51912235 (c1, 
k60$
1591699933: New client connected from 192.168.86.20 as website271702027 
(c1, k6$
1591699936: Socket error on client website271702027, disconnecting.
1591699939: New client connected from 192.168.86.20 as website286918525 
(c1, k6$
1591699967: Socket error on client website286918525, disconnecting.


Many thanks,

Matt

On Friday, 25 October 2019 19:57:45 UTC+1, Matt wrote:
>
> Hi,
>
> I followed the instructions in 
> https://github.com/poblabs/weewx-belchertown to install an MQTT broker 
> and subscribe to the weather data.  It's working according to the logs...
>
> Weewx syslog
>
> Oct 25 19:49:13 weatherpi weewx[3082]: restx: MQTT: Published record 
> 2019-10-25 19:49:13 BST (1572029353)
> Oct 25 19:49:29 weatherpi weewx[3082]: restx: MQTT: Published record 
> 2019-10-25 19:49:29 BST (1572029369)
> Oct 25 19:49:44 weatherpi weewx[3082]: restx: MQTT: Published record 
> 2019-10-25 19:49:44 BST (1572029384)
> Oct 25 19:50:01 weatherpi weewx[3082]: restx: MQTT: Published record 
> 2019-10-25 19:50:00 BST (1572029400)
> Oct 25 19:50:17 weatherpi weewx[3082]: restx: MQTT: Published record 
> 2019-10-25 19:50:16 BST (1572029416)
>
> Mosquitto log
>
> 1572029465: New connection from ::1 on port 1883.
> 1572029465: New client connected from ::1
>  as weewx_7f9ef501 (c1, k60, u'pi').
> 1572029465: Client weewx_7f9ef501 disconnected.
> 1572029481: New connection from ::1 on port 1883.
> 1572029481: New client connected from ::1
>  as weewx_65035d79 (c1, k60, u'pi').
> 1572029481: Client weewx_65035d79 disconnected.
> 1572029497: New connection from ::1 on port 1883.
> 1572029497: New client connected from ::1
>  as weewx_29b0c150 (c1, k60, u'pi').
> 1572029497: Client weewx_29b0c150 disconnected.
> 1572029513: New connection from ::1 on port 1883.
>
> weewx.conf
>
> [[MQTT]]
> server_url = mqtt://pi:xxx@localhost:1883
> topic = weather
> unit_system = METRIC
> binding = archive, loop
> aggregation = aggregate
> log_failure = true
> log_success = true
>
> skin.conf
>
> # MQTT Websockets defaults
> mqtt_websockets_enabled = 1
> mqtt_websockets_host = localhost
> mqtt_websockets_port = 1883
> mqtt_websockets_ssl = 0
> mqtt_websockets_topic = weather
> disconnect_live_website_visitor = 180
>
> But the webpage constantly says...
>
> [image: Untitled.png]
>
> I've been over and over the config, re-writing, adding quotes, you name it 
> I've tried it but still no success.  Can any bright spark see somet

[weewx-user] Re: Acurite 5-in-1 reading too high

2020-06-09 Thread Sean Jahnig
Hi Tom,

Please let me know which page i should watch in order to stay tuned with 
any updated to sdr.py ?

Much appreciated, thanks!
Sean.

-- 
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/bfbcb8df-f2db-40cc-9322-ab7084132eb1o%40googlegroups.com.


[weewx-user] Re: weewx 4.1.1 exceptions with interceptor 0.53 / Ecowitt HP2551

2020-06-09 Thread gjr80
OK, if that is the case no need to post the entire log, just post the 
entire WeeWX startup sequence through until a couple of archive periods 
have passed. Then post a separate log extract that includes the error and a 
couple of archive periods immediately before the error.

Gary
On Tuesday, 9 June 2020 16:36:54 UTC+10, James Berry wrote:
>
> Am now running in debug mode, it is sometimes hours before this error 
> occurs but will post (probably to pastebin given the size) the entire log 
> when it triggers again.
>
> On Monday, 8 June 2020 22:10:58 UTC+1, gjr80 wrote:
>>
>> Hi,
>>
>> Could you please post a startup debug log; edit weewx.conf, set debug = 
>> 1, save weewx.conf and restart WeeWX. Let WeeWX run until the error occurs 
>> and then take a log extract from when WeeWX was restarted until the error 
>> occurs, make sure you capture the entire WeeWX startup. Post the log 
>> extract back here.
>>
>> 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/5f09b1ee-b11d-49fe-84c0-82b757d1427ao%40googlegroups.com.