--
You received this message because you are subscribed to the Google Groups "Weewx user's group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to a topic in the Google Groups "Weewx user's group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe?hl=en-US.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
Do you mean the tgz file or the page?
Tgz works on my side.
I am currently switching from wview to weewx,
You may find now the page here:
http://meteosaintsulpice.free.fr/
Or here for original test page :
http://meteosaintsulpice.free.fr/back/testtest/index.php
Not all sub-pages are available yet (week, month, year page are missing)
--
You received this message because you are subscribed to a topic in the Google Groups "Weewx user's group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
Oh damned, wrong link again, please check here:
http://meteosaintsulpice.free.fr/now.php
./bin/wee_reports weewx.conf 1398927600
--
You received this message because you are subscribed to the Google Groups "Weewx user's group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "Weewx user's group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
@luc:That's the way I found when I wanted to do this and it was a pretty interesting to play with php dom and read xml files.Regarding the cron WU data, I dont use it for forecast but to get current conditions (not future), you probably have seen that I use it for both selecting the icon on left of title and some text on the right of title bar.No problem with the namechange , it's just the name of the town where I live (I had no better idea at that time) That is not a great idea, at least because when you type 'cd S' and then tab to complete automaticly the name, it does not work because of 'Standard' also exists ;-)About ephem, it there an other weewx ephem module ? I thought it was using also pyephem, (I get it from standard skin with ephemeride data).
You are right for the language, I will try to find a better solution.
Best regards,
The tool wee_reports can take an optional second argument with a "Current" time in unix epoch time../bin/wee_reports weewx.conf 1398927600If not given, then the time of the last archive record in the archive database is used.Don't know if this helps.-tk
Hello all! and thanks for feedbacks !
@wain: good points, I am working on something more robust with raw value to avoid N/A.
@Luc:stats page is still isnt finished but you're right, it's a little bit "heavy".
-It's may be a matter of taste also, I like to put there as much data as possible, maybe some are not interesting, but it can help to find some mis-functionning. I will think about it and probably update :-)
-Regarding the dials, I corrected a little bug a few days ago. I will make the update available.
You may have notice the little blue/red ticks on the temp dials to show min/max value. something was not correctly done in the setup with "animatedsetvalue" of the dials, and some min/max was not correctly initialise.
You may notice if you click a few time on "in/out" button that it initial value was wrong.
You idea is nice! could be cool to have quick update of the dials :-)
-Gust: I will do some test. I am also not fully satisfied with this graph.
-Rain: did you notice my new "week, month/year rain graphs" ? I had something like same idea. (you can see here: http://meteosaintsulpice.free.fr/week.php)
- Raspberry: maybe I should update the about page :-)) I used the raspberry for 2 years (mainly with wview), but I had some wrond rain value.
the most probable root cause I identified (on the net) was that the USB port of the raspberry may not be powerfull enough to supply my WMRS200 (fully powered on USB).
as I was annoyed by these bad rain measurement (some 30mm spike every few days), I switched to a siemens fujitsu futro S450. it is a thinclient I get for a good price on ebay and converted it in a small server.
It works pretty good.
My raspberry is 'sleeping' yet,but I will find something to do for it :-)
Regarding the skin, I has less time to work on it now, but I will post some updates time to time.
Best regards,
Frederic
var windDirection = function (canvas, parameters) {
parameters = parameters || {};
var size = (undefined === parameters.size ? 0 : parameters.size),
frameDesign = (undefined === parameters.frameDesign ? steelseries.FrameDesign.METAL : parameters.frameDesign),
frameVisible = (undefined === parameters.frameVisible ? true : parameters.frameVisible),
backgroundColor = (undefined === parameters.backgroundColor ? steelseries.BackgroundColor.DARK_GRAY : parameters.backgroundColor),
backgroundVisible = (undefined === parameters.backgroundVisible ? true : parameters.backgroundVisible),
pointerTypeLatest = (undefined === parameters.pointerTypeLatest ? steelseries.PointerType.TYPE1 : parameters.pointerTypeLatest),
pointerTypeAverage = (undefined === parameters.pointerTypeAverage ? steelseries.PointerType.TYPE8 : parameters.pointerTypeAverage),
pointerColor = (undefined === parameters.pointerColor ? steelseries.ColorDef.RED : parameters.pointerColor),
pointerColorAverage = (undefined === parameters.pointerColorAverage ? steelseries.ColorDef.BLUE : parameters.pointerColorAverage),
knobType = (undefined === parameters.knobType ? steelseries.KnobType.STANDARD_KNOB : parameters.knobType),
knobStyle = (undefined === parameters.knobStyle ? steelseries.KnobStyle.SILVER : parameters.knobStyle),
foregroundType = (undefined === parameters.foregroundType ? steelseries.ForegroundType.TYPE1 : parameters.foregroundType),
foregroundVisible = (undefined === parameters.foregroundVisible ? true : parameters.foregroundVisible),
pointSymbols = (undefined === parameters.pointSymbols ? ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW'] : parameters.pointSymbols),
pointSymbolsVisible = (undefined === parameters.pointSymbolsVisible ? true : parameters.pointSymbolsVisible),
customLayer = (undefined === parameters.customLayer ? null : parameters.customLayer),
degreeScale = (undefined === parameters.degreeScale ? true : parameters.degreeScale),
degreeScaleHalf = (undefined === parameters.degreeScaleHalf ? false : parameters.degreeScaleHalf),
roseVisible = (undefined === parameters.roseVisible ? false : parameters.roseVisible),
lcdColor = (undefined === parameters.lcdColor ? steelseries.LcdColor.STANDARD : parameters.lcdColor),
lcdVisible = (undefined === parameters.lcdVisible ? true : parameters.lcdVisible),
digitalFont = (undefined === parameters.digitalFont ? false : parameters.digitalFont),
section = (undefined === parameters.section ? null : parameters.section),
area = (undefined === parameters.area ? null : parameters.area),
lcdTitleStrings = (undefined === parameters.lcdTitleStrings ? ['Latest', 'Average'] : parameters.lcdTitleStrings),
titleString = (undefined === parameters.titleString ? '' : parameters.titleString),
useColorLabels = (undefined === parameters.useColorLabels ? false : parameters.useColorLabels),
fullScaleDeflectionTime = (undefined === parameters.fullScaleDeflectionTime ? 2.5 : parameters.fullScaleDeflectionTime);By the way, you may change the range of barometer gauge if variation are small at you place.
it looks like 1000 to 1030 would be large enough for you?
I keep an eye on your site ;-)
--
You received this message because you are subscribed to a topic in the Google Groups "Weewx user's group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
But it will be probably far later (september maybe...)I plan to use this xml file to update my gauge realtime (yes an other solution ;-)).back to CRT: it played with the crt.py file made by mwall and manage to make a xml realtime output file.I'm adding some new rooms to my home.Do you know 'placoplatre' ? ( maybe "Gipsplaat" ?) this is my current activity ;-)Hello Luc !Well, my activities on weewx are a little bit "on hold" now...
--
You received this message because you are subscribed to a topic in the Google Groups "weewx-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
Thank you!
To unsubscribe from this group and all its topics, send an email to weewx-user+...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.
I guess, in order to properly display gauges done in Java, a browser has to be able to run Java. I have installed java packages as per instruction but, when doing Java test, it seems that is not working. I am using Chromium browser that comes with Debian install.
Any suggestions on what to check and what to do next. Bootstrap page as well as original html pages from weewx are been generated and working well so database is been read and files been generated.
Thank you,
Alex
Just an update (might be the only one that did not figure that out right away); the issue was with script and css file UNIX ownership. The default owner was "root" while the user that is loading the pages in the local browser was "pi". Changing the fine ownership from "root" to "pi" for all files within the css and script directory fixed the problem. Now, I do have Steel like gauges.
I am not sure if the right fix is to change the ownership since, when files are ftp-ed to the right domain, the right ownership would be setup.
--
You received this message because you are subscribed to a topic in the Google Groups "weewx-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/weewx-user/96yDtEBRW90/unsubscribe.
To unsubscribe from this group and all its topics, send an email to weewx-user+unsubscribe@googlegroups.com.