Sandaysoft

Support forum for Cumulus weather station software
It is currently Mon May 20, 2013 6:58 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  [ 57 posts ]  Go to page Previous  1, 2, 3, 4  Next
Author Message
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 10:34 am 
Offline
User avatar

Joined: Mon Jul 19, 2010 11:15 am
Posts: 206
Location: Auckland NZ
Weather Station: WH1091
Operating System: Win7
Thanks Steve and Gina for the data.
I've divided the values quoted by 3 to get hourly change rates, which I presume is how it's being sent in realtime.txt, and assume is the same as that showing on the main Cumulus page - tell me if I'm wrong :)

Then the bit of code I've added to banner.php is looking like this (strings abbreviated for want of room):

// Pressure trend string generation
$barotrend = "steady";
if (ret_value("presstrend") > 0.1 ) {
$barotrend = "slow rise";}
if (ret_value("presstrend") > 0.5 ) {
$barotrend = "rising";}
if (ret_value("presstrend") > 1.2 ) {
$barotrend = "rapid rise";}
if (ret_value("presstrend") > 2 ) {
$barotrend = "v.rapid rise";}

if (ret_value("presstrend") < -.1 ) {
$barotrend = "slow fall";}
if (ret_value("presstrend") < -0.5 ) {
$barotrend = "falling";}
if (ret_value("presstrend") < -1.2 ) {
$barotrend = "rapid fall";}
if (ret_value("presstrend") < -2 ) {
$barotrend = "v.rapid fall";}

($barotrend gets called a bit further down in the code to display)

It's working OK, but I've only experienced 3 different states here so far.
Now wondering if there should be an 'extreme' string for the changes you guys have just experienced, say for 3 or 4mb/hr and over :shock:
cheers!

_________________
Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 10:54 am 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17558
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
Ned wrote:
I've divided the values quoted by 3 to get hourly change rates, which I presume is how it's being sent in realtime.txt, and assume is the same as that showing on the main Cumulus page


That's right. Cumulus basically takes the change over the preceding three hours and divides that by 3 to give a 'per hour' figure. In Cumulus I use the original 'three hour' figure to compare against the figures I've quoted. You're just doing it the other way round, with the same result.

Quote:
Now wondering if there should be an 'extreme' string for the changes you guys have just experienced, say for 3 or 4mb/hr and over :shock:
cheers!

Perhaps in places where rapid pressure changes occur more often, e.g. in Tropical Storm and Hurricane areas, they have alternative descriptions with greater scope.

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 2:29 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
Pressure has started to rise after bottoming out at 967.0Hpa. Now heading over to post my new all-time low pressure in this thread.

Looks like my high wind gust record is safer for a little longer.

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 3:25 pm 
Offline

Joined: Fri May 08, 2009 3:12 pm
Posts: 344
Location: Pembrokeshire West Wales UK
Weather Station: Watson Weather Station W-8681
Operating System: Windows 7
I'm down to 964.1 and STILL falling!

_________________
Geoff
Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 3:26 pm 
Offline

Joined: Wed Dec 31, 2008 1:56 pm
Posts: 227
Location: Poole, Dorset UK
Weather Station: Maplin WH1081PC
Operating System: Windows 7 Home Premium 64 BIT
Pressure is still falling slowly Now at -0.3 hPa/hr
heading over to post my new all time low pressure in this thread.

_________________
Regards
Michael.

CWOP: DW2423
My Weather website http://branksomeweather.co.uk

Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 4:16 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
Looks like a false dawn earlier. Pressure fell to 966.85Hpa at 16:24. Cumulus uses 2 decimal places for pressure but Davis only outputs it to one. :?

_________________
Cheers,
Ray, Cheshire.

Image


Last edited by RayProudfoot on Mon Nov 08, 2010 5:47 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 4:23 pm 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17558
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
RayProudfoot wrote:
Cumulus uses 2 decimal places for pressure but Davis only outputs it to one. :?

Davis say the station measures pressure (in inHg) to a resolution of 3 decimal places, so I convert that to 2 decimal places for hPa.

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 5:50 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
steve wrote:
RayProudfoot wrote:
Cumulus uses 2 decimal places for pressure but Davis only outputs it to one. :?

Davis say the station measures pressure (in inHg) to a resolution of 3 decimal places, so I convert that to 2 decimal places for hPa.


Strange that they only display it on the console to one place then. I suppose resolution is not the same as accuracy so one decimal place in Cumulus would probably suffice but I'm not complaining, only observing. ;)

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 6:00 pm 
Offline
Site Admin
User avatar

Joined: Mon Jun 02, 2008 6:49 pm
Posts: 17558
Location: Sanday, Orkney
Weather Station: Davis VP2
Operating System: Windows Home Server 2011
RayProudfoot wrote:
Strange that they only display it on the console to one place then.

That's all the console is capable of.
Quote:
one decimal place in Cumulus would probably suffice but I'm not complaining

That's good, because I really don't want to go through the argument again (in reverse) that I had when I resisted making this change in the first place. I've already decided that C2 will turn control of the number of decimal places (for all data, for all stations) completely over to the user, so people can do whatever they want, whether it makes sense or not :lol:

_________________
Steve
Sanday Weather
----------------------------------------------------------------------------------------------------------------------------------
Like Cumulus and want to support it? Please donate! Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 7:13 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
steve wrote:
I've already decided that C2 will turn control of the number of decimal places (for all data, for all stations) completely over to the user, so people can do whatever they want, whether it makes sense or not :lol:


It makes sense. :D

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 9:10 pm 
Offline

Joined: Fri Dec 26, 2008 8:03 pm
Posts: 65
Location: Carmarthen, West Wales
Weather Station: Maplin N96GY (WH-1081)
Operating System: Windows 7 Pro 64 bit
I recorded a record of 961.3 at 4.00pm today, which appears to be pretty much in line with the nearest "proper" weather station at Pembrey Sands. OK, so I only have records for two years, but this beat my previous low by a full 10Mb.

Currently it's 962.1 and rising slowly.

_________________
Capel Dewi (Carmarthen) Weather Station:
http://wow.metoffice.gov.uk/latestobservationservlet?siteID=23385289
https://twitter.com/CapelDewiWeathr


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Mon Nov 08, 2010 9:29 pm 
Offline
User avatar

Joined: Mon Nov 23, 2009 1:34 am
Posts: 111
Location: Rugeley, Staffordshire
Weather Station: Techno-Line WS2300
Operating System: Windows 8 Consumer Preview 64bit
Now that pressure is slowly rising, my low was recorded as 961.6mb at 14:11 today which beat my previous low by more than 14mb.

My total daily rain record was also broken - currently at 21.2mm and still raining lightly outside.

_________________
Steve J
Image Architect
http://www.imagearchitect.co.uk

Image
http://www.imagearchitect.co.uk/weather/index.htm


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Thu Nov 11, 2010 1:46 pm 
Offline
User avatar

Joined: Mon Nov 23, 2009 1:34 am
Posts: 111
Location: Rugeley, Staffordshire
Weather Station: Techno-Line WS2300
Operating System: Windows 8 Consumer Preview 64bit
... and now, if we hadn't had that record breaker the other day THIS low would have broken records too! 973.7 and still falling...

And it's a lot more windy than the other day.

_________________
Steve J
Image Architect
http://www.imagearchitect.co.uk

Image
http://www.imagearchitect.co.uk/weather/index.htm


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Thu Nov 11, 2010 7:25 pm 
Offline

Joined: Wed May 06, 2009 6:29 pm
Posts: 1708
Location: Cheadle Hulme, Cheshire, England
Weather Station: Davis VP2 with Daytime FARS
Operating System: Windows XP SP3
And my previous lowest would also have been broken. The winds have been something of a disappointment today. Highest gust was 'only' 31mph at 05:54GMT - 11mph below my record. Conditions are worse further north but so far we seem to have got off quite light here.

_________________
Cheers,
Ray, Cheshire.

Image


Top
 Profile  
 
 Post subject: Re: Major Atantic Low due to hit British Isles on Monday 8th Nov
PostPosted: Thu Nov 11, 2010 8:29 pm 
Offline

Joined: Sat Feb 21, 2009 12:41 pm
Posts: 1859
Location: Devon UK
Weather Station: FO WH1081PC (Maplin)
Operating System: OS X, Linux Mint, Win7 & XP
We've had gusts over 40mph here today and it's forecast to get a lot worse tonight!

_________________
Gina

Sorry, no banner - weather station out of action. Hoping to be up and running with a new home-made one soon.


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

All times are UTC


Who is online

Users browsing this forum: No registered users 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