<?php
############################################################################
# A Project of TNET Services, Inc. and Saratoga-Weather.org (WD-World-ML template set)
############################################################################
#
#	Project:	Sample Included Website Design
#	Module:		Settings-weather.php
#	Purpose:	Provides the Site Settings Used Throughout the Site
# 	Authors:	Kevin W. Reed <kreed@tnet.com>
#				TNET Services, Inc.
#               Ken True <webmaster@saratoga-weather.org>
#               Saratoga-Weather.org
#
# 	Copyright:	(c) 1992-2007 Copyright TNET Services, Inc.
############################################################################
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
############################################################################
#	This document uses Tab 4 Settings
############################################################################
//Version 1.01 - 27-Aug-2011 - added $SITE['NOAAdir'] for Cumulus NOAA-style reports
//Version 1.02 - 21-Sep-2011 - added setting for feelslike temperature
//Version 1.03 - 31-Mar-2012 - added $SITE['overrideRain'] to settings
//Version 1.04 - 13-Mar-2020 - update link url for software download
global $SITE;
#---------------------------------------------------------------------------
#  required settings for Cumulus software
#---------------------------------------------------------------------------
$SITE['WXtags']		= './realtime_wx/CUtags.php';    // for weather variables
$SITE['ajaxScript']     = 'ajaxCUwx.js';   // for AJAX enabled display
$SITE['realtimefile']   = './realtime_wx/realtime.txt';  // directory and name of Cumulus realtime.txt file
$SITE['graphImageDir']  = './realtime_wx/images/';     // directory location for graph images with trailing /
#---------------------------------------------------------------------------
# For NOAA reports
$SITE['NOAAdir']        = './Reports/';   // relative location of the NOAA report files
# Weather Station sensors and options for dashboard
$SITE['conditionsMETAR'] = 'KPVU';  // 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['feelslike']      = 0;     // =0 use HeatIndex, =1 use Humidex, =2 use Apparent Temperature
$SITE['DavisVP']	= true;  // set to false if not a Davis VP weather station
$SITE['UV']		= false;  // set to false if no UV sensor
$SITE['SOLAR']		= false;  // set to false if no Solar sensor
#
##########################################################################
# end of configurable settings
#
#---------------------------------------------------------------------------
# do NOT change these settings below
$SITE['WXsoftware']     = 'CU';
$SITE['WXsoftwareURL']  = 'https://cumuluswiki.org/a/Software';
$SITE['WXsoftwareLongName'] = 'Cumulus'; // will adjust to 'CumulusMX' for version 3+ detected
$SITE['ajaxDashboard']  = 'ajax-dashboard.php';
$SITE['trendsPage']     = 'CU-trends-inc.php'; // CU-specific trends page
$SITE['showSnow']	= false;   // do not toggle snow panel.. Snow depth will be displayed if available
$SITE['showSnowTemp'] 	= -60;	  // disabled feature for Cumulus

?>