Author Topic: Weather34 template(non meteobridge versions)  (Read 117930 times)

0 Members and 1 Guest are viewing this topic.

Offline espinosa

  • Member
  • *
  • Posts: 2
    • Espinosa de Henares
Re: HOMEWEATHERSTATION Dashboard template
« Reply #650 on: January 03, 2019, 06:28:06 AM »
Happy New Year! I hope the joys of 2019 will make you forget 2018.

Regarding the soil module, I'm using meteobridge, and at least, in the live data appears the extra sensors, as you can see in the attachments
xml
 [ You are not allowed to view attachments ]
plaintext
 [ You are not allowed to view attachments ]
as described in https://www.meteobridge.com/wiki/index.php/Add-On_Services
but I don't know how to check if it's in the api or not.

Thanks
espinosa
[/quote]

good afternoon

if you are running meteobridge no problem only versions i work on these days .if you are you using weather display i would contact wim as he has taken over that version and it is hoped he will have something ready in the near future..

 all other versions pretty much finished only cumulus gets minor updates where css ideas for meteobridge work without any additional adjustments as cumulus version data file realtime.txt never changes.

sorry i dont do one offs anymore,all or any additions has to be available in the meteobridge api source which i would need to liase with boris of meteobridge beforehand to have the extra data added to the api .

ps from post above earlier erik hope you are well sorry to hear of ilnness hope you are recovering well and this season is liverpools for the taking but christmas period is the make or break period most teams top of the league after this period have gone on to,win the league in recent times however ....take care brian
[/quote]

Offline weather34

  • Forecaster
  • *****
  • Posts: 1068
    • https://weather34.com/homeweatherstation
Re: HOMEWEATHERSTATION Dashboard template
« Reply #651 on: January 03, 2019, 06:53:09 AM »
it will be some time before I can do this please read http://www.wxforum.net/index.php?topic=31507.new#new

just bad timing but everything is possible most of the time with meteobridge ..sincere apologies...brian

Offline gand

  • Senior Member
  • **
  • Posts: 61
    • Lynghuzed
Re: HOMEWEATHERSTATION Dashboard template
« Reply #652 on: January 07, 2019, 02:30:16 AM »
Hi

Is it correctly understood that I must have version 3.9 of Meteobridge to run the latest version of HWS. I'm on version 3.2 and have been running this version for several years without any problems.

Rgds
gand

Offline weather34

  • Forecaster
  • *****
  • Posts: 1068
    • https://weather34.com/homeweatherstation
Re: HOMEWEATHERSTATION Dashboard template
« Reply #653 on: January 07, 2019, 02:55:22 AM »
Hi

Is it correctly understood that I must have version 3.9 of Meteobridge to run the latest version of HWS. I'm on version 3.2 and have been running this version for several years without any problems.

Rgds
gand

hello good morning

no set to just stick to version 3.2 and reboot to pick up new API structure however some addtional improvements to support the template have been made in the firmware over the last few versions so just try it if it dont work wont affect any other part of meteobridge itself just perhaps have missing values when using this template as it today..

Offline gand

  • Senior Member
  • **
  • Posts: 61
    • Lynghuzed
Re: HOMEWEATHERSTATION Dashboard template
« Reply #654 on: January 07, 2019, 09:48:33 AM »
Hi

Thanks for the prompt answer.

I have rebooted an upgraded to MB-07012019 and everything seems fine with firmware version 3.2 of Meteobridge.

One question about a new feature, it would me very nice to have All Times Records from the Meteobridge, maybe in the Almanac or a separate page.

Thanks for the template and keep up the good work.

Rgds
Gert

Offline weather34

  • Forecaster
  • *****
  • Posts: 1068
    • https://weather34.com/homeweatherstation
Re: HOMEWEATHERSTATION Dashboard template
« Reply #655 on: January 07, 2019, 09:56:16 AM »
ok good stuff

Alltime records is there in the latest API, currently limited values are viewable under almanac pop ups more will come in the future just adding one thing at a time release it then sit back and see if any issues arise then if ok or issues get fixed move on to the next idea..slow process but only way as its impossible to monitor all possible scenarios so I find users are of great benefit for feedback ..brian

Offline gand

  • Senior Member
  • **
  • Posts: 61
    • Lynghuzed
Re: HOMEWEATHERSTATION Dashboard template
« Reply #656 on: January 07, 2019, 10:16:09 AM »
Great :grin:

gand

Offline gand

  • Senior Member
  • **
  • Posts: 61
    • Lynghuzed
Re: HOMEWEATHERSTATION Dashboard template
« Reply #657 on: January 07, 2019, 04:09:34 PM »
Hi

If you look at the Almanac Barometric Pressure page, it looks like the same day, January 3, has 2 different values for the maximum. January shows 1031.8 (which is correct), 2019 shows 1026.3. Minimum is correct.

gand

 [ You are not allowed to view attachments ]

Offline weather34

  • Forecaster
  • *****
  • Posts: 1068
    • https://weather34.com/homeweatherstation
Re: HOMEWEATHERSTATION Dashboard template
« Reply #658 on: January 08, 2019, 01:35:30 AM »
good morning

ok nothing major my oversight so i apologise sincerely updated download or just simply edit the barometeralmanac.php




near the bottom of barometeralmanac.php find

 
              <?php
   // year
   
   if ($tempunit=='C' &&  $weather["thb0seapressymax"]>=-999)  {
   echo "<red>",$weather["thb0seapressydmax"] . "</value>";}
   if ($tempunit=='F' && $weather["thb0seapressymax"]>-999)  {
   echo "<red>",$weather["thb0seapressydmax"] . "</value>";}    
   
?>

simply remove the d $weather["thb0seapressydmax"] to read $weather["thb0seapressymax"]

so it reads
 <?php
   // year
   
   if ($tempunit=='C' &&  $weather["thb0seapressymax"]>=-999)  {
   echo "<red>",$weather["thb0seapressymax"] . "</value>";}    
   if ($tempunit=='F' && $weather["thb0seapressymax"]>-999)  {
   echo "<red>",$weather["thb0seapressymax"] . "</value>";}    
   
?>

if your curious of the -999 this stops displaying/recording erroneous data for pressure and other values sometimes ambient or fine offset clones types send -999 when the sensors start failing or loss of contact..


 [ You are not allowed to view attachments ]


have a great day brian...

Offline gand

  • Senior Member
  • **
  • Posts: 61
    • Lynghuzed
Re: HOMEWEATHERSTATION Dashboard template
« Reply #659 on: January 08, 2019, 02:38:52 AM »
Hi

Working perfect, thanks.

gand

Offline Giggino

  • Member
  • *
  • Posts: 13
Re: HOMEWEATHERSTATION Dashboard template
« Reply #660 on: February 17, 2019, 04:17:21 PM »
Good evening,
I'm using the 'Cumulus' version of this template that is online on this page: lastazionedelporto.altervista.org
The data is regularly updated every 60 seconds, I would like to know if it is possible to set a lower update time (for example 8 seconds) at least for the wind data. Thank you.

Offline saratogaWX

  • Administrator
  • Forecaster
  • *****
  • Posts: 9257
  • Saratoga, CA, USA Weather - free PHP scripts
    • Saratoga-Weather.org
Re: HOMEWEATHERSTATION Dashboard template
« Reply #661 on: February 17, 2019, 11:42:05 PM »
The data displayed comes from the Cumulus realtime.txt file -- the wind data (and all conditions data) is updated whenever you update realtime.txt on your website.  The wind speed/direction refresh is every 10 seconds by default, so if you update realtime.txt every 10 seconds, it would show on the site.
Ken True/Saratoga, CA, USA main site: saratoga-weather.org
Davis VP1+ FARS, Blitzortung RED, GRLevel3, WD, WL, VWS, Cumulus, Meteobridge
Free weather PHP scripts/website templates - update notifications on Twitter saratogaWXPHP

Offline Giggino

  • Member
  • *
  • Posts: 13
Re: HOMEWEATHERSTATION Dashboard template
« Reply #662 on: February 18, 2019, 01:11:23 PM »
Thanks for the reply.
How can I set Cumulus to update the realtime.txt file every 10 seconds?
Can i set the template to have a refresh of less than 10 seconds?

Offline plex

  • Contributor
  • ***
  • Posts: 102
Re: HOMEWEATHERSTATION Dashboard template
« Reply #663 on: February 18, 2019, 02:40:04 PM »
Is it possible to import all history from WU into the HWS MySQL database?  :?:

I don't want my 8 years weather data flushed out, when WU decide to do so.


Offline PraveenC31

  • Senior Member
  • **
  • Posts: 58
Re: HOMEWEATHERSTATION Dashboard template
« Reply #664 on: April 14, 2019, 06:05:07 AM »
If anyone is interested in the weeWX adapted version of the weather34 template, you can find it at the link below courtesy of Ian Steeple. All support questions on this adapted version should be directed to Ian and not to Brian.

https://github.com/steepleian/weather34-Home-Weatherstation-Template-WeeWX-adapted

Here is my web site (https://weather.sathy.us) using this template. The additional benefit of this adapted template is the capability to display CanvasJS charts generated from native weeWX historical reports rather than a feed from the free Weather Underground API , which as many of you know is going away shortly.





How do I see the charts here?

Offline eddiegonzales

  • Member
  • *
  • Posts: 3
    • Weather in Felsted
Re: HOMEWEATHERSTATION Dashboard template
« Reply #665 on: April 19, 2019, 05:44:58 AM »
Hi guys

Great work!

I have noticed that even there has been a few updates. This parts keeps on being in Dutch rather than English

Please see attached picture

Online wvdkuil

  • Wim van der kuil
  • Forecaster
  • *****
  • Posts: 1986
    • My PWS at Leuven Belgium Europe
Re: HOMEWEATHERSTATION Dashboard template
« Reply #666 on: April 19, 2019, 07:06:28 AM »
. . . shortened . . .
 This parts keeps on being in Dutch rather than English. Please see attached picture
That part comes from the 1 hour forecast by DakrSky.
There is s separate selection for the DarkSky forecast language. It still seems to be Dutch in your case.
If you set that to the same language as your main language (English) , the texts will be in English.

After changing the setting in easyweathersetup.php you have to wait for the cache to be replaced. Max 1 hour.

Wim

Offline eddiegonzales

  • Member
  • *
  • Posts: 3
    • Weather in Felsted
Re: HOMEWEATHERSTATION Dashboard template
« Reply #667 on: April 20, 2019, 04:06:44 AM »
Hi Wim,

Thanks. I have changed the settings to match the dashboard language (english) but after many hours, the language is still Dutch, and i have also cleared the browser cache to be sure. But without luck :-)

BR
Stephan

Online wvdkuil

  • Wim van der kuil
  • Forecaster
  • *****
  • Posts: 1986
    • My PWS at Leuven Belgium Europe
Re: HOMEWEATHERSTATION Dashboard template
« Reply #668 on: April 20, 2019, 04:38:53 AM »
Hi Wim,

Thanks. I have changed the settings to match the dashboard language (english) but after many hours, the language is still Dutch, and i have also cleared the browser cache to be sure. But without luck :-)
BR
Stephan
In your easyweather-settings you selected to use DarkSky for your forecast and for your current conditions.
But you forgot to request/enter a DarkSky API-key, and therefor the scripts can not load the forecast and will reuse the demo file (which is in Dutch)

You can always check which files are loaded and which not with https://www.valkaer.dk/w34_load_files.php?test
Code: [Select]
w34_load_files.php (59) METAR not loaded API=ADD YOUR API KEY
w34_load_files.php (69) DARKSKY not loaded API=ADD YOUR API KEY
w34_load_files.php (236) File not old enough (753/1800 seconds)https://api.weather.com/v3/wx/forecast/daily/5day?geocode=54.98,9.51&format=json&units=s&language=en-EN&apiKey=_API_SETTING_
w34_load_files.php (99) Environement Canada not use
w34_load_files.php (236) File not old enough (752/1800 seconds)https://earthquake-report.com/feeds/recent-eq?json
w34_load_files.php (236) File not old enough (152/300 seconds)https://services.swpc.noaa.gov/products/geospace/planetary-k-index-dst.json
w34_load_files.php (121) luftdaten sensor not defined
w34_load_files.php (129) purplair sensor not defined
w34_load_files.php (139) goverment aqi not defined
w34_load_files.php (236) File not old enough (1390/1800 seconds)https://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=ISYDDANM23&day&month&year&graphspan=day&format=1&units=scandinavia
w34_load_files.php (236) File not old enough (9152/28800 seconds)https://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=ISYDDANM23&graphspan=month&year=year&month=month&format=1&units=scandinavia
w34_load_files.php (236) File not old enough (28951/43200 seconds)https://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=ISYDDANM23&graphspan=year&year=&format=1&units=scandinavia 

If you request (there is a link for that in the line where you enter that key) and then add that key it will work.

Wim

Offline eddiegonzales

  • Member
  • *
  • Posts: 3
    • Weather in Felsted
Re: HOMEWEATHERSTATION Dashboard template
« Reply #669 on: April 20, 2019, 05:03:53 AM »
Hi Wim,

Thanks. Now it works. I wouldn't have guessed that the Dark Sky would matter since i didn't "Activated" it. But now i have put in the key from Dark Sky that i have requested.

Thanks

BR
Stephan

Offline nitrx

  • Senior Contributor
  • ****
  • Posts: 277
    • Apeldoorn-Oost The Netherlands
Re: HOMEWEATHERSTATION Dashboard template
« Reply #670 on: April 20, 2019, 05:10:56 AM »
Is the a way to display lightningstrikes and distance from the WeatherFlow (if there are any ), I use realtime.txt and the station ID from weatherflow. http://apeldoornmeteo.nl/wd (I dont use weatherdisplay )
Ron
Cumulus software
Apeldoorn NL
http://www.apeldoornmeteo.nl

several languages

Online wvdkuil

  • Wim van der kuil
  • Forecaster
  • *****
  • Posts: 1986
    • My PWS at Leuven Belgium Europe
Re: HOMEWEATHERSTATION Dashboard template
« Reply #671 on: April 20, 2019, 05:34:13 AM »
Is the a way to display lightningstrikes and distance from the WeatherFlow (if there are any ), I use realtime.txt and the station ID from weatherflow. http://apeldoornmeteo.nl/wd (I dont use weatherdisplay )
Will be included in the July release, more or less the same as the Boltek block.

Wim

Offline nitrx

  • Senior Contributor
  • ****
  • Posts: 277
    • Apeldoorn-Oost The Netherlands
Re: HOMEWEATHERSTATION Dashboard template
« Reply #672 on: April 20, 2019, 05:57:16 AM »
Great looking foward  [tup]
Ron
Cumulus software
Apeldoorn NL
http://www.apeldoornmeteo.nl

several languages

Offline mkutche

  • Forecaster
  • *****
  • Posts: 1041
    • GosportWx.com
Re: Weather34 template(non meteobridge versions)
« Reply #673 on: May 25, 2019, 07:01:56 PM »
I just noticed this is not picking up any data see screenshot. http://www.gosportwx.com/PWS/

 [ You are not allowed to view attachments ]
Mike K.
Davis Vantage Vue 6250 - CumulusMX (3.21.1-b3205)
Gosport, Indiana
Gosportwx.com twitter.com/GosportINWX
-----------------------------------------------------------

Offline PaulMy

  • Forecaster
  • *****
  • Posts: 5509
    • KomokaWeather
Re: Weather34 template(non meteobridge versions)
« Reply #674 on: May 25, 2019, 07:39:26 PM »
This is a WU issue as discussed here http://www.wxforum.net/index.php?topic=36954.25

Enjoy,
Paul