//=========================================================
// INITIALIZE.JS provides nulls for all weather page params
//=========================================================

//=========================================================
// Station Metadata
//=========================================================
station_name = "---";
station_city = "---";
station_state = "---";
station_latitude = "---";
station_longitude = "---";
station_elevation = "---";

//=========================================================
// Current Local and UTC Date/Time
//=========================================================
dateStr = "01/01/00";
timeStr = "12:00a";
UTCtime = " 6:00a";
UTCdate = "01/01/00";

//=========================================================
// Current Data
//=========================================================
temp = 0;
dewpoint = 0;
humidity = 0;
barometer = 0;
precip = 0;
monthly_precip = 0;
yearly_precip = 0;
precip_rate = 0;
heat_index = 0;
wind_chill = 0;
soil = 0;

//=========================================================
// Today's Extremes
//=========================================================
high_temp = 0;
high_temp_time = "----";
low_temp = 0;
low_temp_time = "----";
high_dewpoint = 0;
high_dewpoint_time = "----";
low_dewpoint = 0;
low_dewpoint_time = "----";
high_humidity = 0;
high_humidity_time = "----";
low_humidity = 0;
low_humidity_time = "----";
high_barometer = 0;
high_barometer_time = "----";
low_barometer = 0;
low_barometer_time = "----";
high_precip_rate = 0.00;
high_precip_rate_time = "----";
high_heat_index = 0;
high_heat_index_time = "----";
low_wind_chill = 0;
low_wind_chill_time = "----";
high_soil_temp = 0;
high_soil_temp_time = "----";
low_soil_temp = 0;
low_soil_temp_time = "----";

//=========================================================
// Current and Extreme Winds				
//=========================================================
wind_speed = 0; 
wind_direction = "----"; 
wind_gust = 0; 
high_sust = 0; 
high_sust_dir = "----";
high_sust_time = "----"; 
high_gust = 0;
high_gust_dir = "----";
high_gust_time = " ----"; 

//=========================================================
// Precipitation Data   					
//=========================================================
weekly_precip = 0.00; 
consecutive_dry_days = 0; 
precip_day = 0; 
precip_1 = 0; 
precip_3 = 0; 
precip_6 = 0; 
precip_12 = 0; 
precip_24 = 0; 

//=========================================================
// Trend Data 						
//=========================================================
prior_temp =  999; 
prior_dew =  999; 
prior_baro = 0; 
prior_soil = 999; 
 								
//=========================================================
// Yearly Extremes					
//=========================================================
yearly_hi_temp = 0;
yearly_hi_temp_date = "----"; 
yearly_low_temp = 0;
yearly_low_temp_date = "----";
yearly_hi_dew = 0;
yearly_hi_dew_date = "----"; 
yearly_low_dew = 0;
yearly_low_dew_date = "----";
yearly_hi_baro = 0;
yearly_hi_baro_date = "----"; 
yearly_low_baro = 0;
yearly_low_baro_date = "----"; 
yearly_hi_sust = 0;
yearly_hi_sust_date = "----"; 
yearly_hi_gust = 0;
yearly_hi_gust_date = "----"; 
yearly_hi_precip = 0;
yearly_hi_precip_date = "----";
yearly_hi_rate = 0;
yearly_hi_rate_date = "----"; 
yearly_hi_soil = 0;
yearly_hi_soil_date = "----";
yearly_low_soil = 0;
yearly_low_soil_date = "----"; 
yearly_low_wc = 0;
yearly_low_wc_date = "----"; 
yearly_hi_hi = 0;
yearly_hi_hi_date = "----"; 
 				

//=========================================================
// Yesterday's extremes
//=========================================================
yest_date = "01/01/00";
yest_high_temp = 0;
yest_high_temp_time = "----";
yest_low_temp = 0;
yest_low_temp_time = "----";
yest_high_dewpoint = 0;
yest_high_dewpoint_time = "----";
yest_low_dewpoint = 0;
yest_low_dewpoint_time = "----";
yest_high_humidity = 0;
yest_high_humidity_time = "----";
yest_low_humidity = 0;
yest_low_humidity_time = "----";
yest_high_baro = "0";
yest_high_baro_time = "----";
yest_low_baro = "0";
yest_low_baro_time = "----";
yest_precip = 0.00;
yest_high_precip_rate = "0.00";
yest_high_precip_rate_time = "----";
yest_high_soil_temp = 0;
yest_high_soil_temp_time = "----";
yest_low_soil_temp = 0;
yest_low_soil_temp_time = "----";
yest_high_heat_index = 0;
yest_high_heat_index_time = "----";
yest_low_wind_chill = 0;
yest_low_wind_chill_time = "----";
yest_high_sust = 0; 
yest_high_sust_dir = "----";
yest_high_sust_time = "----";
yest_high_gust = 0; 
yest_high_gust_dir = "----";
yest_high_gust_time = "----";

//=========================================================
// Set data status flag to "Missing"					
//=========================================================
data_status = "Missing";

//=========================================================
// End INITIALIZE.JS
//=========================================================
