<?php
############################################################################
# A Project of TNET Services, Inc. and Saratoga-Weather.org (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
############################################################################
global $SITE;
#---------------------------------------------------------------------------
#  required settings for Meteohub software
#---------------------------------------------------------------------------
$SITE['WXtags']        = 'MHtags.php';  // for weather variables
$SITE['ajaxScript']    = 'ajaxMHwx.js'; // for AJAX enabled display
$SITE['clientrawFile'] = './clientraw.txt';  // relative directory and name of Meteohub clientraw.txt file
$SITE['graphImageDir'] = './';  // directory location for graph images with trailing /
# 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['DavisVP']  = false;  // 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
#
// default settings needed for various pages when the weather software plugin is not installed.
// do not change these
$SITE['WXsoftware']     = 'MH';  // 'WD' for Weather-Display, 'CU' for Virtual Weather Station,
                                 // 'CU' for Cumulus, 'CU' for Cumulus, 'WXS' for WXSolution
                                 // 'MH' for Meteohub
$SITE['WXsoftwareURL'] = 'http://wiki.meteohub.de/Main_Page';
$SITE['WXsoftwareLongName'] = 'Meteohub';
$SITE['ajaxDashboard'] = './ajax-dashboard.php';
$SITE['trendsPage']     = 'MH-trends-inc.php'; // CU-specific trends page
?>