Search found 8 matches

by jntkwx
Wed May 29, 2019 7:10 pm
Forum: Problems
Topic: API file not found
Replies: 7
Views: 11541

Re: API file not found

Bonjour

Je suis désolé. Je ne parle pas bien français.

J'ai écrit des instructions en anglais: http://meteotemplate.com/forum/viewtopi ... 1220#p8449

J'espère que ceci est utile.
by jntkwx
Wed May 29, 2019 6:56 pm
Forum: Problems
Topic: Problem with new Weatherlink (2.0)
Replies: 11
Views: 21009

Re: Problem with new Weatherlink (2.0)

So far I understand that. My question is now where do I have to replace the key by the api token (with wlIP username or wlIP password or at the weatherlink homepage ...) I know I am replying to a very old post, but if anyone else has this question/problem, since version 4.0 of the WL-IP Updates plu...
by jntkwx
Wed May 29, 2019 6:56 pm
Forum: Problems
Topic: Connection between w.l2 and meteotemplate
Replies: 1
Views: 7247

Re: Connection between w.l2 and meteotemplate

I could not figure out how to connect weatherlink 2.0 to meteptemplate. I have api and all the information required. I did not understand what I needed to change and which page. Is it related to w.l plugin? I know I am replying to a very old post, but if anyone else has this question/problem, since...
by jntkwx
Fri Jun 22, 2018 1:30 pm
Forum: Problems
Topic: Problem with new Weatherlink (2.0)
Replies: 11
Views: 21009

Re: Problem with new Weatherlink (2.0)

I received this email from Davis on Monday, June 18, 2018: As our move to WeatherLink 2.0 proceeds, we are approaching an important update that will affect anyone using the WeatherLink 1.0 API. This may affect you if you use the current API to: • Display data on a personal or community web page. • S...
by jntkwx
Mon Oct 23, 2017 7:18 pm
Forum: General
Topic: Degree Days calculation in NOAA Report
Replies: 9
Views: 13912

Re: Degree Days calculation in NOAA Report

Yes, max/min/avg are grouped by days Ok, the point I'm trying to get across is that HDD and CDD can't both exist, by definition, on the same day. I think this is the logic you were trying to apply by specifying if($minimum>$baseT){ $hdd = 0; } But $hdd should always be 0 when $minimum>$baseT And $c...
by jntkwx
Thu Oct 19, 2017 2:19 pm
Forum: General
Topic: Degree Days calculation in NOAA Report
Replies: 9
Views: 13912

Re: Degree Days calculation in NOAA Report

Thank you, that's very helpful. These are the sections of that code I'm most interested in: if($minimum>$baseT){ $hdd = 0; } if($maximum<$baseT){ $cdd = 0; } Can we agree that hdd and cdd values should not both exist on the same day? Either a HDD or a CDD exists, but not both for the same day, accor...
by jntkwx
Tue Oct 17, 2017 12:29 pm
Forum: General
Topic: Degree Days calculation in NOAA Report
Replies: 9
Views: 13912

Re: Degree Days calculation in NOAA Report

The average discrepancy wasn't the point of my post (though the link I provided: http://www.weather.gov/media/btv/degreedays.pdf does explain the value of using an hourly-updating average (using 24 average temperatures and dividing by 24 hours -- you have to remember that until recently, many offici...
by jntkwx
Mon Oct 16, 2017 8:39 pm
Forum: General
Topic: Degree Days calculation in NOAA Report
Replies: 9
Views: 13912

Degree Days calculation in NOAA Report

How are the Heating Degree Day and Cooling Degree Day values calculated? I'm seeing values for Cooling Degree Days and Heating Degree Days existing on the same day. If the calculation is done as the National Weather Service defines it, there should never be values for heating degree days and coolin...