[weewx-user] Hey, it works

2020-06-04 Thread Kevin Smolkowski
Just wanted to say thanks to Tom for creating weewx. I've been using wview since it was first created and have data from way way way back. Had a disk fail and wasn't able to recovery everything and could not get wview to start up... Ugh. I stumbled accross weewx, downloaded it, read

Re: [weewx-user] Substitute readings from additional sensors for those from a weather station's sensors

2020-06-04 Thread Graham Eddy
if the readings are inside weewx, just use [calibrate] section to overwrite the variable. if they are outside, you will need to write a simple data service, see one of the examples. the packet is just a dictionary keyed on obs_type so there is no programming difference between adding a value

[weewx-user] Re: FUN with RPi

2020-06-04 Thread Xant
Daniel Thanks for your feedback, but think there is a misconception. Think that RPi can handle much more load than you think. Underneath, is snapshot of my RPi4, which runs: - WeeWX - Belchertown skin - MQTT (which I forgot to mention in original post) - Influx + Grafana -

Re: [weewx-user] Re: Lightning Detector shows bad data

2020-06-04 Thread Sean Ostermann
Kenny, Did you ever get this worked out? I am seeing the exact same issues you are. I added lightning to my belchertown skin for station observations and I am seeing the 0.0 for it until MQTT updates (but I get an undefined sometinmes). Trying to figure out how to not display the

[weewx-user] Re: Upgrade to 4.1 and shift to Interceptor from ObeserverIP

2020-06-04 Thread Bill Arthur
I had several stations using ObserverIPs, and switched them all over to Ecowitt GW1000s. So with my (now surplus) ObserverIPs I tried getting them to report to WeeWx. I finally gave up from frustration. The solution to your problem may be getting a GW1000, it's only about $35 and works

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

2020-06-04 Thread Olivier Payrastre
I've found the trouble, was because, my Weewx4 was on Python2. Now launched with python3 there no more issue on my RPI3 and raspbian10. Le jeudi 4 juin 2020 13:53:53 UTC+2, Olivier Payrastre a écrit : > > Yes, why not, but before doing that, i'd like to know if you kept an empty > database or

Re: [weewx-user] Wind Rose empty in Steel Series

2020-06-04 Thread Tom Keffer
That's probably what happened. You're not the first to get tripped up by this. Obviously, I need to rethink how to manage the transition to the new way of specifying schemas. On Thu, Jun 4, 2020 at 11:20 AM Jacques Terrettaz wrote: > Forget my last message : I used a new Raspberry PI to

Re: [weewx-user] Substitute readings from additional sensors for those from a weather station's sensors

2020-06-04 Thread 'Peter Fletcher' via weewx-user
Thanks! The sensor data is already being collected and stored by another systemd-controlled process, so I would just need to modify that slightly to communicate it to the weewx function - probably via a file in /var/tmp. I think that binding to NEW_LOOP_PACKET does what I want better than just

Re: [weewx-user] Re: Registering on weewx map.

2020-06-04 Thread Bill Burton
Hello Matt, On Wed, Jun 3, 2020 at 4:10 PM mwall wrote: > On Wednesday, June 3, 2020 at 1:55:15 PM UTC-4, William Burton wrote: >> >> If the screen capture for your own site fails or if the site's skin has >> been changed, is there a way to get the registration process to retry the >> screen

[weewx-user] Re: Move to Python 3?

2020-06-04 Thread mwall
On Thursday, June 4, 2020 at 3:28:04 PM UTC-4, WindnFog wrote: > > That worked, Neville: > > python --version > Python 3.7.3 > > However, weewx still grabs python 2.7 . . . perhaps it's a bit too early > (new Raspberry Pi O/S and a new weewx version 4.1.1 for someone at my level > of expertise

Re: [weewx-user] Re: Move to Python 3?

2020-06-04 Thread Tom Keffer
Depends on how weewxd is executed. If you (or the daemon init script) run the simple command *weewxd /etc/weewx/weewx.conf* then the "shebang" is put into use. What is a shebang? If the first line of a file starts with the characters '#!', that's a shebang. It instructs the shell how to run the

[weewx-user] Re: Belchertown - Logo - relative_url

2020-06-04 Thread Joachim Puttkammer
logo_image = "/public_html/logo.png" is the solution Thank you Bill Hello Joachim, > > Since your browser-facing folder for WeeWX is /public_html, you should > specify the logo using a server-relative URL: > > [Extras] > logo_image = "/public_html/logo.png" > > This works because the

[weewx-user] Re: Hardware Recomendation for weewx Compatible Hardware

2020-06-04 Thread RobbH
Tom, you might find it helpful to look at the Hardware Guide at http://www.weewx.com/docs/hardware.htm It will tell you the reporting interval for some families of weather stations. On Wednesday, June 3, 2020 at 4:16:32 PM UTC-4, Tom K wrote: > > Hello all - looking for some specific

[weewx-user] Re: Move to Python 3?

2020-06-04 Thread WindnFog
That worked, Neville: python --version Python 3.7.3 However, weewx still grabs python 2.7 . . . perhaps it's a bit too early (new Raspberry Pi O/S and a new weewx version 4.1.1 for someone at my level of expertise to monkey around with this yet. It's working, and while I have a "just made"

Re: [weewx-user] Re: Forecast Xtide

2020-06-04 Thread John Kline
It’s best to leave forecast.py alone and pass max_events as an arg when using that variable. For example, to change max_events to 100 in the tides.html.tmpl template that ships with the extension: Change: #set $tides = $forecast.xtides() to: #set $tides = $forecast.xtides(max_events=100) > On

[weewx-user] Re: Hardware Recomendation for weewx Compatible Hardware

2020-06-04 Thread RobbH
On Wednesday, June 3, 2020 at 11:32:46 PM UTC-4, Xant wrote: > > > Welcome to WeeWX, but also to note, that there are many previous posting > regarding this issue (which should check prior to new post). > > It is certainly true that there are many previous posts asking questions about

Re: [weewx-user] Re: Forecast Xtide

2020-06-04 Thread Phil Owers
In forecast.py under def xtides there is a max_events = 45. Changing that to a higher number has sorted my problem, however you may well tell me that could upset something. Phil On Thu, 4 Jun 2020, 16:10 Phil Owers, wrote: > Hi Mathew > Sorry I need your help again > Im trying to display at

Re: [weewx-user] Substitute readings from additional sensors for those from a weather station's sensors

2020-06-04 Thread John Kline
My thoughts. You’ll want to hear others. I would collect indoor temp on another thread and make the substitution in a function bound to NEW_LOOP_PACKET. I typically do this for adding (e.g., pm2_5), but replacing should be no different. You’ll want the separate thread to save off the

[weewx-user] Re: Belchertown - Logo - relative_url

2020-06-04 Thread William Burton
Hello Joachim, Since your browser-facing folder for WeeWX is /public_html, you should specify the logo using a server-relative URL: [Extras] logo_image = "/public_html/logo.png" This works because the browser will fill-in the scheme, hostname and port so there's no need to fully-qualify

Re: [weewx-user] Substitute readings from additional sensors for those from a weather station's sensors

2020-06-04 Thread p q
I've done this for outtemp. Should be possible with inside temp. I modified the driver to do it, but there may be an easier way. https://hackaday.io/project/101680-solar-powered-wifi-temperature-sensor-for-weewx On Thu, Jun 4, 2020 at 11:09 AM 'Peter Fletcher' via weewx-user <

Re: [weewx-user] Wind Rose empty in Steel Series

2020-06-04 Thread Jacques Terrettaz
Forget my last message : I used a new Raspberry PI to install weewx V4, and then I transferred my "old" mysql database to the new installation... > Le 4 juin 2020 à 20:01, Jacques Terrettaz a écrit : > > Tom, > > One comment about the old and new database schema : I didn't change

[weewx-user] Substitute readings from additional sensors for those from a weather station's sensors

2020-06-04 Thread 'Peter Fletcher' via weewx-user
My (Vantage Pro 2) weather station console is located in my office/computer room, which is typically the warmest place in my house. It consequently returns an indoor temperature which is higher than it 'should' be and an indoor (relative) humidity that is lower than it 'should' be. I do have

Re: [weewx-user] Re: Wind Rose empty in Steel Series

2020-06-04 Thread Jacques Terrettaz
Tom, One comment about the old and new database schema : I didn't change anything by myself in the [DataBinding] section of weewx.conf after the upgrade to V4.0, so I suspect that the manager = weewx.manager. DaySummaryManager line was automatically modified during the upgrade process.

[weewx-user] TE923 Nexus RF Problem, Start sensor scan via ssh with the te923 driver

2020-06-04 Thread Felix Maltzahn
Hello everybody, is it possible to start a sensor scan (like pressing the "DOWN"-button for 5seconds...) via weewx or via ssh, te923 driver? -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving

Re: [weewx-user] Wind Rose empty in Steel Series

2020-06-04 Thread Jacques Terrettaz
Yes, it works. I did the same as yesterday : drop the daily tables, and rebuild them, and no error with the wind tags. > Le 4 juin 2020 à 16:59, Tom Keffer a écrit : > > Let us know if that works. > > On Thu, Jun 4, 2020 at 7:56 AM Jacques Terrettaz > wrote: >

[weewx-user] Re: Forecast Xtide

2020-06-04 Thread Phil Owers
Hi Mathew Sorry I need your help again Im trying to display at least 3 months of tide time data Jun 4 15:32:12 raspberrypi weewx[9290] INFO user.forecast: MainThread: XTide: forecast version 3.4.0b1 Jun 4 15:32:12 raspberrypi weewx[9290] INFO user.forecast: MainThread: XTide: interval=86400

[weewx-user] Re: Belchertown - Logo - relative_url

2020-06-04 Thread Pat
That URL was a guess based on your previous replies. Can you open the image at that direct URL? If not, adjust as necessary. On Thursday, June 4, 2020 at 11:00:23 AM UTC-4, Joachim Puttkammer wrote: > > Hi Pat > > Belchertown Skin Version: 1.1 is running > and "http://192.168.8.100/logo.png;

[weewx-user] Re: Belchertown - Logo - relative_url

2020-06-04 Thread Joachim Puttkammer
Hi Pat Belchertown Skin Version: 1.1 is running and "http://192.168.8.100/logo.png; doesn't work as well as "localhost" or "127.0.0.1" Am Donnerstag, 4. Juni 2020 14:19:00 UTC+2 schrieb Pat: > > Which version of the skin are you running? > > You could just specify it as

Re: [weewx-user] Wind Rose empty in Steel Series

2020-06-04 Thread Tom Keffer
Let us know if that works. On Thu, Jun 4, 2020 at 7:56 AM Jacques Terrettaz wrote: > Yes, it was mixed : DaySummaryManager with the old database schema. > > I reconfigured with manager = weewx.wxmanager.WXDaySummaryManager > > Thanks > > Jacques > > Le 4 juin 2020 à 16:38, Tom Keffer a écrit

Re: [weewx-user] Wind Rose empty in Steel Series

2020-06-04 Thread Jacques Terrettaz
Yes, it was mixed : DaySummaryManager with the old database schema. I reconfigured with manager = weewx.wxmanager.WXDaySummaryManager Thanks Jacques > Le 4 juin 2020 à 16:38, Tom Keffer a écrit : > > My guess is that your system has a mix of old and new ways of specifying a > database

Re: [weewx-user] Re: Wind Rose empty in Steel Series

2020-06-04 Thread Tom Keffer
My guess is that your system has a mix of old and new ways of specifying a database schema. The old way: [DataBindings] [[wx_binding]] ... # The manager handles aggregation of data for historical summaries manager = weewx.manager.WXDaySummaryManager schema =

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

2020-06-04 Thread Greg Troxel
Sean Jahnig writes: > Thanks Greg. > > I'm trying to sound smart but honestly, this command line stuff overwhelms > me a bit. > > This is the code that i run from the pi's console: sudo > PYTHONPATH=/usr/share/weewx python /usr/share/weewx/user/sdr.py > --cmd="rtl_433 -M utc -F json" See the

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

2020-06-04 Thread Sean Jahnig
Thanks Greg. I'm trying to sound smart but honestly, this command line stuff overwhelms me a bit. This is the code that i run from the pi's console: sudo PYTHONPATH=/usr/share/weewx python /usr/share/weewx/user/sdr.py --cmd="rtl_433 -M utc -F json" When i run that, it gives me a lot of data, of

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

2020-06-04 Thread Greg Troxel
Sean Jahnig writes: > Do you happen to know if rtl itself has any settings that need to be set to > knots? or does rtl simply parse whatever it reads directly to weewx? I was referrring to rtl_433, which is not about weewx, and simply receives and decodes data. It does have command-line

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

2020-06-04 Thread Sean Jahnig
Hi Greg, Thanks for that reply and the suggestions, i think you are right. When i was fiddling with the software 2 weeks ago i must've somehow enabled kph instead of knots. Somehow... When i run rtl directly from the console it tells me the following from the acurite 5-in-1 sensor:

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

2020-06-04 Thread Greg Troxel
Sean Jahnig writes: > I have an acurite 5-in-1 that is working but appears to be reading too > high. It says 22 knots but it’s more like 15. Is there possibly weewx > setting i should check before checking the hardware? > > I know it is not reading accurately because we use it for kite surfing >

[weewx-user] Re: Belchertown - Logo - relative_url

2020-06-04 Thread Pat
Which version of the skin are you running? You could just specify it as "http://192.168.8.110/logo.png " and it'll work for you without "downloading from the outside". On Thursday, June 4, 2020 at 6:51:11 AM UTC-4, Joachim Puttkammer wrote: > > Hi, > > I have a

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

2020-06-04 Thread Olivier Payrastre
Yes, why not, but before doing that, i'd like to know if you kept an empty database or import it after ? Thanks a lot. Le jeudi 4 juin 2020 12:56:11 UTC+2, Joachim Puttkammer a écrit : > > For Information > > I have completely reinstalled weewx 4.1.1 ( Raspberry , Meteostick, empty > database,

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

2020-06-04 Thread Sean Jahnig
Hi guys, I have an acurite 5-in-1 that is working but appears to be reading too high. It says 22 knots but it’s more like 15. Is there possibly weewx setting i should check before checking the hardware? I know it is not reading accurately because we use it for kite surfing and it has always

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

2020-06-04 Thread Joachim Puttkammer
For Information I have completely reinstalled weewx 4.1.1 ( Raspberry , Meteostick, empty database, Belchertown skin). NOAA reports are displayed correctly. Am Dienstag, 2. Juni 2020 11:08:38 UTC+2 schrieb Olivier Payrastre: > > > Hello, > > I just tried update to 4.1.1 this morning, but

[weewx-user] Belchertown - Logo - relative_url

2020-06-04 Thread Joachim Puttkammer
Hi, I have a little problem with the logo. I do not want to 'download' the logo from outsite. logo.png is stored in the images directory /etc/weewx/skins/Belchertown/skin.conf [Extras] logo_image = "logo.png" YES logo : http://192.168.8.110/public_html/ NO logo :

[weewx-user] Re: Registering on weewx map.

2020-06-04 Thread 'Bent Jensen' via weewx-user
I think I found the problem. And it is very embarrassing to admit. :-( I couldn't find any problems, when it stroke me. If everything seems to work and the station does not show up where expected to. Then it could be a wrong coordinate. So going to google maps and reading the expected

[weewx-user] Re: Registering on weewx map.

2020-06-04 Thread 'Bent Jensen' via weewx-user
Hi mwall there have been a few successful registrations by https://detlillehus.info: > > 2020.05.26 05:27:12 > > 2020.05.29 04:54:07 > > 2020.05.31 19:13:21 > > 2020.05.31 19:20:42 > > 2020.06.01 05:36:49 > > 2020.06.03 05:43:42 > > and i can see it in the listing (expand the 'Stations' section):

[weewx-user] Re: meteostick - rf_sensitivity (90)

2020-06-04 Thread Joachim Puttkammer
Hi Luc, In the weewx.conf there is not this entry. I have inserted the line Joachim Joachim, > > In the Meteostick section of weewx.conf. change the rf_sensitivity > parameter followed by a restart of weewx.. > > [Meteostick] > rf_sensitivity = 90 > > Luc > > > On Wednesday, 3 June 2020

[weewx-user] Re: Registering on weewx map.

2020-06-04 Thread 'Bent Jensen' via weewx-user
Hi Greg You need this bit: > > [[StationRegistry]] > # To register this weather station with weewx, set this to true > register_this_station = true > As I wrote this has allready been done. Actually it's an station with about 2 years uninterrupted run (more or less). And has

[weewx-user] Re: Wind Rose empty in Steel Series

2020-06-04 Thread Jacques Terrettaz
Interestingly, I had the same kind of errors yesterday concerning wind tags such as *day.wind.count.raw* , *month.wind.count.raw*, *day.wind.max. * This happened after I deleted all daily mysql tables and let weewx rebuild them at startup. I am using weewx V4.1.1 Finally, I restored a full