[weewx-user] Re: Is anyone using an Acurite SmartHub directly plugged into the Raspberry Pi ethernet?

2018-10-27 Thread rich T
Is your smarthub directly connected to the RPI? On Saturday, October 27, 2018 at 7:06:14 PM UTC-4, Gabe wrote: > > Thanks! Works! Except Belchersking giving me > > Generate failed with exception '' > > but that's not related to acurite :) > > On Saturday, October 27, 2018 at 7:04:16 PM UTC-4, ri

Re: [weewx-user] Re: Belchertown skin for weewx now available!

2018-10-27 Thread Gabe
Did you have a workaround? I have the same error. On Wednesday, October 17, 2018 at 12:41:56 PM UTC-4, Juan Antonio Mosquera wrote: > > I have detected that this problem is due to when a data does not meet the > quality data (StdQC), so this value must be missing and that causes it to > fail. T

Re: [weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Louis De Lange
Richard, The fog is lifting... On your own server, do you have the ability to adapt to receive the standard GET or POST payload formats that services such as WU use? Or does the payload need to be in specific format that you cannot change? LdL On Saturday, 27 October 2018 13:57:41 UTC-7, Ri

[weewx-user] Re: Using WeeWX with CSV or MySQL as data source

2018-10-27 Thread rutabagaist
Thank you for the quick replies, just as I checked on this thread, I also found a reference to fileparse in the customization wiki as well as the other forum (weewx-development)... I think I'm on the right track - my Python knowledge is minimal, but how hard can it be, right :) On Saturday, Oct

Re: [weewx-user] Re: Steel Gauges question

2018-10-27 Thread gjr80
Gday Steve, some comments below Gary On Sunday, 28 October 2018 00:18:16 UTC+10, Steve2Q wrote: > Good Morning, Gary. I implemented your changes from last night, and with > the exception of gauge-data.txt now in /var, there is no other change. Here > are two observations from today: > > 1. Wi

[weewx-user] Re: Is anyone using an Acurite SmartHub directly plugged into the Raspberry Pi ethernet?

2018-10-27 Thread Gabe
Thanks! Works! Except Belchersking giving me Generate failed with exception '' but that's not related to acurite :) On Saturday, October 27, 2018 at 7:04:16 PM UTC-4, rich T wrote: > > Here is my mapping: > > [[sensor_map]] > > # bridge > > barometer = pressur

[weewx-user] Re: Is anyone using an Acurite SmartHub directly plugged into the Raspberry Pi ethernet?

2018-10-27 Thread rich T
Here is my mapping: [[sensor_map]] # bridge barometer = pressure.1532.* # tower outTemp = temperature.1532.* outHumidity = humidity.1532.* windSpeed = windspeed.1532.* windDir = winddir.

[weewx-user] Re: Using WeeWX with CSV or MySQL as data source

2018-10-27 Thread gjr80
Vince is right, you can more or less do anything by writing your own driver, though it likely will take the most effort. In terms of csv type import you are right that the csv import capabilities of wee_import are designed for one off import of data, not ongoing regular reading of data. You migh

Re: [weewx-user] Re: PWS data format for Interceptor

2018-10-27 Thread Ives
Hello, everyone I realize this is a rather old entry, but I'd like to share my findings. I've had some success on connecting to the realtime API using the socketIO-client-nexus library Apparently it's regarding an issue with the socketio protocol used by the AW server, since the original socketi

Re: [weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Richard Verbruggen {Van Nut}
Hi Louis, Sorry for the ambiguity. At the moment I use LightsoftWeatherCenter to sent our weather data to: WU, CWOP and my own server. This server in his turn collects data from multiple stations and creates a websocket push service for my clients (other websites) to subscribe to, to get local wea

Re: [weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Louis De Lange
Richard, To really provide you with the best advice we need to understand a bit better what you want to do. I am not familiar with LWC so I am not sure how this fits into the picture. >From your description below it sound like you are trying to upload to WU and CWOP at a minimum - this can be

[weewx-user] Re: Using WeeWX with CSV or MySQL as data source

2018-10-27 Thread vince
On Saturday, October 27, 2018 at 12:58:52 PM UTC-7, m...@philrudz.com wrote: > > I've searched around and can't determine whether this is possible. I run a > pretty sophisticated Campbell Scientific based station; I'd like to use > WeeWX as a premade solution for data presentation and > aggregat

[weewx-user] Using WeeWX with CSV or MySQL as data source

2018-10-27 Thread me
I've searched around and can't determine whether this is possible. I run a pretty sophisticated Campbell Scientific based station; I'd like to use WeeWX as a premade solution for data presentation and aggregation/archiving.I can get data from the Campbell Scientific logger in all manner of inte

[weewx-user] Re: Is anyone using an Acurite SmartHub directly plugged into the Raspberry Pi ethernet?

2018-10-27 Thread Gabe
More specifically, I have no idea how to setup the sensor_map section of weewx.conf, I don't know how to get the inTemp = temperature.06022.* sensor ids On Thursday, October 18, 2018 at 7:47:13 PM UTC-4, rich T wrote: > > Here is my configuration: > > Smarthub >(Port 1) Managed Switch (Port 2)

[weewx-user] Re: Is anyone using an Acurite SmartHub directly plugged into the Raspberry Pi ethernet?

2018-10-27 Thread Gabe
Once setup of weewx-interceptor is done, how do you get the sensors to show up in the reports? Not sure where to begin editing (skin, weewx.conf, etc.)? On Thursday, October 18, 2018 at 7:47:13 PM UTC-4, rich T wrote: > > Here is my configuration: > > Smarthub >(Port 1) Managed Switch (Port 2) >

Re: [weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Richard Verbruggen {Van Nut}
Hi Thomas and Louis, Thank you for your swift responses! I'm not very familiar with coding in Python, so Louis' approach sounds more likely to fit my python skills ;) As a background: At the moment we have a Vantage Vue connected to a Mac Mini running LWC. LWC is responsible to call an URL with

Re: [weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Thomas Keffer
Very clever, Louis! I don't like the WU protocol very much, as it breaks all kinds of rules about how to design a proper RESTful service. In particular, it uses an HTTP GET, when it should really use a POST. -tk On Sat, Oct 27, 2018 at 6:38 AM Louis De Lange wrote: > Richard, > > If you read t

Re: [weewx-user] Re: Steel Gauges question

2018-10-27 Thread Steve2Q
Good Morning, Gary. I implemented your changes from last night, and with the exception of gauge-data.txt now in /var, there is no other change. Here are two observations from today: 1. With debug = 1 there is no record of any of the charts (such as dayinouttemp.png) being uploaded to any locati

[weewx-user] Re: How to sent 'live' data to custom URL?

2018-10-27 Thread Louis De Lange
Richard, If you read through the restx.py file that controls all of the restx services such wunderground uploads you will notice a number of parameters that can be specified, such as post_interval and server_url. When you read through the user guide you might notice that these specific paramet

Re: [weewx-user] How to sent 'live' data to custom URL?

2018-10-27 Thread Thomas Keffer
Hello, Richard Binding to the LOOP packets is really quite easy. There are several uploaders that do this. Perhaps you can crib from one of them? - InfluxDB uploader - MQTT uploader . - WeeRT uploader

[weewx-user] How to sent 'live' data to custom URL?

2018-10-27 Thread Richard
I'm looking for a way to hit an url with weatherdata on the receive of each loop packet. If I look at the user guide, i can see the [StdRESTful] section and was thinking I need to configure something here. But I can't see a 'default' extension. Am i missing something? The rapidfire/wunderground

[weewx-user] Re: Porting database from wview to weewx

2018-10-27 Thread Andrew Milner
the documentation is usually your saviour see http://weewx.com/docs/usersguide.htm#wview_compatibility On Saturday, 27 October 2018 09:27:45 UTC+3, Raffaello Bonvino wrote: > > Hi all. I'm new to weewx and I'm trying to use it instead of wview. Do you > think it's possible to transport an old