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

2018-08-31 Thread Thomas Keffer
It all depends on what you want. In what follows, I am assuming that option loop_hilo is set to true (the normal state of affairs). Much of this information is also in the section *Wind *.

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

2018-08-31 Thread Thomas Keffer
Most likely this is because the "alltime" search list extension does not use the daily summaries. It was written before the introduction of database bindings, so it dumbly uses the archive table. A more modern version takes advantage of bindings, which automatically direct the query to the daily

[weewx-user] Winddirplot with weewx-Highcharts

2018-08-31 Thread gjr80
Hi, Short answer is I don't know. As I understand it all points on the wind directions plots are 90 degree but the underlying json files that contain the wind direction data have normal (as expected) wind direction data that is not always 90 degrees. Is this correct? If you want to continue to

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

2018-08-31 Thread Pat
You're right, this is confusing. I do have one tmpl with day/week/month/year.wind. Are you suggesting that I change the week/month to the proper windGust, windSpeed, etc? or change all 4 types since day/year can be used in aggregation? On Friday, August 31, 2018 at 12:43:26 PM UTC-4, Thomas

[weewx-user] Re: after raspbian and weewx updates, weewx is still collecting data but stopped publishing to CWOP and Wunderground

2018-08-31 Thread gjr80
Yes Tom I suspect the issue will be due to the new hardware/software, would be good to know there was nothing else nefarious going on. Matthew has been otherwise pretty busy of late so he is not here as often, chances are he will eventually see this and comment. Gary -- You received this

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

2018-08-31 Thread David Hathaway
The confusing thing is that this is the part that throws an exception: Strongest Wind Gust $year.wind.max $year.wind.maxtime.format("%B %-d, %Y at %-I:%M %p") $alltime.wind.maxtime.format("%B %-d, %Y at %-I:%M %p") $alltime.wind.max Should this work? The exception is

Re: [weewx-user] weewx 3.8.2, Raspberry Pi3B+, Vantage driver seems to be bouncing

2018-08-31 Thread Thomas Keffer
What version did you update from? There have been no significant changes to the Vantage runtime in years --- just configuration changes. You are using the port /dev/vantage. Make sure it points to the port you think it points to. As an experiment, try using the real port name (usually

Re: [weewx-user] Dewpoint does not get reported to Wunderground under rapid fire

2018-08-31 Thread mattr100
HI Thanks for the suggestions. I have run it via the command line and I do not see anywhere in the loop packer where it is reading the dew point from the weather station. LOOP: 2018-08-31 20:16:24 EDT (1535760984) dateTime: 1535760984, maxSolarRad: None, rain: None, rainRate: 0.0,

Re: [weewx-user] Dewpoint does not get reported to Wunderground under rapid fire

2018-08-31 Thread gjr80
Would help to see more than 10 seconds of loop data, a good 2 or 3 archive intervals of data (ie seeing at least 3 REC: lines) would be better. Gary -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop

Re: [weewx-user] Dewpoint does not get reported to Wunderground under rapid fire

2018-08-31 Thread Thomas Keffer
I did not write the WMR9x8 driver, but looking through the code, whether or not it can report dewpoint depends on the type of sensor you have. In any case, another option would be to ask WeeWX to calculate dewpoint for you. To do this, set option dewpoint in StdWXCalculate to 'software':

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

2018-08-31 Thread gjr80
The (another) thing to remember about using 'wind' is that if the time span over which you are asking for an aggregate does not meet a number of constraints (must be on midnight boundary or first or last timestamp in db) the the query is directed to the archive (where 'wind' does not exist)

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

2018-08-31 Thread Thomas Keffer
Off the top of my head, an $alltime query shouldn't be a problem and should be directed to the daily summaries: it always uses the first and last timestamp in the database. Good theory about the database getting updated while the reporting thread is running. -tk On Fri, Aug 31, 2018 at 2:57 PM

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

2018-08-31 Thread Andrew Milner
Gary gave a description of the wind tag in this thread: https://groups.google.com/forum/?fromgroups=#!topic/weewx-user/siTLWVi_fLM On Friday, 31 August 2018 16:13:59 UTC+3, Pat wrote: > > As far as I know, my skin isn’t specifying a query for wind. A search on > the repo in GitHub shows that

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

2018-08-31 Thread Juan Antonio Mosquera
Intall 0.6 version now... and same problem. My installation is wit APT Aug 31 08:25:17 meteomontaos weewx[14817]: reportengine: Found configuration file /etc/weewx/skins/Belchertown/skin.conf for report Belchertown Aug 31 08:25:18 meteomontaos weewx[14817]: cheetahgenerator: using search

[weewx-user] Re: weewx_wd

2018-08-31 Thread Kalli
Hallo das bekomme ich { "response": { "version":"0.1", "termsofService":"http://www.wunderground.com/weather/api/d/terms.html;, "features": { "conditions": 1 } , "error": { "type": "Station:OFFLINE" } } } Am Donnerstag, 22. Februar 2018 22:07:13 UTC+1

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

2018-08-31 Thread David Hathaway
I'd like to solve my "wind" issue, since I have to modify the template on each revision. What table is lacking "wind"? Aug 31 07:40:53 hathaway weewx[32401]: cheetahgenerator: Ignoring template /etc/weewx/skins/Belchertown/records/index.html.tmpl Aug 31 07:40:53 hathaway weewx[32401]:

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

2018-08-31 Thread David Hathaway
Well, this is interesting. Here is a statement that fails: SELECT dateTime FROM archive WHERE dateTime > 1389475998 AND dateTime <= 1535720400 AND wind = (SELECT MAX(wind) FROM archive WHERE dateTime > 1389475998 and dateTime <= 1535720400) AND wind IS NOT NULL My schema has windSpeed, windDir,

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

2018-08-31 Thread Pat O'Brien
As far as I know, my skin isn’t specifying a query for wind. A search on the repo in GitHub shows that the columns I query are “windSpeed, windGust”, etc. Anything for “wind” is done through a built in weewx call for $day.wind, $week.wind, etc. Where do you see this query?

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

2018-08-31 Thread Pat O'Brien
Interesting... Check this link as it is the official document. http://www.weewx.com/docs/customizing.htm Then search for "day.wind". You'll see the differences. On Fri, Aug 31, 2018, 11:57 AM David Hathaway wrote: > Reckoned it was easy enough to try, so I changed the records code to > > >

[weewx-user] Re: after raspbian and weewx updates, weewx is still collecting data but stopped publishing to CWOP and Wunderground

2018-08-31 Thread Boston Tom
Thank you Gary! Success! The workaround of increasing the stale record time to 120 seconds is working. I have had contact with the developer of the interceptor driver in the past, so I will post this issue to his GitHub page at https://github.com/matthewwall/weewx-interceptor However, since

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

2018-08-31 Thread Praveen Chandrasekaran
Awesome.I was just installing highcharts extension and running into some issues with wind direction. This beats highcharts totally. Will try this out this weekend. One feedback - the NOAA charts are not so nice to view on mobile. It doesnt fit in a screen unlike three seasons skin where the

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

2018-08-31 Thread David Hathaway
Andrew, Thanks for the pointer. I'll have to read this several times to let what it says sink in. Dave On Friday, August 31, 2018 at 9:10:30 AM UTC-5, Andrew Milner wrote: > > Gary gave a description of the wind tag in this thread: > >

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

2018-08-31 Thread David Hathaway
This was the query right before the exception: Aug 31 08:06:51 hathaway weewx[22213]: manager: getSQL: SELECT dateTime FROM archive WHERE dateTime > 1389475998 AND dateTime <= 1535720760 AND wind = (SELECT MAX(wind) FROM archive WHERE dateTime > 1389475998 and dateTime <= 1535720760) AND wind

[weewx-user] Winddirplot with weewx-Highcharts

2018-08-31 Thread Praveen Chandrasekaran
Hi, I installed the HighCharts extension for weewx. Everything is fine except that on plot wind direction shows 90 degrees for all days. In json file I see the wind direction is fine. What could be the issue? Regards, Praveen -- You received this message because you are subscribed to the

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

2018-08-31 Thread David Hathaway
Reckoned it was easy enough to try, so I changed the records code to Strongest Wind Gust $year.windGust.max $year.windGust.maxtime.format("%B %-d, %Y at %-I:%M %p") $alltime.windGust.maxtime.format("%B %-d, %Y at %-I:%M %p") $alltime.windGust.max

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

2018-08-31 Thread Pat O'Brien
I'm on mobile, so I read this again. Maybe the difference is year.wind as opposed to day? On Fri, Aug 31, 2018, 12:12 PM Pat O'Brien wrote: > Interesting... Check this link as it is the official document. > > http://www.weewx.com/docs/customizing.htm > > Then search for "day.wind". You'll see

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

2018-08-31 Thread Thomas Keffer
The tag "wind" can only be used in aggregations, such as day and year. The tags windSpeed, windDir, windGust, and windGustDir can be used for current observations, as well as aggregations. This is all explained in the Customizing Guide, section *Wind

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

2018-08-31 Thread Pat O'Brien
NOAA tables are in a PRE container which is used for formatting as well as JavaScript to dynamically change report without needing to reload the page. From: weewx-user@googlegroups.com [mailto:weewx-user@googlegroups.com] On Behalf Of Praveen Chandrasekaran Sent: Friday, August 31, 2018