[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread Wayne Rademacher
I had previously looked through the customization guide but failed to realize the usefulness of the information.After working through this practical exercise, I revisited the customization guide and a light bulb came on!I now have a much better understanding of the weewx customization i

Re: [weewx-user] Rain counter configuration

2023-03-29 Thread Tom Keffer
The variable 'rain' is the amount of rain that fell during the time in question. That is, for LOOP packets, it should be the amount of rain that fell since the last LOOP packet (likely a very small number), for archive records, it should be the amount of rain that fell during the archive interval

Re: [weewx-user] Error since 29.03 at 00:01

2023-03-29 Thread Tom Keffer
I can't be sure, but I suspect the Belchertown skin fell victim to this issue: https://github.com/weewx/weewx/issues/436 On Wed, Mar 29, 2023 at 8:37 AM geni08...@gmail.com wrote: > I see this error since today! > > Mar 29 17:00:28 Wetter-Raspi4 weewx[629] INFO user.belchertown: version 1.3 > Ma

Re: [weewx-user] Re: Belchertown and Tempest battery voltage

2023-03-29 Thread Wayne Rademacher
Dan, We solved the decimal point issue. Check out the conversation: How do I change the number of displayed decimal places? Wayne On Tuesday, March 28, 2023 at 9:36:51 PM UTC-5 Dan Roman wrote: > Thanks Wayne, very helpful. I had made some progress but this sped things > up for me. I

Re: [weewx-user] Re: Belchertown and Tempest battery voltage

2023-03-29 Thread Wayne Rademacher
Dan, Be sure to checkout the other decimal display conversationwe figured out how the properly display the battery voltage and luminosity. *How do I change the number of displayed decimal places?* Wayne On Tuesday, March 28, 2023 at 9:36:51 PM UTC-5 Dan Roman wrote: > Thanks Wayne, very hel

Re: [weewx-user] Raspberry Pi ... What's happening?

2023-03-29 Thread Greg Troxel
Yves Martin writes: > What model of motherboard with how much memory on it, do you suggest for > weewx? I have here an old version (Raspberry Pi 2B 1GB) and it works well > but the board is 4-5 years old. It is time to upgrade. What is your > suggestion? I am using a 3B with 1 GB of RAM, and

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread gjr80
Perhaps not in the exact words of this issue, but the Customising units and unit group section in the Customisation Guide covers pretty much everything in this thread. Gary On Thursday, 30 March 2023 at 06:33:45 UTC+10:30 vince wrote: >

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread vince
Wow - I never put the pieces together in my brain before. Thanks for replying with what you did rather than just "solved". Anybody willing to volunteer adding a brief wiki page for this one ? It seems like a great example to use for mapping something to a particular units group, as well as ed

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread Wayne Rademacher
It works!!! Thanks everyone, Wayne Here are the required changes: I added this to extensions.py as suggested by an oldman and Karen K */usr/share/weewx/user extensions.py* *import weewx.units* *weewx.units.obs_group_dict['windBatteryStatus'] = ''group_volt'weewx.units.obs_group_dict['luminosit

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread Karen K
I guess `windBatteryStatus` is not a boolean value (i.e. true or false) but an integer or real value. So you may want to choose another observation group. The decimal places are set in section StringFormats for the respective units (not observation groups). an oldman schrieb am Mittwoc

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread an oldman
Hi this is how i did it. using *WeeWX version: 4.10.1 Seasons version: 4.10.1 Python version: 3.10.10* *in the user dir is a file extensions.py* *i add* import weewx.units weewx.units.obs_group_dict['windBatteryStatus'] = 'group_boolean' weewx.units.obs_group_dict['luminosity'] = 'group_illuminanc

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread vince
For this original question: - you're using luminosity and windBatteryStatus which are in the db schema - but I can't see how to determine what they map to by default - so I can't suggest which [[StringFormats]] edits to make in skin.conf This is one where there might not be a simple

[weewx-user] Rain counter configuration

2023-03-29 Thread Julian Riccomini
Hi, I just got WeeWX version 4.91 running on a Raspberry Pi using FileParse for my data input because I built my own weather station. Everything is working nicely, with exception of the rain counter. Is the program expecting a value of 1 for every pulse from the tipping bucket or .01 value?

[weewx-user] Error since 29.03 at 00:01

2023-03-29 Thread geni08...@gmail.com
I see this error since today! Mar 29 17:00:28 Wetter-Raspi4 weewx[629] INFO user.belchertown: version 1.3 Mar 29 17:00:29 Wetter-Raspi4 weewx[629] INFO user.belchertown: New forecast file downloaded to /home/nfs/wetter/json/forecast.json Mar 29 17:00:37 Wetter-Raspi4 weewx[629] ERROR weewx.report

Re: [weewx-user] Raspberry Pi ... What's happening?

2023-03-29 Thread David Lang
when covid hit, the Pi foundation made the mistake of thinking that demand would drop, and so they reduced their fab orders (and then the fabs had outages, causing the chip shortages) Instead, demand spiked, and they have spent the last couple of years scrambling to re-establish volume product

[weewx-user] Raspberry Pi ... What's happening?

2023-03-29 Thread Yves Martin
Hi, I've ordered 6 months ago 2 Raspberry Pi 4B 8GB, and they are still BO, and the price triple since! It looks like, it becomes very difficult to get this board now at a reasonable price. What model of motherboard with how much memory on it, do you suggest for weewx? I have here an old versi

[weewx-user] weekly chart strips

2023-03-29 Thread Graham Eddy
suppose you look at a given weekly plot of some observation e.g. outside temperature. suppose further that you can scroll left or right to see earlier or later weekly plots - much easier to see trends going over months e.g. how the temperature is varying over several months. (in my case looking

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread Wayne Rademacher
*To display the data, I simply added the observation title from my sensor map to the "station_observations" string in the weewx.conf file.* *Since I was able to change the name of the observation (i.e. luminosity to Brightness) I was hoping the data could also be formatted. I included snippets

[weewx-user] Re: How do I change the number of displayed decimal places?

2023-03-29 Thread Karen K
@vince: That is the Belchertown skin. The area schown in the screenshot is configured in a single entry in skin.conf, listing the observation types to be displayed. There is no special configuration for decimal places available. So the general configuration of WeeWX applies. vince schrieb am Mi