Skip to content

Instantly share code, notes, and snippets.

@BaldarSilveraxe
Last active December 30, 2015 05:09
Show Gist options
  • Save BaldarSilveraxe/7780922 to your computer and use it in GitHub Desktop.
Save BaldarSilveraxe/7780922 to your computer and use it in GitHub Desktop.
Roll20 Calendar and weather script tables...
//Chronos Record Sheet Attributes Array
roll20API.attribs = [];
roll20API.attribs["Year"] = {name: "Year", current: "00000", max: null};
roll20API.attribs["Month"] = {name: "Month", current: "08", max: null};
roll20API.attribs["Day"] = {name: "Day", current: "01", max: null};
roll20API.attribs["Hour"] = {name: "Hour", current: "00", max: null};
roll20API.attribs["Minute"] = {name: "Minute", current: "00", max: null};
roll20API.attribs["Region"] = {name: "Region", current: "Temperate", max: null};
roll20API.attribs["Terrain"] = {name: "Terrain", current: "Forest", max: null};
roll20API.attribs["Temp High"] = {name: "TempHigh", current: "+085", max: null};
roll20API.attribs["Temp Low"] = {name: "TempLow", current: "+065", max: null};
roll20API.attribs["CodeA1"] = {name: "CodeA1", current: "19", max: null};
roll20API.attribs["WindDir"] = {name: "WindDir", current: "Prevailing", max: null};
roll20API.attribs["WindSpd"] = {name: "WindSpd", current: "+005", max: null};
roll20API.attribs["ChancePrecip"] = {name: "ChancePrecip", current: "N", max: null};
roll20API.attribs["Season"] = {name: "Season", current: "Summer", max: null};
roll20API.attribs["NoteA2"] = {name: "NoteA2", current: "-", max: null};
roll20API.attribs["CodeA3"] = {name: "CodeA3", current: "-", max: null};
roll20API.attribs["CodeA4"] = {name: "CodeA4", current: "-", max: null};
//Chronos Record Sheet Abilities Array
roll20API.abilities = [
{name: "Update", description: "", action: "!updateChronos" },
{name: "Add a Minute", description: "", action: "!addMinuteChronos" },
{name: "Add # of Minutes", description: "", action: "!numMinuteChronos ?{Modifier|15}" },
{name: "Add an Hour", description: "", action: "!addHourChronos" },
{name: "Add # of Hours", description: "", action: "!numHourChronos ?{Modifier|8}" },
{name: "Add a Day", description: "", action: "!addDayChronos" },
{name: "Add # of Days", description: "", action: "!numDayChronos ?{Modifier|7}" },
{name: "Desert", description: "", action: "!terrainChronos Desert" },
{name: "Forest", description: "", action: "!terrainChronos Forest" },
{name: "Hills", description: "", action: "!terrainChronos Hills" },
{name: "Mountains", description: "", action: "!terrainChronos Mountains" },
{name: "Plains", description: "", action: "!terrainChronos Plains" },
{name: "Sea Coast", description: "", action: "!terrainChronos Sea Coast" },
{name: "Arctic", description: "", action: "!regionsChronos Arctic" },
{name: "Subarctic", description: "", action: "!regionsChronos Subarctic" },
{name: "Temperate", description: "", action: "!regionsChronos Temperate" },
{name: "Subtropical", description: "", action: "!regionsChronos Subtropical" },
{name: "Tropical", description: "", action: "!regionsChronos Tropical" }
];
//Month/day Names: "A “Realistic Enough for Fantasy” Calendar" April 25, 2012 Posted by Martin Ralya
//You can change the names and displaymonth
roll20API.calendarYear = [
{month: "01", season: "winter", weeks: "4", days: "28", name: "Frostmoot", displaymonth: "11"},
{month: "02", season: "winter", weeks: "5", days: "35", name: "Deepsnow", displaymonth: "12"},
{month: "03", season: "winter", weeks: "4", days: "28", name: "Winterwane", displaymonth: "01"},
{month: "04", season: "Spring", weeks: "4", days: "28", name: "Rainmoot", displaymonth: "02"},
{month: "05", season: "Spring", weeks: "5", days: "35", name: "Palesun", displaymonth: "03"},
{month: "06", season: "Spring", weeks: "4", days: "28", name: "Highsun", displaymonth: "04"},
{month: "07", season: "Summer", weeks: "5", days: "35", name: "Firemoot", displaymonth: "05"},
{month: "08", season: "Summer", weeks: "4", days: "28", name: "Firewane", displaymonth: "06"},
{month: "09", season: "Summer", weeks: "4", days: "28", name: "Lowsun", displaymonth: "07"},
{month: "10", season: "Fall", weeks: "4", days: "28", name: "Redfall", displaymonth: "08"},
{month: "11", season: "Fall", weeks: "5", days: "35", name: "Snowmoot", displaymonth: "09"},
{month: "12", season: "Fall", weeks: "4", days: "28", name: "Fellnight", displaymonth: "10"}
];
//Month/day Names: "A “Realistic Enough for Fantasy” Calendar" April 25, 2012 Posted by Martin Ralya
//You can change the names
roll20API.weekDays = [
{weekdayValue: "1", name: "Moonday"},
{weekdayValue: "2", name: "Towerday"},
{weekdayValue: "3", name: "Wineday"},
{weekdayValue: "4", name: "Thunderday"},
{weekdayValue: "5", name: "Fireday"},
{weekdayValue: "6", name: "Swordsday"},
{weekdayValue: "7", name: "Saintsday"}
];
//Based on the work by Kim Mohan in the Wilderness Survival Guide
roll20API.TempVarA1 = [
{regions: "Arctic", terrain: "Desert", month: "01", season: "Winter", low: "1", mean: "2", high: "7", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "01", season: "Winter", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "01", season: "Winter", low: "1", mean: "2", high: "5", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "01", season: "Winter", low: "1", mean: "2", high: "5", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Plains", month: "01", season: "Winter", low: "1", mean: "2", high: "7", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Sea Coast", month: "01", season: "Winter", low: "1", mean: "3", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Desert", month: "01", season: "Winter", low: "1", mean: "4", high: "9", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "01", season: "Winter", low: "1", mean: "5", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "01", season: "Winter", low: "1", mean: "4", high: "9", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "01", season: "Winter", low: "1", mean: "3", high: "9", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Subarctic", terrain: "Plains", month: "01", season: "Winter", low: "1", mean: "4", high: "9", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Sea Coast", month: "01", season: "Winter", low: "2", mean: "6", high: "11", rain_a: "-", rain_b: "T", rain_c: "T", A: "A", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "01", season: "Winter", low: "11", mean: "13", high: "19", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "01", season: "Winter", low: "3", mean: "6", high: "12", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "01", season: "Winter", low: "2", mean: "9", high: "12", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "01", season: "Winter", low: "1", mean: "9", high: "12", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "D"},
{regions: "Temperate", terrain: "Plains", month: "01", season: "Winter", low: "2", mean: "8", high: "13", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "01", season: "Winter", low: "5", mean: "10", high: "13", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "01", season: "Winter", low: "12", mean: "16", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "01", season: "Winter", low: "12", mean: "20", high: "21", rain_a: "M", rain_b: "H", rain_c: "H", A: "X", B: "A", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "01", season: "Winter", low: "11", mean: "14", high: "17", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Mountains", month: "01", season: "Winter", low: "11", mean: "13", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Plains", month: "01", season: "Winter", low: "12", mean: "14", high: "18", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "01", season: "Winter", low: "12", mean: "13", high: "21", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "01", season: "Winter", low: "16", mean: "18", high: "21", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "01", season: "Winter", low: "13", mean: "21", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "01", season: "Winter", low: "13", mean: "16", high: "18", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "01", season: "Winter", low: "13", mean: "16", high: "18", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "01", season: "Winter", low: "13", mean: "16", high: "18", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "01", season: "Winter", low: "16", mean: "19", high: "21", rain_a: "-", rain_b: "T", rain_c: "-", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "02", season: "Winter", low: "1", mean: "2", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "02", season: "Winter", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "02", season: "Winter", low: "1", mean: "2", high: "4", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "02", season: "Winter", low: "1", mean: "2", high: "4", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Plains", month: "02", season: "Winter", low: "1", mean: "2", high: "8", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Sea Coast", month: "02", season: "Winter", low: "1", mean: "2", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Desert", month: "02", season: "Winter", low: "1", mean: "4", high: "10", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "02", season: "Winter", low: "1", mean: "5", high: "9", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "02", season: "Winter", low: "1", mean: "4", high: "9", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "02", season: "Winter", low: "1", mean: "4", high: "9", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Subarctic", terrain: "Plains", month: "02", season: "Winter", low: "1", mean: "4", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Sea Coast", month: "02", season: "Winter", low: "2", mean: "7", high: "11", rain_a: "-", rain_b: "T", rain_c: "T", A: "A", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "02", season: "Winter", low: "11", mean: "13", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "02", season: "Winter", low: "2", mean: "6", high: "11", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "02", season: "Winter", low: "3", mean: "10", high: "13", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "02", season: "Winter", low: "2", mean: "9", high: "13", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "D"},
{regions: "Temperate", terrain: "Plains", month: "02", season: "Winter", low: "3", mean: "8", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "02", season: "Winter", low: "6", mean: "11", high: "14", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "02", season: "Winter", low: "12", mean: "16", high: "21", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "02", season: "Winter", low: "12", mean: "20", high: "22", rain_a: "M", rain_b: "H", rain_c: "H", A: "X", B: "A", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "02", season: "Winter", low: "11", mean: "15", high: "18", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Mountains", month: "02", season: "Winter", low: "11", mean: "13", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Plains", month: "02", season: "Winter", low: "11", mean: "15", high: "19", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "02", season: "Winter", low: "11", mean: "13", high: "22", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "02", season: "Winter", low: "16", mean: "19", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "02", season: "Winter", low: "12", mean: "21", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "02", season: "Winter", low: "14", mean: "16", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "02", season: "Winter", low: "14", mean: "16", high: "19", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "02", season: "Winter", low: "14", mean: "17", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "02", season: "Winter", low: "16", mean: "19", high: "22", rain_a: "-", rain_b: "T", rain_c: "-", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "03", season: "Winter", low: "1", mean: "3", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "03", season: "Winter", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "03", season: "Winter", low: "1", mean: "3", high: "6", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "03", season: "Winter", low: "1", mean: "3", high: "6", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Plains", month: "03", season: "Winter", low: "1", mean: "3", high: "8", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Sea Coast", month: "03", season: "Winter", low: "1", mean: "3", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Desert", month: "03", season: "Winter", low: "2", mean: "5", high: "10", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "03", season: "Winter", low: "2", mean: "7", high: "11", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "03", season: "Winter", low: "2", mean: "6", high: "10", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "03", season: "Winter", low: "1", mean: "6", high: "10", rain_a: "-", rain_b: "T", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Subarctic", terrain: "Plains", month: "03", season: "Winter", low: "2", mean: "5", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Sea Coast", month: "03", season: "Winter", low: "3", mean: "8", high: "11", rain_a: "-", rain_b: "T", rain_c: "T", A: "A", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "03", season: "Winter", low: "12", mean: "13", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "03", season: "Winter", low: "5", mean: "11", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "03", season: "Winter", low: "5", mean: "11", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "03", season: "Winter", low: "3", mean: "10", high: "14", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "D"},
{regions: "Temperate", terrain: "Plains", month: "03", season: "Winter", low: "4", mean: "11", high: "17", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "03", season: "Winter", low: "9", mean: "11", high: "17", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "03", season: "Winter", low: "13", mean: "19", high: "23", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "03", season: "Winter", low: "13", mean: "20", high: "22", rain_a: "M", rain_b: "H", rain_c: "H", A: "X", B: "A", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "03", season: "Winter", low: "12", mean: "17", high: "21", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Mountains", month: "03", season: "Winter", low: "12", mean: "16", high: "19", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Plains", month: "03", season: "Winter", low: "13", mean: "18", high: "21", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "03", season: "Winter", low: "11", mean: "15", high: "23", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "03", season: "Winter", low: "16", mean: "20", high: "23", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "03", season: "Winter", low: "13", mean: "21", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "03", season: "Winter", low: "14", mean: "18", high: "20", rain_a: "-", rain_b: "T", rain_c: "-", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "03", season: "Winter", low: "14", mean: "17", high: "20", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "03", season: "Winter", low: "14", mean: "18", high: "21", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "03", season: "Winter", low: "15", mean: "20", high: "23", rain_a: "-", rain_b: "T", rain_c: "-", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "04", season: "Spring", low: "1", mean: "5", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "04", season: "Spring", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "04", season: "Spring", low: "1", mean: "4", high: "7", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Mountains", month: "04", season: "Spring", low: "1", mean: "4", high: "7", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "04", season: "Spring", low: "1", mean: "5", high: "8", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "M"},
{regions: "Arctic", terrain: "Sea Coast", month: "04", season: "Spring", low: "1", mean: "5", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "04", season: "Spring", low: "3", mean: "7", high: "10", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "04", season: "Spring", low: "4", mean: "10", high: "12", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "04", season: "Spring", low: "3", mean: "7", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Mountains", month: "04", season: "Spring", low: "2", mean: "8", high: "12", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Plains", month: "04", season: "Spring", low: "3", mean: "7", high: "10", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "04", season: "Spring", low: "4", mean: "10", high: "13", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "04", season: "Spring", low: "13", mean: "14", high: "23", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "04", season: "Spring", low: "8", mean: "12", high: "16", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "04", season: "Spring", low: "9", mean: "12", high: "18", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "T"},
{regions: "Temperate", terrain: "Mountains", month: "04", season: "Spring", low: "5", mean: "11", high: "17", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "04", season: "Spring", low: "7", mean: "12", high: "19", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "T", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "04", season: "Spring", low: "11", mean: "12", high: "19", rain_a: "T", rain_b: "M", rain_c: "L", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "04", season: "Spring", low: "14", mean: "20", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "04", season: "Spring", low: "14", mean: "20", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Hills", month: "04", season: "Spring", low: "13", mean: "19", high: "22", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "T"},
{regions: "Subtropical", terrain: "Mountains", month: "04", season: "Spring", low: "12", mean: "16", high: "20", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "04", season: "Spring", low: "14", mean: "19", high: "24", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "G", C: "Z", D: "T"},
{regions: "Subtropical", terrain: "Sea Coast", month: "04", season: "Spring", low: "12", mean: "16", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "04", season: "Spring", low: "16", mean: "21", high: "24", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "04", season: "Spring", low: "15", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "M"},
{regions: "Tropical", terrain: "Hills", month: "04", season: "Spring", low: "16", mean: "18", high: "21", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "04", season: "Spring", low: "15", mean: "17", high: "20", rain_a: "M", rain_b: "H", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "04", season: "Spring", low: "16", mean: "18", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "04", season: "Spring", low: "17", mean: "20", high: "24", rain_a: "L", rain_b: "D", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "05", season: "Spring", low: "3", mean: "7", high: "11", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "05", season: "Spring", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "05", season: "Spring", low: "2", mean: "5", high: "9", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Mountains", month: "05", season: "Spring", low: "2", mean: "5", high: "9", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "05", season: "Spring", low: "3", mean: "7", high: "11", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "M"},
{regions: "Arctic", terrain: "Sea Coast", month: "05", season: "Spring", low: "3", mean: "7", high: "11", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "05", season: "Spring", low: "6", mean: "11", high: "13", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "05", season: "Spring", low: "8", mean: "11", high: "14", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "05", season: "Spring", low: "6", mean: "11", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Mountains", month: "05", season: "Spring", low: "5", mean: "10", high: "13", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Plains", month: "05", season: "Spring", low: "6", mean: "11", high: "13", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "05", season: "Spring", low: "8", mean: "11", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "05", season: "Spring", low: "13", mean: "16", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "05", season: "Spring", low: "11", mean: "14", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "05", season: "Spring", low: "10", mean: "15", high: "20", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "T"},
{regions: "Temperate", terrain: "Mountains", month: "05", season: "Spring", low: "6", mean: "12", high: "19", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "05", season: "Spring", low: "11", mean: "14", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "T", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "05", season: "Spring", low: "11", mean: "13", high: "20", rain_a: "T", rain_b: "M", rain_c: "L", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "05", season: "Spring", low: "15", mean: "20", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "05", season: "Spring", low: "14", mean: "20", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Hills", month: "05", season: "Spring", low: "14", mean: "20", high: "23", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "T"},
{regions: "Subtropical", terrain: "Mountains", month: "05", season: "Spring", low: "13", mean: "17", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "05", season: "Spring", low: "18", mean: "22", high: "24", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "G", C: "Z", D: "T"},
{regions: "Subtropical", terrain: "Sea Coast", month: "05", season: "Spring", low: "13", mean: "17", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "05", season: "Spring", low: "17", mean: "22", high: "25", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "05", season: "Spring", low: "15", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "M"},
{regions: "Tropical", terrain: "Hills", month: "05", season: "Spring", low: "16", mean: "20", high: "24", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "05", season: "Spring", low: "15", mean: "17", high: "21", rain_a: "M", rain_b: "H", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "05", season: "Spring", low: "18", mean: "23", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "05", season: "Spring", low: "17", mean: "20", high: "24", rain_a: "L", rain_b: "D", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "06", season: "Spring", low: "6", mean: "10", high: "12", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "06", season: "Spring", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "06", season: "Spring", low: "3", mean: "6", high: "9", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Mountains", month: "06", season: "Spring", low: "3", mean: "6", high: "9", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "06", season: "Spring", low: "6", mean: "10", high: "12", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "M"},
{regions: "Arctic", terrain: "Sea Coast", month: "06", season: "Spring", low: "6", mean: "10", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "06", season: "Spring", low: "10", mean: "12", high: "14", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "06", season: "Spring", low: "10", mean: "12", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Hills", month: "06", season: "Spring", low: "10", mean: "12", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "G", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Mountains", month: "06", season: "Spring", low: "9", mean: "11", high: "13", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Plains", month: "06", season: "Spring", low: "10", mean: "12", high: "14", rain_a: "T", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "06", season: "Spring", low: "10", mean: "12", high: "18", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "06", season: "Spring", low: "16", mean: "16", high: "26", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "06", season: "Spring", low: "13", mean: "16", high: "22", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "06", season: "Spring", low: "10", mean: "17", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "T"},
{regions: "Temperate", terrain: "Mountains", month: "06", season: "Spring", low: "11", mean: "15", high: "22", rain_a: "-", rain_b: "M", rain_c: "L", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "06", season: "Spring", low: "12", mean: "16", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "T", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "06", season: "Spring", low: "12", mean: "15", high: "23", rain_a: "T", rain_b: "M", rain_c: "L", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "06", season: "Spring", low: "18", mean: "22", high: "25", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "06", season: "Spring", low: "16", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Hills", month: "06", season: "Spring", low: "15", mean: "21", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "T"},
{regions: "Subtropical", terrain: "Mountains", month: "06", season: "Spring", low: "14", mean: "17", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "06", season: "Spring", low: "19", mean: "23", high: "25", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "G", C: "Z", D: "T"},
{regions: "Subtropical", terrain: "Sea Coast", month: "06", season: "Spring", low: "13", mean: "19", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "06", season: "Spring", low: "20", mean: "23", high: "26", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "06", season: "Spring", low: "17", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "M"},
{regions: "Tropical", terrain: "Hills", month: "06", season: "Spring", low: "17", mean: "21", high: "25", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Mountains", month: "06", season: "Spring", low: "15", mean: "17", high: "21", rain_a: "M", rain_b: "H", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "06", season: "Spring", low: "20", mean: "23", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Sea Coast", month: "06", season: "Spring", low: "18", mean: "20", high: "25", rain_a: "L", rain_b: "D", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Arctic", terrain: "Desert", month: "07", season: "Summer", low: "10", mean: "11", high: "14", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "07", season: "Summer", low: "-", mean: "-", high: "-" , rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "07", season: "Summer", low: "4", mean: "7", high: "12", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "07", season: "Summer", low: "4", mean: "7", high: "12", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "M", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "07", season: "Summer", low: "10", mean: "11", high: "14", rain_a: "-", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "07", season: "Summer", low: "10", mean: "11", high: "16", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "07", season: "Summer", low: "11", mean: "13", high: "17", rain_a: "-", rain_b: "-", rain_c: "T", A: "A", B: "S", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "07", season: "Summer", low: "11", mean: "13", high: "18", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "07", season: "Summer", low: "10", mean: "13", high: "16", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "07", season: "Summer", low: "10", mean: "12", high: "14", rain_a: "T", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "07", season: "Summer", low: "11", mean: "13", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "Z", B: "A", C: "Z", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "07", season: "Summer", low: "11", mean: "13", high: "18", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "07", season: "Summer", low: "21", mean: "25", high: "26", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "07", season: "Summer", low: "13", mean: "19", high: "24", rain_a: "L", rain_b: "M", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "07", season: "Summer", low: "12", mean: "20", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "07", season: "Summer", low: "12", mean: "17", high: "24", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "07", season: "Summer", low: "13", mean: "19", high: "25", rain_a: "-", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "07", season: "Summer", low: "13", mean: "16", high: "24", rain_a: "L", rain_b: "L", rain_c: "T", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "07", season: "Summer", low: "20", mean: "24", high: "26", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "07", season: "Summer", low: "16", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "07", season: "Summer", low: "16", mean: "21", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "07", season: "Summer", low: "14", mean: "16", high: "20", rain_a: "L", rain_b: "M", rain_c: "M", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "07", season: "Summer", low: "20", mean: "23", high: "26", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "07", season: "Summer", low: "14", mean: "19", high: "25", rain_a: "L", rain_b: "D", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "07", season: "Summer", low: "22", mean: "25", high: "26", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "07", season: "Summer", low: "17", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "07", season: "Summer", low: "19", mean: "23", high: "26", rain_a: "T", rain_b: "M", rain_c: "L", A: "G", B: "X", C: "D", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "07", season: "Summer", low: "14", mean: "16", high: "20", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "07", season: "Summer", low: "20", mean: "23", high: "26", rain_a: "M", rain_b: "H", rain_c: "M", A: "S", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "07", season: "Summer", low: "18", mean: "20", high: "24", rain_a: "H", rain_b: "D", rain_c: "D", A: "C", B: "X", C: "M", D: "M"},
{regions: "Arctic", terrain: "Desert", month: "08", season: "Summer", low: "10", mean: "11", high: "13", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "08", season: "Summer", low: "-", mean: "-", high: "-" , rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "08", season: "Summer", low: "4", mean: "7", high: "11", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "08", season: "Summer", low: "4", mean: "7", high: "11", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "M", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "08", season: "Summer", low: "10", mean: "11", high: "13", rain_a: "-", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "08", season: "Summer", low: "10", mean: "11", high: "14", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "08", season: "Summer", low: "10", mean: "13", high: "17", rain_a: "-", rain_b: "-", rain_c: "T", A: "A", B: "S", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "08", season: "Summer", low: "10", mean: "13", high: "18", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "08", season: "Summer", low: "9", mean: "13", high: "16", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "08", season: "Summer", low: "9", mean: "13", high: "15", rain_a: "T", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "08", season: "Summer", low: "10", mean: "13", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "Z", B: "A", C: "Z", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "08", season: "Summer", low: "11", mean: "13", high: "18", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "08", season: "Summer", low: "21", mean: "25", high: "26", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "08", season: "Summer", low: "13", mean: "19", high: "24", rain_a: "L", rain_b: "M", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "08", season: "Summer", low: "12", mean: "20", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "08", season: "Summer", low: "11", mean: "17", high: "23", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "08", season: "Summer", low: "13", mean: "19", high: "25", rain_a: "-", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "08", season: "Summer", low: "13", mean: "16", high: "23", rain_a: "L", rain_b: "L", rain_c: "T", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "08", season: "Summer", low: "20", mean: "24", high: "26", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "08", season: "Summer", low: "16", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "08", season: "Summer", low: "16", mean: "21", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "08", season: "Summer", low: "14", mean: "15", high: "18", rain_a: "L", rain_b: "M", rain_c: "M", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "08", season: "Summer", low: "20", mean: "23", high: "26", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "08", season: "Summer", low: "14", mean: "19", high: "25", rain_a: "L", rain_b: "D", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "08", season: "Summer", low: "22", mean: "25", high: "26", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "08", season: "Summer", low: "17", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "08", season: "Summer", low: "19", mean: "23", high: "26", rain_a: "T", rain_b: "M", rain_c: "L", A: "G", B: "X", C: "D", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "08", season: "Summer", low: "14", mean: "16", high: "20", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "08", season: "Summer", low: "20", mean: "23", high: "26", rain_a: "M", rain_b: "H", rain_c: "M", A: "S", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "08", season: "Summer", low: "18", mean: "20", high: "24", rain_a: "H", rain_b: "D", rain_c: "D", A: "C", B: "X", C: "M", D: "M"},
{regions: "Arctic", terrain: "Desert", month: "09", season: "Summer", low: "6", mean: "8", high: "11", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "09", season: "Summer", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "09", season: "Summer", low: "3", mean: "6", high: "10", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "09", season: "Summer", low: "3", mean: "6", high: "10", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "M", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "09", season: "Summer", low: "6", mean: "8", high: "11", rain_a: "-", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "09", season: "Summer", low: "5", mean: "9", high: "12", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "09", season: "Summer", low: "7", mean: "11", high: "17", rain_a: "-", rain_b: "-", rain_c: "T", A: "A", B: "S", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "09", season: "Summer", low: "9", mean: "11", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "09", season: "Summer", low: "7", mean: "11", high: "13", rain_a: "T", rain_b: "L", rain_c: "L", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "09", season: "Summer", low: "7", mean: "11", high: "13", rain_a: "T", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "Z", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "09", season: "Summer", low: "7", mean: "11", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "Z", B: "A", C: "Z", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "09", season: "Summer", low: "10", mean: "12", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "09", season: "Summer", low: "17", mean: "23", high: "25", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "09", season: "Summer", low: "12", mean: "16", high: "22", rain_a: "L", rain_b: "M", rain_c: "M", A: "G", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "09", season: "Summer", low: "11", mean: "17", high: "23", rain_a: "L", rain_b: "H", rain_c: "M", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "09", season: "Summer", low: "9", mean: "14", high: "21", rain_a: "-", rain_b: "L", rain_c: "T", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "09", season: "Summer", low: "11", mean: "16", high: "23", rain_a: "-", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "09", season: "Summer", low: "12", mean: "15", high: "23", rain_a: "L", rain_b: "L", rain_c: "T", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "09", season: "Summer", low: "18", mean: "21", high: "25", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "09", season: "Summer", low: "15", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "09", season: "Summer", low: "14", mean: "19", high: "24", rain_a: "L", rain_b: "H", rain_c: "M", A: "X", B: "G", C: "D", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "09", season: "Summer", low: "12", mean: "15", high: "18", rain_a: "L", rain_b: "M", rain_c: "M", A: "X", B: "G", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "09", season: "Summer", low: "19", mean: "22", high: "25", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "09", season: "Summer", low: "13", mean: "18", high: "24", rain_a: "L", rain_b: "D", rain_c: "M", A: "C", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "09", season: "Summer", low: "21", mean: "24", high: "25", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "09", season: "Summer", low: "17", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "09", season: "Summer", low: "19", mean: "22", high: "25", rain_a: "T", rain_b: "M", rain_c: "L", A: "G", B: "X", C: "D", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "09", season: "Summer", low: "14", mean: "16", high: "20", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "G", C: "Z", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "09", season: "Summer", low: "20", mean: "23", high: "25", rain_a: "M", rain_b: "H", rain_c: "M", A: "S", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "09", season: "Summer", low: "18", mean: "20", high: "23", rain_a: "H", rain_b: "D", rain_c: "D", A: "C", B: "X", C: "M", D: "M"},
{regions: "Arctic", terrain: "Desert", month: "10", season: "Fall", low: "4", mean: "7", high: "10", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "10", season: "Fall", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "10", season: "Fall", low: "3", mean: "5", high: "8", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "10", season: "Fall", low: "3", mean: "5", high: "8", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "10", season: "Fall", low: "4", mean: "7", high: "10", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "10", season: "Fall", low: "3", mean: "7", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "10", season: "Fall", low: "6", mean: "8", high: "13", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "10", season: "Fall", low: "5", mean: "10", high: "12", rain_a: "T", rain_b: "M", rain_c: "T", A: "A", B: "X", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "10", season: "Fall", low: "4", mean: "10", high: "12", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "10", season: "Fall", low: "4", mean: "10", high: "12", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "10", season: "Fall", low: "6", mean: "8", high: "13", rain_a: "T", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "10", season: "Fall", low: "5", mean: "11", high: "13", rain_a: "-", rain_b: "M", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "10", season: "Fall", low: "14", mean: "19", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "S", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "10", season: "Fall", low: "10", mean: "14", high: "18", rain_a: "L", rain_b: "M", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "10", season: "Fall", low: "10", mean: "14", high: "20", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "10", season: "Fall", low: "5", mean: "12", high: "19", rain_a: "-", rain_b: "L", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "10", season: "Fall", low: "7", mean: "12", high: "19", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "10", season: "Fall", low: "11", mean: "12", high: "20", rain_a: "L", rain_b: "L", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "10", season: "Fall", low: "16", mean: "21", high: "25", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "10", season: "Fall", low: "14", mean: "21", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "10", season: "Fall", low: "13", mean: "17", high: "22", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "10", season: "Fall", low: "12", mean: "14", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "10", season: "Fall", low: "17", mean: "22", high: "25", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "10", season: "Fall", low: "12", mean: "17", high: "23", rain_a: "-", rain_b: "D", rain_c: "T", A: "C", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "10", season: "Fall", low: "21", mean: "22", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "10", season: "Fall", low: "16", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "10", season: "Fall", low: "17", mean: "20", high: "23", rain_a: "-", rain_b: "M", rain_c: "-", A: "G", B: "G", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "10", season: "Fall", low: "14", mean: "16", high: "19", rain_a: "M", rain_b: "M", rain_c: "H", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "10", season: "Fall", low: "18", mean: "22", high: "25", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "10", season: "Fall", low: "17", mean: "19", high: "22", rain_a: "-", rain_b: "D", rain_c: "T", A: "X", B: "A", C: "Z", D: "M"},
{regions: "Arctic", terrain: "Desert", month: "11", season: "Fall", low: "1", mean: "4", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "11", season: "Fall", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "11", season: "Fall", low: "2", mean: "5", high: "8", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "11", season: "Fall", low: "2", mean: "5", high: "8", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "11", season: "Fall", low: "1", mean: "4", high: "8", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "11", season: "Fall", low: "1", mean: "5", high: "9", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "11", season: "Fall", low: "3", mean: "5", high: "12", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "11", season: "Fall", low: "2", mean: "8", high: "11", rain_a: "T", rain_b: "M", rain_c: "T", A: "A", B: "X", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "11", season: "Fall", low: "2", mean: "7", high: "11", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "11", season: "Fall", low: "2", mean: "6", high: "11", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "11", season: "Fall", low: "3", mean: "5", high: "12", rain_a: "T", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "11", season: "Fall", low: "3", mean: "8", high: "12", rain_a: "-", rain_b: "M", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "11", season: "Fall", low: "12", mean: "18", high: "24", rain_a: "-", rain_b: "T", rain_c: "-", A: "S", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "11", season: "Fall", low: "6", mean: "10", high: "12", rain_a: "L", rain_b: "M", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "11", season: "Fall", low: "6", mean: "11", high: "16", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "11", season: "Fall", low: "3", mean: "11", high: "18", rain_a: "-", rain_b: "L", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "11", season: "Fall", low: "5", mean: "11", high: "17", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "11", season: "Fall", low: "7", mean: "11", high: "16", rain_a: "L", rain_b: "L", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "11", season: "Fall", low: "14", mean: "19", high: "24", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "11", season: "Fall", low: "13", mean: "19", high: "22", rain_a: "M", rain_b: "D", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "11", season: "Fall", low: "12", mean: "16", high: "19", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "11", season: "Fall", low: "12", mean: "14", high: "17", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "11", season: "Fall", low: "13", mean: "18", high: "21", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "11", season: "Fall", low: "11", mean: "15", high: "21", rain_a: "-", rain_b: "D", rain_c: "T", A: "C", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "11", season: "Fall", low: "18", mean: "21", high: "23", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "11", season: "Fall", low: "15", mean: "21", high: "24", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "11", season: "Fall", low: "15", mean: "18", high: "21", rain_a: "-", rain_b: "M", rain_c: "-", A: "G", B: "G", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "11", season: "Fall", low: "13", mean: "16", high: "19", rain_a: "M", rain_b: "M", rain_c: "H", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "11", season: "Fall", low: "16", mean: "19", high: "23", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "11", season: "Fall", low: "17", mean: "19", high: "22", rain_a: "-", rain_b: "D", rain_c: "T", A: "X", B: "A", C: "Z", D: "M"},
{regions: "Arctic", terrain: "Desert", month: "12", season: "Fall", low: "1", mean: "2", high: "8", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Forest", month: "12", season: "Fall", low: "-", mean: "-", high: "-", rain_a: "-", rain_b: "-", rain_c: "-", A: "-", B: "-", C: "-", D: "-"},
{regions: "Arctic", terrain: "Hills", month: "12", season: "Fall", low: "1", mean: "3", high: "5", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "D"},
{regions: "Arctic", terrain: "Mountains", month: "12", season: "Fall", low: "1", mean: "3", high: "5", rain_a: "-", rain_b: "-", rain_c: "T", A: "G", B: "A", C: "D", D: "M"},
{regions: "Arctic", terrain: "Plains", month: "12", season: "Fall", low: "1", mean: "2", high: "8", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Arctic", terrain: "Sea Coast", month: "12", season: "Fall", low: "1", mean: "3", high: "9", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "Z"},
{regions: "Subarctic", terrain: "Desert", month: "12", season: "Fall", low: "1", mean: "3", high: "9", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "A", C: "D", D: "D"},
{regions: "Subarctic", terrain: "Forest", month: "12", season: "Fall", low: "1", mean: "6", high: "10", rain_a: "T", rain_b: "M", rain_c: "T", A: "A", B: "X", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Hills", month: "12", season: "Fall", low: "1", mean: "4", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Mountains", month: "12", season: "Fall", low: "1", mean: "4", high: "10", rain_a: "-", rain_b: "L", rain_c: "T", A: "G", B: "A", C: "M", D: "D"},
{regions: "Subarctic", terrain: "Plains", month: "12", season: "Fall", low: "1", mean: "3", high: "9", rain_a: "T", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subarctic", terrain: "Sea Coast", month: "12", season: "Fall", low: "1", mean: "6", high: "11", rain_a: "-", rain_b: "M", rain_c: "T", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Desert", month: "12", season: "Fall", low: "11", mean: "13", high: "18", rain_a: "-", rain_b: "T", rain_c: "-", A: "S", B: "G", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Forest", month: "12", season: "Fall", low: "4", mean: "10", high: "12", rain_a: "L", rain_b: "M", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Temperate", terrain: "Hills", month: "12", season: "Fall", low: "3", mean: "10", high: "13", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Mountains", month: "12", season: "Fall", low: "2", mean: "10", high: "12", rain_a: "-", rain_b: "L", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Plains", month: "12", season: "Fall", low: "3", mean: "10", high: "13", rain_a: "T", rain_b: "H", rain_c: "L", A: "X", B: "A", C: "D", D: "Z"},
{regions: "Temperate", terrain: "Sea Coast", month: "12", season: "Fall", low: "5", mean: "11", high: "13", rain_a: "L", rain_b: "L", rain_c: "M", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Desert", month: "12", season: "Fall", low: "13", mean: "16", high: "23", rain_a: "-", rain_b: "-", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Forest", month: "12", season: "Fall", low: "12", mean: "19", high: "22", rain_a: "M", rain_b: "D", rain_c: "H", A: "A", B: "X", C: "M", D: "Z"},
{regions: "Subtropical", terrain: "Hills", month: "12", season: "Fall", low: "11", mean: "14", high: "18", rain_a: "T", rain_b: "H", rain_c: "L", A: "A", B: "X", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Mountains", month: "12", season: "Fall", low: "11", mean: "13", high: "16", rain_a: "T", rain_b: "M", rain_c: "L", A: "X", B: "A", C: "Z", D: "M"},
{regions: "Subtropical", terrain: "Plains", month: "12", season: "Fall", low: "12", mean: "16", high: "19", rain_a: "-", rain_b: "M", rain_c: "T", A: "G", B: "A", C: "D", D: "Z"},
{regions: "Subtropical", terrain: "Sea Coast", month: "12", season: "Fall", low: "11", mean: "13", high: "21", rain_a: "-", rain_b: "D", rain_c: "T", A: "C", B: "X", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Desert", month: "12", season: "Fall", low: "17", mean: "19", high: "22", rain_a: "-", rain_b: "T", rain_c: "-", A: "G", B: "S", C: "D", D: "Z"},
{regions: "Tropical", terrain: "Forest", month: "12", season: "Fall", low: "13", mean: "21", high: "23", rain_a: "M", rain_b: "D", rain_c: "H", A: "X", B: "X", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Hills", month: "12", season: "Fall", low: "14", mean: "17", high: "20", rain_a: "-", rain_b: "M", rain_c: "-", A: "G", B: "G", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Mountains", month: "12", season: "Fall", low: "13", mean: "16", high: "19", rain_a: "M", rain_b: "M", rain_c: "H", A: "A", B: "G", C: "M", D: "Z"},
{regions: "Tropical", terrain: "Plains", month: "12", season: "Fall", low: "14", mean: "18", high: "21", rain_a: "L", rain_b: "H", rain_c: "M", A: "G", B: "X", C: "Z", D: "D"},
{regions: "Tropical", terrain: "Sea Coast", month: "12", season: "Fall", low: "16", mean: "18", high: "22", rain_a: "-", rain_b: "D", rain_c: "T", A: "X", B: "A", C: "Z", D: "M"}
];
//Moon and tide table
roll20API.moonTide = [
{month: "01", day:"01", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"03", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"04", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"05", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"06", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"07", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"08", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"09", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"10", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"11", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"12", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "01", day:"13", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "01", day:"14", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "01", day:"15", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"16", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"17", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"18", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "01", day:"19", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"20", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"21", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"22", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "01", day:"23", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"24", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"25", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "01", day:"26", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "01", day:"27", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "01", day:"28", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"01", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"02", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"03", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"04", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"05", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"06", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"07", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"08", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"09", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"10", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"11", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"12", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"13", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"14", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"15", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"16", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"17", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"18", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"19", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"20", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"21", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"22", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"23", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"24", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "02", day:"25", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"26", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"27", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "02", day:"28", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"29", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"30", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"31", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "02", day:"32", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"33", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"34", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "02", day:"35", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"01", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"02", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"03", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"04", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"05", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"06", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"07", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"08", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"09", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"10", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"11", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"12", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"13", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"14", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"15", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"16", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"17", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"18", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"19", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "03", day:"20", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"21", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"22", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "03", day:"23", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"24", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"25", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"26", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "03", day:"27", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "03", day:"28", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"01", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"03", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"04", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"05", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"06", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"07", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"08", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"09", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"10", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"11", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"12", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"13", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"14", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"15", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"16", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"17", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "04", day:"18", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"19", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"20", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"21", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "04", day:"22", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"23", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"24", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "04", day:"25", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"26", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"27", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "04", day:"28", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"01", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"03", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"04", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"05", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"06", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"07", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"08", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"09", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"10", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"11", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"12", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"13", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"14", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"15", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"16", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"17", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"18", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"19", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"20", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"21", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"22", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"23", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "05", day:"24", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"25", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"26", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "05", day:"27", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"28", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"29", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"30", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "05", day:"31", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"32", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"33", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"34", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "05", day:"35", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"01", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"02", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"03", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"04", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"05", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"06", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"07", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"08", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"09", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"10", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"11", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"12", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"13", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"14", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"15", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"16", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"17", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"18", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "06", day:"19", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"20", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"21", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "06", day:"22", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"23", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"24", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"25", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "06", day:"26", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"27", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "06", day:"28", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"01", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"03", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"04", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"05", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"06", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"07", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"08", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"09", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"10", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"11", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"12", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"13", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"14", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "07", day:"15", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "07", day:"16", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "07", day:"17", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"18", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"19", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"20", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "07", day:"21", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"22", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"23", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"24", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "07", day:"25", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"26", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"27", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "07", day:"28", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"01", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"02", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"03", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"04", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"05", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"06", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"07", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"08", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"09", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"10", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"11", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"12", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"13", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"14", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"15", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"16", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"17", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"18", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"19", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"20", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"21", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"22", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"23", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"24", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"25", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"26", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "08", day:"27", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"28", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"29", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "08", day:"30", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"31", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"32", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"33", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "08", day:"34", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "08", day:"35", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"01", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"03", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"04", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"05", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"06", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"07", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"08", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"09", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"10", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"11", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"12", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"13", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"14", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"15", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"16", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"17", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "09", day:"18", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"19", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"20", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"21", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "09", day:"22", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"23", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"24", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "09", day:"25", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"26", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"27", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "09", day:"28", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "10", day:"01", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"02", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"03", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"04", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"05", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"06", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"07", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"08", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"09", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"10", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"11", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"12", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"13", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "10", day:"14", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "10", day:"15", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "10", day:"16", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"17", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"18", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"19", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "10", day:"20", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"21", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"22", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"23", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "10", day:"24", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"25", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"26", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "10", day:"27", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "10", day:"28", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"01", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"02", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"03", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"04", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"05", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"06", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"07", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"08", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"09", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"10", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"11", moon: "First Quarter", tide: "Neap Tide", lowtide: "5 ", hightide: "07"},
{month: "11", day:"12", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "5 ", hightide: "07"},
{month: "11", day:"13", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "5 ", hightide: "07"},
{month: "11", day:"14", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "5 ", hightide: "07"},
{month: "11", day:"15", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"16", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"17", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"18", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"19", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"20", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"21", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"22", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"23", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"24", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"25", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "11", day:"26", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "11", day:"27", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "11", day:"28", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "11", day:"29", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"30", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"31", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"32", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "11", day:"33", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"34", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "11", day:"35", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"01", moon: "Waxing Gibbous", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"02", moon: "Waxing Gibbous", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"03", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"04", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"05", moon: "First Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"06", moon: "First Quarter", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"07", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"08", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"09", moon: "Waxing Crescent", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"10", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"11", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"12", moon: "New Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"13", moon: "New Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"14", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"15", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"16", moon: "Waning Crescent", tide: "Spring Tide", lowtide: "15", hightide: "18"},
{month: "12", day:"17", moon: "Waning Crescent", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"18", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"19", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"20", moon: "Third Quarter", tide: "Tide", lowtide: "13", hightide: "11"},
{month: "12", day:"21", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"22", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"23", moon: "Waning gibbous", tide: "Neap Tide", lowtide: "05", hightide: "07"},
{month: "12", day:"24", moon: "Waning gibbous", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"25", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"26", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"27", moon: "Full Moon", tide: "Tide", lowtide: "12", hightide: "11"},
{month: "12", day:"28", moon: "Full Moon", tide: "Spring Tide", lowtide: "15", hightide: "18"}
];
//Tempature look up table
roll20API.TempVarA1code = [
{code: "1", highCode: "-020", lowCode: "-040"},
{code: "2", highCode: "-015", lowCode: "-030"},
{code: "3", highCode: "-005", lowCode: "-020"},
{code: "4", highCode: "+000", lowCode: "-010"},
{code: "5", highCode: "+010", lowCode: "+000"},
{code: "6", highCode: "+018", lowCode: "+010"},
{code: "7", highCode: "+025", lowCode: "+010"},
{code: "8", highCode: "+030", lowCode: "+015"},
{code: "9", highCode: "+035", lowCode: "+015"},
{code: "10", highCode: "+040", lowCode: "+020"},
{code: "11", highCode: "+050", lowCode: "+030"},
{code: "12", highCode: "+060", lowCode: "+040"},
{code: "13", highCode: "+065", lowCode: "+045"},
{code: "14", highCode: "+070", lowCode: "+050"},
{code: "15", highCode: "+070", lowCode: "+055"},
{code: "16", highCode: "+075", lowCode: "+055"},
{code: "17", highCode: "+080", lowCode: "+060"},
{code: "18", highCode: "+080", lowCode: "+065"},
{code: "19", highCode: "+085", lowCode: "+065"},
{code: "20", highCode: "+085", lowCode: "+070"},
{code: "21", highCode: "+090", lowCode: "+070"},
{code: "22", highCode: "+090", lowCode: "+075"},
{code: "23", highCode: "+095", lowCode: "+075"},
{code: "24", highCode: "+100", lowCode: "+080"},
{code: "25", highCode: "+105", lowCode: "+080"},
{code: "26", highCode: "+115", lowCode: "+085"}
];
//Day step table
roll20API.TempVarA2 = [
{dice: "02", step: "-3", precipitation: "Y", windDir: "Very Strong", windSpd: "!!!!", note: "!"},
{dice: "03", step: "-2", precipitation: "N", windDir: "From arctic", windSpd: "+015", note: "-"},
{dice: "04", step: "-2", precipitation: "Y", windDir: "From arctic", windSpd: "+010", note: "-"},
{dice: "05", step: "-1", precipitation: "N", windDir: "Prevailing", windSpd: "+015", note: "-"},
{dice: "06", step: "-1", precipitation: "Y", windDir: "Prevailing", windSpd: "+010", note: "-"},
{dice: "07", step: "+0", precipitation: "S", windDir: "Same", windSpd: "+000", note: "-"},
{dice: "08", step: "+1", precipitation: "Y", windDir: "Prevailing", windSpd: "-010", note: "-"},
{dice: "09", step: "+1", precipitation: "N", windDir: "Prevailing", windSpd: "-010", note: "-"},
{dice: "10", step: "+2", precipitation: "Y", windDir: "From tropics", windSpd: "-010", note: "-"},
{dice: "11", step: "+2", precipitation: "N", windDir: "From tropics", windSpd: "-015", note: "-"},
{dice: "12", step: "+3", precipitation: "Y", windDir: "Very slight", windSpd: "!!!!", note: "!"}
];
//Special Weather tables
roll20API.SpecialLetterCodes = [
{code: "A", name: "Cold Wave",
descrip: "For the next 3-8 days (1d6+2) the temperature will drop and the temperature \
will be -10 degrees colder then shown on any report.\
<br>"
},
{code: "C", name: "Cyclone/Hurricane/Typhoon",
descrip: "One day before a hurricane actually reaches land in a sea coast area, the area \
will be drenched by a lightning storm. A typical lightning storm lasts for 25 minutes, during \
which 3/4 to 1 inch of rain is dropped and the sky is lit up at frequent intervals by bright \
flashes of lightning. As the storm hits a torrential rain will begin , up to 3 inches of rain. \
The wind velocity in a hurricane can be from 80 to 180 mph (1 d6 X 20 + 60), strong enough to \
damage even stone structures. Any characters or creatures not in places of secure shelter when \
the storm hit are in danger of literally being blown away. In addition, the wind of the hurricane \
drives sea water ahead of it, forming a tidal wave that can flood low-lying areas as far as 3 \
miles inland. A hurricane will not move farther than 10 miles inland, but the storm around its \
perimeter will extend at least another 50 miles inland. After spewing forth winds and rain in a \
certain area for six hours, the storm will abruptly subside as the eye passes over the location. \
The sky will clear partially or entirely and wind velocity will drop to practically zero. After \
30 to 60 minutes, the storm will mount to its full fury again as the second half of the disturbance \
passes over the area. Six hours later, the hurricane will have passed, and \"only\" a vigorous \
rainstorm will remain for the next few hours until the storm center moves entirely out of the area.\
<br>"
},
{code: "G", name: "Gale",
descrip: "This is an extremely strong wind, usually ranging from 45 to 70 mph (ld6x5 +40), \
which is almost always accompanied by precipitation. When rain or snow does occur along with \
gale-force winds, the result can be almost as perilous as a hurricane. For a period of 2-7 hours \
(ld6 + l), gale-force winds will never drop below 30 mph and will almost always be 50 mph or \
greater. If the wind velocity was 20 mph or greater on the previous day, then the gale-force winds \
on the current day will range from 50 to 70 mph. If a gale occurs in a desert area, no precipitation \
will fall on the same day; instead, the wind will bring about a severe sandstorm. Also, in an arctic \
or subarctic environment when snow is on the ground, gale-force winds will whip the snow up and \
around, causing conditions similar to those of a severe sandstorm. Very strong winds will pick up \
the loose soil (or snow), and for a period of 2 to 5 hours (ld4+1.) The rapidly moving air will \
be filled with particles that inhibit movement and reduce visibility, and may even cause damage \
to unprotected characters or creatures. A severe sandstorm occurs whenever gale-force winds are \
indicated for a desert environment, or an arctic or subarctic environment where snow is on the \
ground. This condition will last for 2-7 hours (ld6 + l), and only the very hardy or the very \
foolish will attempt to do anything other than seek shelter and wait out the storm. \
<br>"
},
{code: "M", name: "Mist or Fog",
descrip: "The \"calmest\" form of special weather, mist or fog is nevertheless not to be taken \
lightly. It will occur beginning either at sunrise (1-4 on ld6) or sunset (5-6 on ld6) and will last \
for a number of hours equal to the result of this die roll. Fog will be heavy whenever it occurs \
in a sea coast area or in an inland location adjacent to a body of water; in all other locations, \
it will be of moderate intensity. If precipitation occurs on the same day, the rain or snow will \
not fall while the fog condition persists, but it is likely (50% chance, or DM’s choice) that a \
period of precipitation will immediately follow or precede the fog (the former case for a daytime \
fog, the latter for a night-time fog). The effects of fog on movement are covered in the section \
on Encumbrance and Movement; the effects of fog on visibility are covered in the section on Vision \
and Visibility.\
<br>"
},
{code: "S", name: "Sandstorm/Dust Storm/Blowing Snow",
descrip: "This phenomenon occurs in a desert environment where the top layer of soil is loose \
or sandy in consistency, or in a cold environment where the ground is covered by a thick layer of \
loose snow. Regardless of what the result on the Precipitation Table indicates, no precipitation \
will fall on the day that a sandstorm occurs; instead, the very strong winds will pick up the loose \
soil (or snow), and for a period of 2 to 5 hours (ld4+1) the rapidly moving air will be filled with \
particles that inhibit movement and reduce visibility, and may even cause damage to unprotected \
characters or creatures. A severe sandstorm occurs whenever gale-force winds are indicated for a \
desert environment, or an arctic or subarctic environment where snow is on the ground. This condition \
will last for 2-7 hours (ld6 + l), and only the very hardy or the very foolish will attempt \
to do anything other than seek shelter and wait out the storm.\
<br>"
},
{code: "T", name: "Tornado",
descrip: "In terms of the area it directly affects, a tornado is the most dangerous and \
destructive of all natural weather phenomena. The temperature will rise to at least two steps above \
the normal temperature for the area in question. For ld3 hours before tornadoes pass through the area \
the winds will be very strong and heavy precipitation will occur. Then the rain will stop abruptly, \
tapering to nothing or a trace amount within minutes, and in the area immediately around a tornado’s \
path (one- half mile on either side) the wind will drop off to slight or very slight velocity. The \
tornado will come through the area 3d6 minutes after the start of this cessation of activity. During \
this time and for about 30 minutes after the tornado passes, the temperature will drop abruptly by 15 \
degrees or three steps, whichever is greater. After this “cooling-off period,” the temperature will \
begin to rise again until it reaches an appropriate level according to what was predetermined for \
the day. For the rest of the day after a tornado comes through an area, the weather will be calm and \
non-threatening - a strange (and usually welcome) contrast to what has just happened. The path of a \
tornado when it touches the ground is typically one-quarter mile wide and about 15 miles long, and \
most tornadoes travel along the ground at about 40 mph. The whirling vortex of air is distinguishable \
from the surrounding sky, especially near the ground where the cloud contains dirt and debris that it \
has picked up in its rampage across the countryside. Within and around the whirlwind, the velocity of \
the spiralling air ranges from 200 to 300 mph. Because of centrifugal force pushing the air outward \
from the center, the air pressure in the center of the vortex is considerably lower than in the \
surrounding vicinity. Structures that are able to stand up to the high-velocity winds may still be \
destroyed - virtually exploded - when this area of extremely low pressure passes over their location.\
<br>"
},
{code: "X", name: "Extreme Precipitation",
descrip: "<ul>\
<li>Hailstorm: This kind of activity usually occurs during the first ten minutes of a lightning storm, \
but on rare occasions (roll of 1 on ld6) can be a storm in and of itself lasting from 5-10 (ld6+4) \
minutes. Hail consists of lumps of ice, typically no larger than V4 inch in diameter but possibly as \
large as 2 or 3 inches across. When a hailstorm occurs at a temperature of 40 degrees or higher, \
the hail will melt within minutes of hitting the ground. If the hail activity is followed by a \
lightning storm, the pellets will have melted by the time the lightning storm ends.</li>\
<li>Ice/Sleet Storm: Sleet is frozen or nearly frozen rain, formed when snow falls from a high altitude \
and passes through a layer of warmer air on its way to the ground. The warmer air melts the snow crystals \
back into droplets of water, and the water freezes during the remainder of its de- scent. When the sleet \
hits the ground, it will coat anything it touches; by the time the storm passes, stationary and inanimate \
objects may carry a coating of ice up to 1/2 or 3/4 inch thick. Depending on its intensity, an ice storm \
will last from 20 minutes (if it occurs as heavy precipitation) up to two hours (if it occurs as trace \
precipitation). Of course, the longer the storm, the heavier the coating of ice that will result.</li>\
<li>Lightning Storm: A lightning storm, or thunderstorm, can occur as a separate phenomenon in and \
of itself or as the beginning stage of a longer rainstorm. If a lightning storm is indicated for a day \
on which moderate or light precipitation is supposed to fall, then the storm will occur by itself \
(and the moderate or light result is disregarded). If a lightning storm is indicated for a day on which \
heavy or downpour precipitation is supposed to fall, then the storm will occur at the beginning of the \
period of precipitation. A typical lightning storm lasts for 25 minutes, during which 3/4 to 1 inch of \
rain is dropped and the sky is lit up at frequent intervals by bright flashes of lightning. Roughly \
half of all thunderstorms occur within two hours either way of sunrise or sunset.</li>\
<li>Severe Snowstorm: If the normal maximum precipitation for the day in question is moderate, this \
storm will dump 5-10 inches (d6 +4) of snow; if the normal maximum precipitation is heavy, a severe \
snowstorm will cause 7-1 2 inches (1 d6 +6) of accumulation. The snow will come down at the rate of \
1 inch per hour until the indicated accumulation is reached. Wind velocity will be very strong at \
the start of the storm, but will taper off after 1 or 2 hours to a moderate breeze (15-20 mph) at \
best as the storm center be- comes stalled over the area receiving the precipitation.</li>\
</ul>\
<br>"
},
{code: "Z", name: "Heat Wave",
descrip: "For the next 3-8 days (ld6 +2), starting with the day in question, the temperature \
will rise and the temperature will be +10 degrees warmer then shown on any report.\
<br>"
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment