Sandaysoft

Support forum for Cumulus weather station software
It is currently Sun May 26, 2013 9:41 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  [ 796 posts ]  Go to page Previous  1 ... 38, 39, 40, 41, 42, 43, 44 ... 54  Next
Author Message
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Tue Feb 14, 2012 12:18 pm 
Offline

Joined: Fri Nov 05, 2010 8:50 am
Posts: 2
Weather Station: WS2355
Operating System: Windows Vista
Hello

I have a issue with the date being wrong for the Cumulus weather data

"Updated: @ 01/01/1970 10:02 - next update at 02:02"
It updates the hours correct but the date stays always the same.

Cant figure out where it reads it from.
Please someone help me to look for correct file / setting

Is having the site running on this address.
http://www.saunalahti.fi/~pvuorio/realtime/wxstatus.php


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Tue Feb 14, 2012 7:08 pm 
Offline
User avatar

Joined: Fri Apr 01, 2011 8:14 pm
Posts: 18
Location: Smethport, Pa.
Weather Station: Davis VP2 w/FARS
Operating System: Toshiba Laptop Windows 7 x64
You can search '1970' in this forum and probably come up with a solution, most likely having to do with language somewhere in your settings.

Brad

_________________
Davis VP2/FARS
Cumulus 1.9.3(1054)


McKean Weather
'cause not everyone lives at the airport

Wunderground Webcam URL
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Tue Feb 14, 2012 7:21 pm 
Offline
User avatar

Joined: Wed May 06, 2009 5:02 am
Posts: 428
Location: Saratoga, CA, USA
Weather Station: Davis Vantage Pro Plus
Operating System: Windows XP SP3
Finpat wrote:
Hello

I have a issue with the date being wrong for the Cumulus weather data

"Updated: @ 01/01/1970 10:02 - next update at 02:02"
It updates the hours correct but the date stays always the same.

Cant figure out where it reads it from.
Please someone help me to look for correct file / setting

Is having the site running on this address.
http://www.saunalahti.fi/~pvuorio/realtime/wxstatus.php


Hi, yes the problem is a mismatch between the date format Cumulus is using and what is specified in Settings.php

Your CUtags.php?sce=dump shows
Code:
$WX['date'] = '2/14/2012';
$WX['time'] = '21:14 on 14 February 2012';
but your Settings.php has
Code:
$SITE['WDdateMDY'] = false; // for weather software date format of month/day/year.  =false for day/month/year
which means that day/month/year format is expected.

Change it to
Code:
$SITE['WDdateMDY'] = true; // for weather software date format of month/day/year.  =false for day/month/year
and the dates should work correctly again.

Best regards,
Ken


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Thu Feb 23, 2012 9:01 am 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1770
Location: World...
Weather Station: No weather station
Operating System: No operating system
I know this thread has been dormant for some time, but...

Earlier today, I discovered a small problem with the 'quake-Canada.php' script - it does not display the quakes anymore! :roll:

It appears Natural Resources Canada, the site providing the quake data, has changed the links to its pages!

The old (and non functional) links:
Code:
$fileName = "http://earthquakescanada.nrcan.gc.ca/recent_eq/maps/index_$SMode.php?tpl_region=canada";
$fileName = "http://seismescanada.rncan.gc.ca/recent_eq/maps/index_$SMode.php?tpl_region=canada";
The new links:
Code:
$fileName = "http://www.earthquakescanada.nrcan.gc.ca/recent_eq/maps/index_$SMode.php?tpl_region=canada";
$fileName = "http://www.seismescanada.rncan.gc.ca/recent_eq/maps/index_$SMode.php?tpl_region=canada";
The 'www' is now a required part of the link...


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Wed Jun 20, 2012 3:36 pm 
Offline

Joined: Sun Sep 04, 2011 2:02 am
Posts: 67
Location: Woodbury, Connecticut, U.S.A.
Weather Station: Ambient Weather WS-1090
Operating System: Windows 7 Pro 64bit
Thank you yet again for your work!


I'm having a issue. My "Feels Like" temperature at some point keeps displaying the humidex, where I want Heat Index to display. Not sure when this happened, as haven't had to use it for some time for heat values, but it's getting in the 90's today and noticed it. In box ajacCUwx.js and settings-weather.php usefeelslike are both set to 0 for use heat index.. yet it is displaying the Humidex.

You can take a look here....
http://www.grudzien.us

For comparison you can check my steelseries gauge page that lets you toggle between all 3 heat values.
http://www.grudzien.us/gauges-ss.php

Is there another setting somewhere I am missing?

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Fri Jun 22, 2012 11:59 pm 
Offline
User avatar

Joined: Fri Jun 24, 2011 5:57 pm
Posts: 176
Location: USA
Weather Station: Davis Vantage Pro2
Operating System: Windows XP3
I had the same problem and not much time to troubleshoot. I implemented this fix (there's probably a better solution - just no time to figure it out).

I removed two of the case statements. Around line 751 I removed the case statements for humidex and apparent temperature.

Kerry

_________________
http://www.tobyspondweather.com
twitter: @tobyspond


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Mon Jul 02, 2012 1:02 pm 
Offline

Joined: Sun Sep 04, 2011 2:02 am
Posts: 67
Location: Woodbury, Connecticut, U.S.A.
Weather Station: Ambient Weather WS-1090
Operating System: Windows 7 Pro 64bit
tobyspond wrote:
I had the same problem and not much time to troubleshoot. I implemented this fix (there's probably a better solution - just no time to figure it out).

I removed two of the case statements. Around line 751 I removed the case statements for humidex and apparent temperature.

Kerry

Thanks! I'll give it a shot. I have to wait till it gets a little above 80F on a day I have off to give it a go to see if it works. Hopefully should have some time on the 4th. :P

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Fri Aug 03, 2012 11:02 am 
Online

Joined: Sat Jan 28, 2012 4:03 pm
Posts: 34
Location: Philippines
Weather Station: Davis Vantage Vue
Operating System: Windows 7
At times, I notice that the METAR data on the wxmetar.php page doesn't get decoded.

Here's an example of one that doesn't get decoded:
2012/08/03 10:00 RPLC 031000Z VRB06G19KT 9999 SCT036 BKN100 27/23 Q1005 A2968 RMK DSTNT PCPN NW

And one that does:
2012/08/03 10:00 RPLL 031000Z 25012KT 9999 FEW022CB SCT023 BKN100 28/25 Q1004 NOSIG RMK A2965 CB SE

Here's a screenshot of what it looks like.

Image

Does it look like the METAR data is corrupted somehow? Or maybe there's a change I can make to get it to decode properly?

Thanks.

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Fri Aug 03, 2012 10:53 pm 
Offline

Joined: Mon Aug 10, 2009 10:16 pm
Posts: 1770
Location: World...
Weather Station: No weather station
Operating System: No operating system
David, the decoding situation might be due to improper coding of the weather data by the 'offending' METAR station.

Here a the guidelines for METAR encoding.

Living in North America, I have never encountered decoding situations - might be because the guidelines are better respected or even better enforced...


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Sat Aug 04, 2012 3:32 am 
Online

Joined: Sat Jan 28, 2012 4:03 pm
Posts: 34
Location: Philippines
Weather Station: Davis Vantage Vue
Operating System: Windows 7
Thanks. I was wondering if that could be the case.

I went through it manually, and it looks correct to me, as far as I can tell.

2012/08/03 10:00 RPLC 031000Z VRB06G19KT 9999 SCT036 BKN100 27/23 Q1005 A2968 RMK DSTNT PCPN NW

031000Z = Day 3, 10:00 GMT
VRB06G19KT = Variable Winds 06 knots with Gusts to 19 knots
9999 = Visibility 9999 meters
SCT036 = Scattered clouds at 3,600 feet
BKN100 = Broken clouds at 10,000 feet
27/23 = Temperature 27°C, Dew Point 23°C
Q1005 = Pressure 1005 hPa
A2968 = Pressure 29.68 inHg
RMK DSTNT PCPN NW = Remarks: Distant precipitation north-west

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Sat Aug 04, 2012 3:56 pm 
Offline
User avatar

Joined: Wed May 06, 2009 5:02 am
Posts: 428
Location: Saratoga, CA, USA
Weather Station: Davis Vantage Pro Plus
Operating System: Windows XP SP3
david3 wrote:
Thanks. I was wondering if that could be the case.

I went through it manually, and it looks correct to me, as far as I can tell.

2012/08/03 10:00 RPLC 031000Z VRB06G19KT 9999 SCT036 BKN100 27/23 Q1005 A2968 RMK DSTNT PCPN NW

031000Z = Day 3, 10:00 GMT
VRB06G19KT = Variable Winds 06 knots with Gusts to 19 knots
9999 = Visibility 9999 meters
SCT036 = Scattered clouds at 3,600 feet
BKN100 = Broken clouds at 10,000 feet
27/23 = Temperature 27°C, Dew Point 23°C
Q1005 = Pressure 1005 hPa
A2968 = Pressure 29.68 inHg
RMK DSTNT PCPN NW = Remarks: Distant precipitation north-west


You're currently running get-metar-conditions-inc.php - Version 1.11 - 29-Nov-2011

There was a fix for the decode of VRB conditions released 04-May-2012 with get-metar-conditions-inc.php V1.12

Use the updates tool page for Base-World, CU-plugin, 04-May-2012 to the the update.

Best regards,
Ken


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Sun Aug 05, 2012 2:53 am 
Online

Joined: Sat Jan 28, 2012 4:03 pm
Posts: 34
Location: Philippines
Weather Station: Davis Vantage Vue
Operating System: Windows 7
saratogaWX wrote:
You're currently running get-metar-conditions-inc.php - Version 1.11 - 29-Nov-2011

There was a fix for the decode of VRB conditions released 04-May-2012 with get-metar-conditions-inc.php V1.12

Use the updates tool page for Base-World, CU-plugin, 04-May-2012 to the the update.

Best regards,
Ken


That would explain it! Looks like it's worth it to do the upgrade. Thanks for your help.

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Mon Aug 06, 2012 9:27 am 
Online

Joined: Sat Jan 28, 2012 4:03 pm
Posts: 34
Location: Philippines
Weather Station: Davis Vantage Vue
Operating System: Windows 7
I applied the updates, and the METAR reports look like they're getting decoded more often now.

I did notice this one that was only partially decoded, though:

2012/08/06 09:00 RPLB 060900Z 35009KT 10000 TS/+RA FEW018CB SCT020 OVC080 26/24 Q1006 TS OVHD HVY RA

Image

(decoded from storm-cast.com)

Image

Maybe it's getting hung up on the "TS/+RA" part? Not sure if that's allowed or not.

And here's another one:

2012/08/06 10:00 RPLI 061000Z 18012G26KT 9999 FEW020 OVCV270 28/24 Q1002 NOSIG

Image

(decoded from storm-cast.com)

Image

_________________
Image


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Thu Aug 09, 2012 11:55 pm 
Offline
User avatar

Joined: Wed May 06, 2009 5:02 am
Posts: 428
Location: Saratoga, CA, USA
Weather Station: Davis Vantage Pro Plus
Operating System: Windows XP SP3
Yes, the metar reading
Code:
2012/08/06 09:00 RPLB 060900Z 35009KT 10000 TS/+RA FEW018CB SCT020 OVC080 26/24 Q1006 TS OVHD HVY RA
was a bit malformed. The middle part should have been reported as
Code:
2012/08/06 09:00 RPLB 060900Z 35009KT 10000 +RATS FEW018CB SCT020 OVC080 26/24 Q1006 TS OVHD HVY RA
(without the / ) that follows the METAR coding conventions. 'TS +RA' would also have been a proper way to code it.

The second METAR
Code:
2012/08/06 10:00 RPLI 061000Z 18012G26KT 9999 FEW020 OVCV270 28/24 Q1002 NOSIG
also had a problem and should read
Code:
2012/08/06 10:00 RPLI 061000Z 18012G26KT 9999 FEW020 OVC270 28/24 Q1002 NOSIG
.. the OVCV270 was the problem.

Best regards,
Ken


Top
 Profile  
 
 Post subject: Re: Now available: AJAX/PHP multilingual website templates
PostPosted: Sat Aug 11, 2012 5:56 am 
Online

Joined: Sat Jan 28, 2012 4:03 pm
Posts: 34
Location: Philippines
Weather Station: Davis Vantage Vue
Operating System: Windows 7
Thanks, that makes sense.

_________________
Image


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 796 posts ]  Go to page Previous  1 ... 38, 39, 40, 41, 42, 43, 44 ... 54  Next

All times are UTC


Who is online

Users browsing this forum: david3 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