deformed-offering

Free Weather Website Templates

They're free, but use at your own risk

The scripts referenced here are used in the operation of this weather station, and may be freely copied and used to support your station. Please note that you use these scripts at your own risk. No warranty is expressed or implied. I accept no liability for any damages that may ensue from their use.
You will need to configure them for your own particular weather station website.
RSS feed for Scripts Updates A RSS Feed is available to help keep you informed on updates to the scripts.

Many of these scripts are now available on GitHub at https://github.com/ktrue

Buy Me A Coffee If you find one or more of the scripts useful to you, please consider making a donation to help offset the routine expenses of operation of this website.
Thanks for your kind support!

A Version History is available -- check back from time to time to see if there are updates to scripts you have downloaded earlier. Announcements of version updates and new scripts are made on WXForum.net and Weather-Watch forums and saratogaWXPHP Twitter account as they become available.

Note: Twitter widget has been disabled 3-Jul-2023 since it no longer displays the recent update Tweets.

This page was updated Friday, 14-May-2021 11:04 AM

PHP/AJAX Website Template Set - Settings-weather.php - WEEWX-Plugin

The configuration for Settings-weather.php discussed here is for the WEEWX-Plugin.

<?php
#---------------------------------------------------------------------------
#  required settings for WeeWX software
#---------------------------------------------------------------------------
$SITE['ajaxScript']     = 'ajaxWEEWXwx.js'// for AJAX enabled display
$SITE['clientrawfile']  = 'clientraw.txt';  // directory and name of clientraw.txt file

$SITE['WXtags']            = 'WEEWXtags.php';  // for weather variables (testing only)
$SITE['graphImageDir'] = './';  // directory location for graph images with trailing /
# For NOAA reports
$SITE['NOAAdir']        = './NOAA/';   // relative location of the NOAA report files directory
#
# Weather Station sensors and options for dashboard
#
$SITE['conditionsMETAR'] = 'KSJC';  // set to nearby METAR for current conditions icon/text
#  comment out conditionsMETAR if no nearby METAR.. conditions icon/text will not be displayed
$SITE['overrideRain']   = true// =true then rain rate will set rain words instead of METAR rain words
#                               // =false - no change to METAR rain words (station rain rate not used)
#
$SITE['DavisVP']        = true;  // set to false if not a Davis VP weather station
$SITE['UV']                = true;  // set to false if no UV sensor
$SITE['SOLAR']            = true;  // set to false if no Solar sensor
##########################################################################
# end of configurable settings
#
?>

WeeWX Configuration settings in Settings-weather.php

$SITE['ajaxScript'] = 'ajaxWEEWXwx.js';
This entry specifies the AJAX update script name. If specified, the script will read the clientraw.txt file to update some of the weather data displayed via AJAX. Since the minimum update time for WeeWX is one minute, this is not very 'realtime' but may update more often than the 5 minute interval for the main weather data/graphics.
$SITE['clientrawfile'] = 'clientraw.txt';
This entry specifies the relative file location of the clientraw.txt file used by the $SITE['ajaxScript'] specified above.
$SITE['WXtags']= 'WEEWXtags.php';
This setting specifies the filename of the WeeWX weather tags file. This file is uploaded through WeeWX and contains the current weather data associated with WeeWX HTML tags. The data is loaded Weather-Display ${variablename} PHP variables. An associated WEEWX-defs.php file completes any missing variables needed for template operation.
$SITE['graphImageDir'] = './';
This setting specifies the relative file location of the directory containing the WeeWX graph images (used by the wxgraphs.php page)
$SITE['NOAAdir'] = './NOAA/';
This setting specifies the relative file location of the NOAA reports files. It is used by the wxnoaaclimatereports.php page.
$SITE['conditionsMETAR'] = 'KSJC';
This setting specifies the ICAO/name of the near-by METAR station that will be used to provide current conditions (weather/sky cover) for the ajax-dashboard and ajax-gizmo.
A list of nearby METAR names can be found using the find METAR query script.
Note: WeeWX (natively) and the weewx-saratoga extension do not generate a conditions icon nor sky conditions text, so this setting is needed in order to show a conditions icon and sky conditions on the dashboard.
$SITE['overrideRain'] = true;
This setting specifies whether the weather station rain-rate should display the rain words based on the current rain rate.
=false : METAR rain words (if any) will be displayed as current condition.
=true : current station rain rate will set words (as shown below) and rain words direct from METAR are removed. Icon is also set appropriately.
Words and selection criteria:
"Light Rain" when rain rate is > 0.0 and < 2.5 mm (0.098 in) per hour
"Moderate Rain" when rain rate is >= 2.5 mm (0.098 in) and < 7.6 mm (0.30 in) per hour
"Heavy Rain" when rain rate is >= 7.6 mm (0.30 in) per hour and < 50 mm (2.0 in) per hour
"Violent Rain" when rain rate is >= 50 mm (2.0 in) per hour
If this setting is ommitted from Settings-weather.php, the default will be assumed as 'true' to enable the function.
If enabled, the rain words from the METAR will be removed, and the above words used based on the current rain rate.
$SITE['DavisVP'] = true;
This setting specifies whether you have a Davis VP/Vue station.
= true means you have a Davis VP/Vue station
= false means you do not have a Davis VW/Vue station and the display of the VP forecast on the ajax-dashboard is suppressed.
$SITE['UV'] = true;
This setting specifies whether your station has a UV sensor.
= true means your station has a UV sensor.
= false means your station does not have a UV sensor which will result in the ajax-dashboard displaying a UV forecast in that area instead of the UV sensor value.
$SITE['SOLAR'] = true;
This setting specifies whether your station has a Solar sensor.
= true means your station has a Solar Radiation sensor.
= false means your station does not have a Solar Radiation sensor which will result in the ajax-dashboard displaying a UV forecast in that area instead of the Solar sensor value.
deformed-offering