Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Greg from Oz
Hi Tom, Is there a way to put right click on the url of the web cam links in the http://weewx.com/stations.html? The reason I ask is because when I click on a link to have a look at that web site and then press the back button it goes back to the zoomed out view and then I have to move the map

[weewx-user] Re: Rain total calculation?

2020-10-08 Thread Sébastien F4GQK
Hello, I have the same problem could you give me the code for your variable so i can do the same. I have the same worries as you thanks Sebastien Le lundi 17 septembre 2018 à 21:14:57 UTC+2, jmc...@gmail.com a écrit : > I think I got this working. > > In the grooveweather software (who get's/

[weewx-user] Re: My "rain" field adds up

2020-10-08 Thread Sébastien F4GQK
Thank you for the answer. I'm not good enough at php to do a command line that would do this subtraction operation. Where in HP1000.py it is. It would not be better to just tell it to stop adding the daily precipitation value. The weather station knows the value of the daily precipitation, it

[weewx-user] Program to modify weewx.sdb

2020-10-08 Thread Sébastien F4GQK
Hello, with which program can I modify a weewx.sdb file (Weewx database)? This is to correct data errors. Thanks Sebastien -- 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

[weewx-user] Re: Program to modify weewx.sdb

2020-10-08 Thread Ξ
Hi Sebastien, Change directory to where weewx.sdb is and use sqlite3, which presumably your system has: # sqlite3 weewx.sdb On Thursday, October 8, 2020 at 11:57:56 AM UTC+3 f4...@f4gqk.fr wrote: > > Hello, > > with which program can I modify a weewx.sdb file (Weewx database)? > > This is to c

[weewx-user] After update to version 4.1 - Imagegenerator UnicodeEncodeError: 'ascii' codec can't encode character

2020-10-08 Thread dani.mac...@gmail.com
Hello, I finally updated yesterday to version 4.1. Unfortunately I get the well known UnicodeEncodeError in imagegenerator when processing spanish characters. I have tried all the tips I have found (reinstalling the font, checking locale, etc). It is weird, because some characters are being c

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Tom Keffer
Why not just middle-button click? On Thu, Oct 8, 2020 at 12:29 AM Greg from Oz wrote: > Hi Tom, > > Is there a way to put right click on the url of the web cam links in the > http://weewx.com/stations.html? > > The reason I ask is because when I click on a link to have a look at that > web site

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Didier Decoodt
Hi Tom I have registered my station, it's OK but I have not a preview image when I select the station An idea? [image: image.png] Didier Le jeu. 8 oct. 2020 à 13:20, Tom Keffer a écrit : > Why not just middle-button click? > > On Thu, Oct 8, 2020 at 12:29 AM Greg from Oz wrote: > >> Hi Tom, >>

Re: [weewx-user] After update to version 4.1 - Imagegenerator UnicodeEncodeError: 'ascii' codec can't encode character

2020-10-08 Thread Tom Keffer
Hello, Daniel. What version of Python are you using? What is 'user.translategenerator.ImageGeneratorTranslated'? It is not part of WeeWX. Most likely, it is creating image labels, which are not in unicode. -tk On Thu, Oct 8, 2020 at 3:56 AM dani.mac...@gmail.com < dani.macias.pe...@gmail.com> w

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Tom Keffer
Unfortunately, we have suspended preview snapshots. It was just taking too much memory, which would cause weewx.com to hang. Maybe later! On Thu, Oct 8, 2020 at 4:38 AM Didier Decoodt wrote: > Hi Tom > > I have registered my station, it's OK but I have not a preview image when > I select the sta

Re: [weewx-user] After update to version 4.1 - Imagegenerator UnicodeEncodeError: 'ascii' codec can't encode character

2020-10-08 Thread Dani Macías Perea
Thanks for your answer Tom. Sorry, I tought ImageGeneratorTranslated was part of WeeWX. It is an skin from Nick Dajda (brewster76) https://github.com/brewster76/fuzzy-archer/blob/master/bin/user/translategenerator.py Using Python 2.7.13. El jue., 8 oct. 2020 a las 13:50, Tom Keffer () escribió:

[weewx-user] Re: Can't tell if I'm posting soilTemp1, soilMoist1 and leafWet1 to WU

2020-10-08 Thread Duane Kerzic
I have to agree. This is much better than what I was using. Great job on putting this together and making it easy to use. On Wednesday, October 7, 2020 at 9:11:41 AM UTC-4 quantum.m...@googlemail.com wrote: > Just a quick update - I received quick responses back, and as suspected, > they both

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Didier Decoodt
Ok Thanks Didier Le jeu. 8 oct. 2020 à 13:51, Tom Keffer a écrit : > Unfortunately, we have suspended preview snapshots. It was just taking too > much memory, which would cause weewx.com to hang. Maybe later! > > On Thu, Oct 8, 2020 at 4:38 AM Didier Decoodt > wrote: > >> Hi Tom >> >> I have re

Re: [weewx-user] After update to version 4.1 - Imagegenerator UnicodeEncodeError: 'ascii' codec can't encode character

2020-10-08 Thread Tom Keffer
Looking (briefly) through the code, it looks like Nick did not port it to Python 2. In particular, when he opens up the language configuration file, he did not specify an encoding, so the results will not be in Unicode. Try changing line 87 from language_dict = ConfigObj(language_config_path) t

[weewx-user] Re: Can't tell if I'm posting soilTemp1, soilMoist1 and leafWet1 to WU

2020-10-08 Thread gjr80
Notwithstanding, it’s a fairly easy process to update the uploaders so I will go ahead and update them, perhaps with a little less urgency though. At least we will be set when they do decide to display the data. Gary On Wednesday, 7 October 2020 at 23:11:41 UTC+10 quantum.m...@googlemail.com wr

Re: [weewx-user] After update to version 4.1 - Imagegenerator UnicodeEncodeError: 'ascii' codec can't encode character

2020-10-08 Thread Dani Macías Perea
Worked like a charm. Thank you very much Sir! I will create a pull request with the changes so other people can find easily the solution. Regards, Daniel El jue., 8 oct. 2020 a las 14:25, Tom Keffer () escribió: > Looking (briefly) through the code, it looks like Nick did not port it to > Pyt

Re: [weewx-user] Parsing some NWS Area Forecast Matrices fails

2020-10-08 Thread Michael Bruski
I queried the NWS Baltimore/Washington D.D. forecast office about the differences between AFM and PFM and received this reply: Hello, Thanks for writing. The AFMs and PFMs are set to a national standard. So they should be the same across all the forecast offices. Our Directiv

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Vetti52
Just a cosmetic proposal: If there is no preview image, just omit the "cracked" image in the preview. BTW, in my view of weewx.com/stations.html neither right- nor middle-button click does anything. I use Win10/Firefox81.0.1. How is it intended to work properly? To open a link in a new tab, I

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread vince
On Thursday, October 8, 2020 at 6:58:15 AM UTC-7, Vetti52 wrote: > > Just a cosmetic proposal: If there is no preview image, just omit the > "cracked" image in the preview. > > BTW, in my view of weewx.com/stations.html neither right- nor > middle-button click does anything. I use Win10/Firefox8

Re: [weewx-user] Parsing some NWS Area Forecast Matrices fails

2020-10-08 Thread John Kline
This is all very helpful. Would you please send your NWS configuration for the problem AFM report as well as sample output from the URL you specified that the extension chokes on? Have you determined if the output is valid as specified by the AFM format doc? I’ll add proper support for AFM in t

[weewx-user] New installation on Ubuntu 18.04

2020-10-08 Thread Steve Sykes
I have installed weewx using setup.py. It seems to run, my weather station is a Davis Vantage Pro2 and the ip data logger. This is the dump when using weewx status -l. I believe the issue is that there is no index.html in either /home/weewx/public_html or /var/www/html additionally I don't kn

Re: [weewx-user] Parsing some NWS Area Forecast Matrices fails

2020-10-08 Thread Michael Bruski
I attached a text file containing one of the latest results from URL https://forecast.weather.gov/product.php?site=NWS&product=AFM&format=txt&issuedby=LWX. These are the options I have configured in my weewx.conf file: # Options for extension 'forecast' [Forecast] data_binding = forecast_bi

Re: [weewx-user] Parsing some NWS Area Forecast Matrices fails

2020-10-08 Thread Michael Bruski
I forgot to mention that the AFM format is correct and the extension will handle it (in this particular case for MDZ005 and for MDZ006) if I force the scanner/parser to ignore the 'Including' line. I'm pretty sure that 'cheat' will fail though on MDZ013 and MDZ014 in that same dataset. Perhap

[weewx-user] WeeWX and PM2.5 sensor

2020-10-08 Thread Uwe S.
Yesterday i've extended my Froggit HP1000SE station with a PM2.5 sensor. It works fine on the display itself and the data is uploaded properly to Ecowitt. However i cannot find the data to be displayed in WeeWX, but the data is in the DB. How do i extend the Web-Interface with the additional da

Re: [weewx-user] Parsing some NWS Area Forecast Matrices fails

2020-10-08 Thread John Kline
Of course, these lines being one of the ways the spec differs between the area and point forecasts. In the email you include from Chris Strong, he is saying AFM forecasts should not differ and across the country and PFM forecasts should not differ across the country. He is not saying AFM and P

Re: [weewx-user] New installation on Ubuntu 18.04

2020-10-08 Thread Tom Keffer
That's not enough of the log to do an analysis. See the wiki article Help! Posting to weewx-user on how to get a good log. On Thu, Oct 8, 2020 at 10:46 AM Steve Sykes wrote: > I have installed weewx using setup.py. It seems to run

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Greg from Oz
Thanks. CTRL-right click opens in a new tab and I am using chrome and Linux. That will do the job OK. At least the zoomed map is still there to go back to after checking out the selected web site. On Friday, 9 October 2020 at 01:42:02 UTC+11 vince wrote: > On Thursday, October 8, 2020 at 6:58:

Re: [weewx-user] Register your WeeWX station!

2020-10-08 Thread Vetti52
Right! But to open the hyperlink *in a new tab*, as Greg from Oz wishes to do, you need to press CTRL simultaneously when clicking on the hyperlink. BTW, did anyone look at the stations in China? I would assume, that Big Bear in Hongkong is the only real one. All others are giantly shifted west

Re: [weewx-user] Cumulated bars

2020-10-08 Thread Invisible Man
*It works ! Indeed it had not been refreshed !* Now next question : the year grouping is for the last 12 months. Is there a way to get only data for a given year ?, e.g 2020. So if I'm in October, that'll be only 10 months of cumulated data. On Thursday, October 8, 2020 at 12:13:06 AM UTC+2 tke

[weewx-user] WeeWx not parsing windDir properly from SDR RTL_433 driver

2020-10-08 Thread bdf0506
I can't get WeeWx to properly parse out WindDir from an Acurite 5n1 sensor packet using SDR. I believe this is something on the WeeWx side and not the SDR side. I see the value in there when I manually run both rtl_433 and the sdr.py program, but WeeWx refuses to parse it. It will even show in t

Re: [weewx-user] Cumulated bars

2020-10-08 Thread Tom Keffer
No. You'd have to either create a WeeWX extension that calculates year-to-date rain and puts it in the database as a separate type, or create an xtypes extension . On Thu, Oct 8, 2020 at 1:42 PM Invisible Man wrote: > *It works ! I

[weewx-user] Re: WeeWx not parsing windDir properly from SDR RTL_433 driver

2020-10-08 Thread gjr80
Hi, Your windSpeed is 0 and by default WeeWX sets windDir to None when windSpeed is 0. What happens when windSpeed > 0? If you want to change this default behaviour look at the ignore_zero_windspeed config option under [StdWXCalcute] Gary

[weewx-user] Re: WeeWx not parsing windDir properly from SDR RTL_433 driver

2020-10-08 Thread gjr80
Hi, Your windSpeed is 0 and by default WeeWX sets windDir to None when windSpeed is 0. What happens when windSpeed > 0? If you want to change this default behaviour look at the ignore_zero_wind config option under [StdWXCalcute] Gary On Fr

Re: [weewx-user] New installation on Ubuntu 18.04

2020-10-08 Thread Steve Sykes
Tom, Here is the log file. -- 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 htt

[weewx-user] Re: WeeWx not parsing windDir properly from SDR RTL_433 driver

2020-10-08 Thread gjr80
Of course I meant [StdWXCalculate] not [StdWXCalcute]. Gary On Friday, 9 October 2020 at 07:18:19 UTC+10 gjr80 wrote: > Hi, > > Your windSpeed is 0 and by default WeeWX sets windDir to None when > windSpeed is 0. What happens when windSpeed > 0? If you want to change this > default behaviour l

[weewx-user] Re: WeeWx not parsing windDir properly from SDR RTL_433 driver

2020-10-08 Thread bdf0506
Ah I was overthinking it. This makes sense, and now that you said this, I looked in my archive records and I do in fact see some having a Wind Direction for when it is >0 wind speed. So overall I was beating my head against the wall for something that is a works as designed. Thanks Gary! On

Re: [weewx-user] New installation on Ubuntu 18.04

2020-10-08 Thread Steve Sykes
I tried to upload the log file but for some reason it wouldn't upload. I believe the problem with the webpage was that python-cheetah didn't install. During the original install apt install phonython3-cheetah didn't work so I used the other method shown on the installation page. Apparently t

Re: [weewx-user] New installation on Ubuntu 18.04

2020-10-08 Thread Tom Keffer
Glad to hear it ended well. On Thu, Oct 8, 2020 at 5:05 PM Steve Sykes wrote: > I tried to upload the log file but for some reason it wouldn't upload. > > I believe the problem with the webpage was that python-cheetah didn't > install. During the original install apt install phonython3-cheetah

[weewx-user] Re: My "rain" field adds up

2020-10-08 Thread Susan Mackay
> > Where in HP1000.py it is. > > Lines 714 to 734 in the latest version. Susan -- 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...@googlegrou

[weewx-user] Editing db schema, extraTemp1 exception

2020-10-08 Thread Duane Kerzic
Hi, Thanks for all the help you provided last time around. Thanks in advance this time for your help. I wanted to clean up weewx.archive table and make it a bit smaller. So I deleted the columns I don't think I'll ever use. But now I'm getting this in the system log. I'm guessing that extraT

Re: [weewx-user] Editing db schema, extraTemp1 exception

2020-10-08 Thread Graham Eddy
i guess ‘huge’ is relative. i have 96MB from 15½ years data → i am totally unconcerned about weewx.sdb size, even if RAM-based > On 9 Oct 2020, at 12:39 pm, Duane Kerzic wrote: > > I've shortened the average row length of the archive table to 126 from 217 > bytes. Huge difference when you have

Re: [weewx-user] Editing db schema, extraTemp1 exception

2020-10-08 Thread Duane Kerzic
I have over 5. 5 million rows On Thursday, October 8, 2020 at 9:55:35 PM UTC-4 graha...@gmail.com wrote: > i guess ‘huge’ is relative. i have 96MB from 15½ years data → i am totally > unconcerned about weewx.sdb size, even if RAM-based > > On 9 Oct 2020, at 12:39 pm, Duane Kerzic wrote: > > I'v

[weewx-user] Re: Editing db schema, extraTemp1 exception

2020-10-08 Thread d k
I tried to post this as an image but it doesn't show. So here is the text. Oct 8 20:03:19 prometis weewx[271870] ERROR weewx.reportengine: Caught unrecoverable exception in generator 'weewx.imagegenerator.ImageGenerator' Oct 8 20:03:19 prometis weewx[271870] ERROR weewx.reportengine:

Re: [weewx-user] WeeWX and PM2.5 sensor

2020-10-08 Thread Tim Tuck
Hi, Assuming your PM2.5 data is ending up in the database field *pm2_5* then you can plot that in your Belchertown skin by adding to /etc/weewx/skins/Belchertown/graphs.conf this stanza...     [[chart5]]     title = PM 2.5   [[[pm2_5]]] name = PM 2.5

Re: [weewx-user] Program to modify weewx.sdb

2020-10-08 Thread Tim Tuck
Hi Sébastien, If you want a GUI to modify the db then you should take a look at ... https://sqlitebrowser.org Its cross platform and you can use it to look at and modify both sqlite and mysql db's . cheers Tim On 8/10/20 7:57 pm, Sébastien F4GQK wrote: Hello, with which program can I m

[weewx-user] Re: Editing db schema, extraTemp1 exception

2020-10-08 Thread gjr80
Hi, First up, thank you for not posting images of text, it’s makes reading/searching logs a real pain. The error is due to a skin trying to generate a plot that involves extraTemp1 and from the short log extract I would guess that this is from the Seasons skin. If you look in the Seasons skin

Re: [weewx-user] Program to modify weewx.sdb

2020-10-08 Thread gjr80
I strongly suggest you refer to the wiki article Cleaning up old ‘bad’ data before attempting to make any changes to the database. Two tips, make a backup before you do anything and if in doubt ask; it is all to easy to delete or

[weewx-user] Re: Editing db schema, extraTemp1 exception

2020-10-08 Thread d k
Yup.. I just found that and was about to report back I was trying it that was it. Just restarted the test system to see if it went away. I think I got rid of all of them now. Gary you are the best. Thanks so much. On Thursday, October 8, 2020 at 10:54:27 PM UTC-4 gjr80 wrote: > Hi, > > First

[weewx-user] Re: My "rain" field adds up

2020-10-08 Thread Sébastien F4GQK
Thanks the daily rainfall values are subtracted from the file: /usr/share/weewx/weewx/wxformulas.py there are two variables: oldtotal and newtotal. oldtotal is old value and newtotal is new the result of this calculation is the variable "delta" but what is the file that uses this value "delta

Re: [weewx-user] WeeWX and PM2.5 sensor

2020-10-08 Thread Uwe S.
uff, graphs.conf that's the file i did not look at. Thanks for the hint, i will check there Uwe ti...@skybase.net schrieb am Freitag, 9. Oktober 2020 um 04:50:40 UTC+2: > Hi, > > Assuming your PM2.5 data is ending up in the database field *pm2_5* then > you can plot that in your Belchertown sk

Re: [weewx-user] Program to modify weewx.sdb

2020-10-08 Thread Sébastien F4GQK
thanks since yesterday I use https://sqlitebrowser.org this is what I was looking for Le vendredi 9 octobre 2020 à 05:01:31 UTC+2, gjr80 a écrit : > I strongly suggest you refer to the wiki article Cleaning up old ‘bad’ > data