[weewx-user] Re: DAVIS Weatherlink Console 6313

2023-09-22 Thread Daniele Moro
If I understand correctly, you are pulling from the WeatherLink website, not from the console, am I right? Some other questions: - you are creating a separate database for this data, aren't you? - could you also pull weather data from the website, for the same station-id? Il giorno sabato 2

Re: [weewx-user] Forecast extension for NWS failing

2023-09-22 Thread David Barto
All the bindings appear correct as noted. Stopped, removed, and started weewx as suggested. Error persists. (Dang) David > On Sep 22, 2023, at 11:49 AM, 'John Kline' via weewx-user > wrote: > > It looks like you are trying to store a forecast in the weewx database. What > do you

[weewx-user] Database Schema: Signals

2023-09-22 Thread Craig Young
What units group do the observation type Signals fall under? Or, if I use a signal do I need to update a configuration file to place it into a units group. -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and

Re: [weewx-user] NOAA data mixed (F and C)

2023-09-22 Thread Tom Keffer
Thanks. How about the rest of my questions? Also, post your [StdReport] section. On Fri, Sep 22, 2023 at 12:30 PM Yves Martin wrote: > ... On the French side, C and F and mixed in the NOAA reports. > ... On the English one, all is correct. > > YM > > Le vendredi 22 septembre 2023 à 15 h 28

[weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Craig Young
In the wview_extended.py schema there is a group of types for signals (signal1, signal2, .. signal8) and stored in the DB as reals. I looked in units.py but did not see signals listed. On Saturday, September 23, 2023 at 9:40:17 AM UTC+12 Craig Young wrote: > What units group do the

[weewx-user] Forecast extension for NWS failing

2023-09-22 Thread David Barto
I upgraded my MacMini to a newer version and installed from scratch. Getting this error for the NWS forecast: 2023-09-22 02:45:16 weewx[820] ERROR user.forecast: NWSThread: NWS: forecast failure: not enough arguments for format string The forecast skin I used was the one Tom recommended:

Re: [weewx-user] NOAA data mixed (F and C)

2023-09-22 Thread Yves Martin
... On the French side, C and F and mixed in the NOAA reports. ... On the English one, all is correct. YM Le vendredi 22 septembre 2023 à 15 h 28 min 42 s UTC-4, Yves Martin a écrit : > Hi Tom, > > Sorry for the delay... had a lot of work... > > unit_system = us > > I'm using the Bootstrap

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Tom Keffer
Exactly. Or, alternatively, you can assign them to appropriate unit groups in the file user/extensions.py: *import weewx.units* *weewx.units.obs_group_dict['signal1'] = 'group_radiation'* *weewx.units.obs_group_dict['signal2'] =

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Tom Keffer
Good advice! On Fri, Sep 22, 2023 at 5:35 PM gjr80 wrote: > The other other variation on Tom's advice to use extensions.py, > particularly if you are (still keen on) writing your own driver, is to > include the unit group assignments in the driver file. They statements only > need to be

Re: [weewx-user] Forecast extension for NWS failing

2023-09-22 Thread 'John Kline' via weewx-user
It looks like you are trying to store a forecast in the weewx database. What do you have for a binding in the [Forecast] section of weewx.conf? It should look like this: data_binding = forecast_binding Also, under [DataBindings] in weewx.conf, you should have: [[forecast_binding]]

[weewx-user] Re: Changing the color of bars in a histogram chart

2023-09-22 Thread gjr80
There is a bug in WeeWX that may cause chart_fill_colours to fail in some circumstances if only a single colour name is specified. The bug will be fixed in due course, but in the interim if you either specify a second colour (eg chart_fill_colors = Red, Blue) or terminate the a single entry

Re: [weewx-user] NOAA data mixed (F and C)

2023-09-22 Thread Yves Martin
Hi Tom, Sorry for the delay... had a lot of work... unit_system = us I'm using the Bootstrap skin. This happen when I upgraded from old version to the new one... and the tests I did with the last Bootstrap (before the 4.1 was released). YM Le mercredi 13 septembre 2023 à 12 h 21 min 07 s

Re: [weewx-user] Forecast extension for NWS failing

2023-09-22 Thread 'John Kline' via weewx-user
What version of WeeWX?On Sep 22, 2023, at 1:52 PM, David Barto wrote:All the bindings appear correct as noted.Stopped, removed, and started weewx as suggested.Error persists. (Dang) DavidOn Sep 22, 2023, at 11:49 AM, 'John Kline' via weewx-user wrote:It looks like you are trying to store a

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Tom Keffer
Signals are for ill-defined measurements. Unit groups exist for two reasons: 1. To pick an appropriate unit for a type of measurement. For example, ºC for temperatures. 2. To pick an appropriate format and label. Signals don't fit neatly into these reasons. They don't take a unit, and

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Craig Young
Thanks Tom. Signal1 for my station is the signal voltage from a pyrgometer. Signal2 is the temperature of the pyrgometer sensor (C) and Signal3 is the long wave intensity (W/m2) calculated by the datalogger. So if I understand correctly, the weewx engine will pass these values untouched

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread gjr80
The other other variation on Tom's advice to use extensions.py, particularly if you are (still keen on) writing your own driver, is to include the unit group assignments in the driver file. They statements only need to be somewhere where they are executed each time WeeWX starts. If the fields

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Craig Young
Signal4 and Signal 5 are sensor tilt measurements in degrees. For example, if the sensor is tilted 1.5 degrees in the N/S direction the value for Signal4 = 1.5 degrees. Looking at units.py and defaults.py I see groups for degrees temperature, degrees direction, but not degrees tilt. Should a

Re: [weewx-user] Re: Database Schema: Signals

2023-09-22 Thread Craig Young
I will add the assignments in the driver. On Saturday, September 23, 2023 at 12:38:22 PM UTC+12 Tom Keffer wrote: > Good advice! > > On Fri, Sep 22, 2023 at 5:35 PM gjr80 wrote: > >> The other other variation on Tom's advice to use extensions.py, >> particularly if you are (still keen on)

[weewx-user] Re: Changing the color of bars in a histogram chart

2023-09-22 Thread Remy Lavabre
Hi. Skin.conf : #Histogrammes horaires électricité LINKY [[[daylinky1]]] yscale = None, None, 1 plot_type = bar unit = watt_hour electricityLinky chart_fill_colors = Red color = Red

[weewx-user] Re: Changing the color of bars in a histogram chart

2023-09-22 Thread gjr80
chart_fill_colors is a config option that applies to all lines/bars not individual lines/bars. Try moving chart_fill_colors to be under the main plot config rather than under an individual line/bar config, eg: #Histogrammes horaires électricité LINKY [[[daylinky1]]] yscale =

[weewx-user] Re: Changing the color of bars in a histogram chart

2023-09-22 Thread Remy Lavabre
Hello Gary and thank you again for your response. 1/If I put the option chart_fill_colors = Red in [[[daylinky1]]] as you suggest, it curiously blocks everything. My histogram is not generated but also the following ones from skin.conf. If I replace chart_fill_colors = Red in the