Forecast: Difference between revisions

From Cumulus Wiki
Jump to navigationJump to search
(Initial edit)
 
(Completion)
Line 1: Line 1:
== Introduction ==
== Introduction ==
CumulusUtils has a minimal forcast module. Every weathersite must have some kind of forecasting so the choice has been made to take four different existing possibilities and present the forecast of the users choice. It is not a true forecasting system.
''CumulusUtils'' has a minimal forecast module. Every weather site must have some kind of forecasting so the choice has been made to take four different existing possibilities and present the forecast of the users choice. It is not a true forecasting system.


== Operation ==
== Operation ==
Line 17: Line 17:


== SpotWx ==
== SpotWx ==
When setting the ForecastSystem to SpotWx, the prediction for the latitude and longitude of the station is fetched and displayed in an iframe.<br>
When setting the ''ForecastSystem'' to '''SpotWx''', the prediction for the latitude and longitude of the station is fetched and displayed in an iframe.<br>
The iframe is formed as: <nowiki><iframe src='{SpotwxPredictionURL}' frameborder='0' style='border: 0; width:100%; height: 75vh;'></iframe></nowiki> and written to the output file.
The iframe is formed as: <nowiki><iframe src='{SpotwxPredictionURL}' frameborder='0' style='border: 0; width:100%; height: 75vh;'></iframe></nowiki> and written to the output file.


== Yourwether ==
== Yourwether ==
When setting the ForecastSystem to Yourweather, the user must have:
When setting the ''ForecastSystem'' to '''Yourweather''', the user must have:
#Go to yourweather.co.uk
#Go to yourweather.co.uk
#Scroll down until you see (in a bordered block): “API - Access to xml”;
#Scroll down until you see (in a bordered block): “API - Access to xml”;
Line 27: Line 27:
#Once on the API page, choose your location;
#Once on the API page, choose your location;
#Choose the XML API, address 1: “Address 1: XML file with the 7-day forecast and general daily information”;
#Choose the XML API, address 1: “Address 1: XML file with the 7-day forecast and general daily information”;
#Fill in that link, in the cumlusutils.ini for the parameter: SevenDayPredictionURL. In the section [Forecast]. You may have to run CumulusUtils with the argument Forecast one time to see that parameter.
#Fill in that link, in the ''cumlusutils.ini'' for the parameter: ''SevenDayPredictionURL''. In the section [Forecast]. You may have to run ''CumulusUtils'' with the argument Forecast one time to see that parameter.


When CumulusUtils is run with the argument forecast, it fetched the corresponding XML with the ECMWF  model forecast and reworks that into a table and written to the outputfile. The icons the user installed in CUicons are used.
When ''CumulusUtils'' is run with the argument forecast, it fetched the corresponding XML with the ECMWF  model forecast and reworks that into a table and written to the outputfile. The icons the user installed in CUicons are used.


== Norway ==
== Norway ==
When setting the ''ForecastSystem'' to '''Norway''', the prediction URL as given in ''NorwegianURL'' is fetched and displayed in an iframe.<br>
'''NOTE:''' The current renewed site of the Norwegian service have set the ''X-Frame-Options'' to ''SAMEORIGIN'' meaning that you can only display a forecast as a page from their site. The system as used within ''CumulusUtils'' therefore does not work anymore. Only users who already have their URL from the old site can continue using it. I don't know until when.
== WxSim ==
When setting the ''ForecastSystem'' to '''WxSim''', the WXsimURL is used to display in an iframe.<br>
The iframe is formed as: <nowiki><iframe src='{WxsimPredictionURL}' frameborder='0' style='border: 0;width:100%; height: 75vh;'></iframe></nowiki> and written to the output file.

Revision as of 10:54, 25 March 2021

Introduction

CumulusUtils has a minimal forecast module. Every weather site must have some kind of forecasting so the choice has been made to take four different existing possibilities and present the forecast of the users choice. It is not a true forecasting system.

Operation

This module is included in the website. When needed as a single output the following command is given:

   utils/bin/cumulusutils.exe Forecast

Output

The output is the file: forecast.txt

Inifile parameters

   [Forecasts]
   ForecastSystem=SpotWx (default, other possibilities: Yourweather, Norway, WxSim)
   SevenDayPredictionURL=
   NorwegianURL=
   WXsimURL=

SpotWx

When setting the ForecastSystem to SpotWx, the prediction for the latitude and longitude of the station is fetched and displayed in an iframe.
The iframe is formed as: <iframe src='{SpotwxPredictionURL}' frameborder='0' style='border: 0; width:100%; height: 75vh;'></iframe> and written to the output file.

Yourwether

When setting the ForecastSystem to Yourweather, the user must have:

  1. Go to yourweather.co.uk
  2. Scroll down until you see (in a bordered block): “API - Access to xml”;
  3. Click on it, register, and follow the instructions;
  4. Once on the API page, choose your location;
  5. Choose the XML API, address 1: “Address 1: XML file with the 7-day forecast and general daily information”;
  6. Fill in that link, in the cumlusutils.ini for the parameter: SevenDayPredictionURL. In the section [Forecast]. You may have to run CumulusUtils with the argument Forecast one time to see that parameter.

When CumulusUtils is run with the argument forecast, it fetched the corresponding XML with the ECMWF model forecast and reworks that into a table and written to the outputfile. The icons the user installed in CUicons are used.

Norway

When setting the ForecastSystem to Norway, the prediction URL as given in NorwegianURL is fetched and displayed in an iframe.
NOTE: The current renewed site of the Norwegian service have set the X-Frame-Options to SAMEORIGIN meaning that you can only display a forecast as a page from their site. The system as used within CumulusUtils therefore does not work anymore. Only users who already have their URL from the old site can continue using it. I don't know until when.

WxSim

When setting the ForecastSystem to WxSim, the WXsimURL is used to display in an iframe.
The iframe is formed as: <iframe src='{WxsimPredictionURL}' frameborder='0' style='border: 0;width:100%; height: 75vh;'></iframe> and written to the output file.