Sandaysoft

Support forum for Cumulus weather station software
It is currently Sun May 26, 2013 8:40 am
Please click here before posting. Help me to help you!
Useful Links: Cumulus FAQ • Enhancement requests • Wiki (documentation)
Please put your approximate location into your profile
Add your web site to the Cumulus user map
Vantage Pro2 users with firmware 3.00 should upgrade to fw 3.12 and Cumulus 1.9.4

All times are UTC




Post new topic Reply to topic  [ 68 posts ]  Go to page Previous  1, 2, 3, 4, 5  Next
Author Message
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Feb 27, 2011 10:45 am 
Offline

Joined: Mon Jan 25, 2010 1:55 pm
Posts: 623
Location: Brighton, UK
Weather Station: Watson W-8681
Operating System: Vista
Ooops, Sorry Dan, there was an error in that code I quoted. I've upated my post.

_________________
Paul

http://www.greatcollegestreet.co.uk -Online
http://www.lehamel.eu - Online

Image Image


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Feb 27, 2011 3:06 pm 
Offline
User avatar

Joined: Tue Dec 09, 2008 1:37 pm
Posts: 1858
Location: Dudley, West Midlands, UK
Weather Station: None !
Operating System: XP SP3
In a similar fashion, all your other JS created Hi / Lo, weather / wind icon decision coding needs to moved / modded into the ajax 'loop' :shock:

Welcome to the world of bespoke coding - to paraphrase Oscar Wilde "The pure and simple page is rarely pure and never simple" !

But you do feel so good when a little graphic changes or some text suddenly appears :clap:

_________________
Image
......................Imagine, what you will KNOW tomorrow !


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Feb 27, 2011 7:55 pm 
Offline
User avatar

Joined: Wed Mar 03, 2010 10:20 am
Posts: 299
Location: Brisbane, Australia
Weather Station: Vantage Pro2 w/ daytime FARS
Operating System: Windows Vista SP2
Thanks Paul / Daj,
I can see some more lost hours in front of the screen coming up for me. :lol:

_________________
Dan

http://www.brisbaneliveweather.com




A man with a thermometer always knows the temperature. A man with two thermometers, not so sure.


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Thu Mar 03, 2011 12:41 pm 
Offline
User avatar

Joined: Wed Mar 03, 2010 10:20 am
Posts: 299
Location: Brisbane, Australia
Weather Station: Vantage Pro2 w/ daytime FARS
Operating System: Windows Vista SP2
Thanks again Paul & Daj.

:clap: The script works well and easy enough to get up and running. Paul, thanks for the tip about the trend arrows. I was able to use that info to get all my other bits to update as well. Its a bit clunky in Chrome (okay in IE and FF) when fetching the wind direction graphic etc, but I can live with that. :clap:

_________________
Dan

http://www.brisbaneliveweather.com




A man with a thermometer always knows the temperature. A man with two thermometers, not so sure.


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 9:16 am 
Offline
User avatar

Joined: Wed Mar 03, 2010 10:20 am
Posts: 299
Location: Brisbane, Australia
Weather Station: Vantage Pro2 w/ daytime FARS
Operating System: Windows Vista SP2
Hi Guys,

I need some help with some conversions & calculations and the <span> tags.
Previously, I was running some js to convert and display wind speed km/h to knots (for fishing buddies) easily enough. The old script was:

<script type="text/javascript">
var speed = "<#wlatest>";
var speedknots = Math.abs(speed*0.54*10)/10;
document.write(speedknots.toFixed(1));
</script>&nbsp;kts

I have been able to get the do a similar thing using the realtimereader.js by using:

var spknots = rawdata[6];
$("#speedknots").html(Math.abs(spknots*0.54*10)/10);

and the span tag is <span id="speedknots"></span>

However, this will give 1.6 km/h as 0.8640000000000001 knots.

How am I able to display with 1 decimal point, ie, as 0.8 knots. Am I close or way off the mark here?

I have tried several variants but it usually breaks the javascript.

Thanks in advance.

_________________
Dan

http://www.brisbaneliveweather.com




A man with a thermometer always knows the temperature. A man with two thermometers, not so sure.


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 10:49 am 
Offline

Joined: Mon Jan 25, 2010 1:55 pm
Posts: 623
Location: Brighton, UK
Weather Station: Watson W-8681
Operating System: Vista
captzero wrote:
Hi Guys,

I need some help with some conversions & calculations and the <span> tags.
Previously, I was running some js to convert and display wind speed km/h to knots (for fishing buddies) easily enough. The old script was:

<script type="text/javascript">
var speed = "<#wlatest>";
var speedknots = Math.abs(speed*0.54*10)/10;
document.write(speedknots.toFixed(1));
</script>&nbsp;kts

I have been able to get the do a similar thing using the realtimereader.js by using:

var spknots = rawdata[6];
$("#speedknots").html(Math.abs(spknots*0.54*10)/10);

and the span tag is <span id="speedknots"></span>

However, this will give 1.6 km/h as 0.8640000000000001 knots.

How am I able to display with 1 decimal point, ie, as 0.8 knots. Am I close or way off the mark here?

I have tried several variants but it usually breaks the javascript.

Thanks in advance.


Dan,

Based on the script you quoted above that worked, try this in the realtimereader.js

Code:
var spknots = rawdata[6];
var speedknots = Math.abs(spknots*0.54*10)/10;
var speedknots = speedknots.toFixed(1);
$("#speedknots").html(speedknots);


Untested, but logically should work based on your original.
The <span id="speedknots"></span> stays the same in your HTML.

_________________
Paul

http://www.greatcollegestreet.co.uk -Online
http://www.lehamel.eu - Online

Image Image


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 11:00 am 
Offline
User avatar

Joined: Wed Mar 03, 2010 10:20 am
Posts: 299
Location: Brisbane, Australia
Weather Station: Vantage Pro2 w/ daytime FARS
Operating System: Windows Vista SP2
Synewave wrote:
Untested, but logically should work


Works like a dream. Thanks Paul.

I knew I had to add .toFixed(1) somewhere.

And, thanks for the quick reply too.

_________________
Dan

http://www.brisbaneliveweather.com




A man with a thermometer always knows the temperature. A man with two thermometers, not so sure.


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 1:03 pm 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2523
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Why Math.abs() are you expecting it to go negative?

Math.round(spknots*0.54*10)/10

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 1:37 pm 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2523
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
Second thoughts, as you are using .toFixed() - required for those pesky n.0 values - then all you need is:


var speedknots = rawdata[6]*0.54;
speedknots = speedknots.toFixed(1);
$("#speedknots").html(speedknots);

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sun Mar 06, 2011 2:05 pm 
Offline
User avatar

Joined: Tue Dec 09, 2008 1:37 pm
Posts: 1858
Location: Dudley, West Midlands, UK
Weather Station: None !
Operating System: XP SP3
Or as a one-liner

$("#speedknots").html((rawdata[6]*054).toFixed(1));

:lol: but not so easy on the mind or the eye :shock:

_________________
Image
......................Imagine, what you will KNOW tomorrow !


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Fri Mar 18, 2011 6:51 pm 
Offline
User avatar

Joined: Tue Sep 07, 2010 12:39 pm
Posts: 38
Location: Hawkenbury, Tunbridge Wells, Kent
Weather Station: WH1081
Operating System: Windows 7 64bit
Synewave wrote:
It seems many want their index page to automatically refresh without having to press F5. Any many don't want to get into the realms of changing their site to use the PHP methods available in the forum.

Here is a simple way to achieve this using Javascript that will refresh the weather data on your index page automatically every 15 seconds. It works by reading the data from your realtime.txt file (providing you already have Cumulus set to upload that).


Paul,
Thanks - I had been after an auto update process.

_________________
Andy

Image


Last edited by daj on Fri Mar 18, 2011 7:37 pm, edited 1 time in total.
fixed 'quoting' issue


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Tue Mar 22, 2011 5:36 pm 
Offline

Joined: Tue Jan 18, 2011 9:36 pm
Posts: 40
Location: Canada
Weather Station: Davis Vantage Vue
Operating System: Window 7.0
Hello everybody,

Hope someone can help me.

Installed Paul's autorefresh and did some modification but then sometime after the update I am getting garbage as shown on the attached picture. Then a manual refresh or if you wait for the next refresh, it will display OK.

Any idea what could be the problem?

if you want to see the page here is the link

http://pages.videotron.com/meteo/yvan

thanks for your help

Yvan


You do not have the required permissions to view the files attached to this post.


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Tue Mar 22, 2011 5:39 pm 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2523
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
It looks like the fetch of the data actually got a Error 404 page rather than the data. I put some code in my autorefresh to check the contents of the returned data before trying to use in.

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sat Sep 03, 2011 12:55 am 
Offline

Joined: Thu Jun 26, 2008 5:51 am
Posts: 97
Location: Slov.Konjice, Slovenia
Weather Station: Davis VP2 + Solar
Operating System: Win2k SP4@VIA EPIA800
Good script :clap:

What about some flashcolor for changed data? :oops:

_________________
Image


Top
 Profile  
 
 Post subject: Re: Auto-refresh Website Index Page Without Using Meta Refre
PostPosted: Sat Sep 03, 2011 7:46 am 
Offline
User avatar

Joined: Thu Jan 07, 2010 9:44 pm
Posts: 2523
Location: Wilmslow, Cheshire, UK
Weather Station: Davis VP2
Operating System: XP SP3, Win 7
TgT wrote:
Good script :clap:

What about some flashcolor for changed data? :oops:

I have done that on my 'now' page. You need to store all the values, then on the next refresh compare new with old. If different set a 'newValue' style to change the colour. Then at the end of the update routine overwrite the 'old' values with the new and set a 'setTimout()' to call another function after say 10 seconds the clears the new value styles.

--sent from my phone

_________________
Mark
Wilmslow Astro Weather


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 68 posts ]  Go to page Previous  1, 2, 3, 4, 5  Next

All times are UTC


Who is online

Users browsing this forum: Google [Bot] and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  

Protected by Anti-Spam ACP Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group