Skip to content

Instantly share code, notes, and snippets.

@oliviac12
Last active December 6, 2016 05:16
Show Gist options
  • Save oliviac12/c5f1e355aab1bf0a6ad9582456fdcf0c to your computer and use it in GitHub Desktop.
Save oliviac12/c5f1e355aab1bf0a6ad9582456fdcf0c to your computer and use it in GitHub Desktop.
SF and NY weather
height: 800

This is an example from my blog on Creating a smooth color legend with an SVG gradient. The color legend below is just a simple rectangle filled with an SVG gradient. But in for this particular data it works well, because you are mostly interested in trends, to get a general sense of then numbers. Therefore, it is not imperative to be able to read the exact value that each color represents. And in those cases, when you work with a quantitative color scale, I prefer to use smooth color legends.

This visual is a recreation of a weather radial of Boston temperatures in 2015. The original idea (and beautiful poster) can be found on weather-radials.com. I took the data from wunderground.com and took out the minimum, average and maximum temperature. Each bar represents one day and the bar runs from the minimum to maximum temperature. The bar is colored according to the average temperature of that day and this is what the legend below the weather radial refers to.

You can other SVG legend gradient examples here:

forked from nbremer's block: Linear SVG Gradient - Weather Radial

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- D3.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.0/d3.min.js" charset="utf-8"></script>
<!-- Google Font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
<script src="weatherSF.js"></script>
<style>
body {
font-size: 10px;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
fill: #8C8C8C;
text-align: center;
}
.title {
font-size: 28px;
fill: #4F4F4F;
font-weight: 300;
text-anchor: start;
}
.subtitle {
font-size: 14px;
fill: #AAAAAA;
font-weight: 300;
text-anchor: start;
}
.credit {
font-size: 12px;
fill: #AAAAAA;
font-weight: 300;
text-anchor: start;
}
.axis path,
.axis tick,
.axis line {
fill: none;
stroke: none;
}
.axis text {
font-size: 12px;
fill: #AAAAAA;
font-weight: 400;
}
.legendTitle {
font-size: 14px;
fill: #4F4F4F;
font-weight: 300;
}
.january {
font-size: 14px;
text-anchor: start;
font-weight: 300;
fill: #AAAAAA;
}
.yearLine {
stroke: #AAAAAA;
}
.axisText {
fill: #C4C4C4;
font-size: 11px;
font-weight: 300;
text-anchor: middle;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}
.axisCircles {
fill: none;
stroke: #E8E8E8;
stroke-width: 1px;
}
.tooltip {
background-color: #f7f7f7;
padding: 3px 12px;
font-family: sans-serif;
border: 1px solid #bbbbbb;
box-shadow: 1px 1px 4px #bbbbbb;
}
.tooltip_title {
font-weight: bold;
font-size: 14px;
margin: 5px 0;
max-width: 100px;
word-wrap: normal;
}
.tooltip_body {
font-weight: normal;
margin: 5px 0;
}
.tooltip_img {
max-width: 100px;
}
</style>
</head>
<body>
<div id="weatherRadial"></div>
<script src="script.js"></script>
</script>
</body>
</html>
{
"data": [{
"date": "20150101",
"mintempi": "40",
"meantempi": "48",
"maxtempi": "55"
}, {
"date": "20150102",
"mintempi": "38",
"meantempi": "45",
"maxtempi": "52"
}, {
"date": "20150103",
"mintempi": "38",
"meantempi": "46",
"maxtempi": "54"
}, {
"date": "20150104",
"mintempi": "38",
"meantempi": "46",
"maxtempi": "54"
}, {
"date": "20150105",
"mintempi": "43",
"meantempi": "51",
"maxtempi": "59"
}, {
"date": "20150106",
"mintempi": "44",
"meantempi": "52",
"maxtempi": "60"
}, {
"date": "20150107",
"mintempi": "45",
"meantempi": "53",
"maxtempi": "60"
}, {
"date": "20150108",
"mintempi": "49",
"meantempi": "55",
"maxtempi": "60"
}, {
"date": "20150109",
"mintempi": "51",
"meantempi": "57",
"maxtempi": "63"
}, {
"date": "20150110",
"mintempi": "49",
"meantempi": "55",
"maxtempi": "61"
}, {
"date": "20150111",
"mintempi": "47",
"meantempi": "52",
"maxtempi": "56"
}, {
"date": "20150112",
"mintempi": "47",
"meantempi": "55",
"maxtempi": "62"
}, {
"date": "20150113",
"mintempi": "46",
"meantempi": "55",
"maxtempi": "64"
}, {
"date": "20150114",
"mintempi": "43",
"meantempi": "51",
"maxtempi": "58"
}, {
"date": "20150115",
"mintempi": "45",
"meantempi": "52",
"maxtempi": "59"
}, {
"date": "20150116",
"mintempi": "48",
"meantempi": "53",
"maxtempi": "58"
}, {
"date": "20150117",
"mintempi": "51",
"meantempi": "55",
"maxtempi": "58"
}, {
"date": "20150118",
"mintempi": "53",
"meantempi": "57",
"maxtempi": "61"
}, {
"date": "20150119",
"mintempi": "52",
"meantempi": "56",
"maxtempi": "60"
}, {
"date": "20150120",
"mintempi": "49",
"meantempi": "55",
"maxtempi": "61"
}, {
"date": "20150121",
"mintempi": "46",
"meantempi": "55",
"maxtempi": "64"
}, {
"date": "20150122",
"mintempi": "47",
"meantempi": "52",
"maxtempi": "57"
}, {
"date": "20150123",
"mintempi": "45",
"meantempi": "56",
"maxtempi": "67"
}, {
"date": "20150124",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20150125",
"mintempi": "49",
"meantempi": "56",
"maxtempi": "63"
}, {
"date": "20150126",
"mintempi": "48",
"meantempi": "56",
"maxtempi": "64"
}, {
"date": "20150127",
"mintempi": "54",
"meantempi": "61",
"maxtempi": "68"
}, {
"date": "20150128",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20150129",
"mintempi": "49",
"meantempi": "58",
"maxtempi": "66"
}, {
"date": "20150130",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20150131",
"mintempi": "48",
"meantempi": "61",
"maxtempi": "74"
}, {
"date": "20150201",
"mintempi": "46",
"meantempi": "55",
"maxtempi": "64"
}, {
"date": "20150202",
"mintempi": "49",
"meantempi": "58",
"maxtempi": "66"
}, {
"date": "20150203",
"mintempi": "52",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150204",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20150205",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150206",
"mintempi": "55",
"meantempi": "61",
"maxtempi": "67"
}, {
"date": "20150207",
"mintempi": "59",
"meantempi": "62",
"maxtempi": "65"
}, {
"date": "20150208",
"mintempi": "57",
"meantempi": "61",
"maxtempi": "65"
}, {
"date": "20150209",
"mintempi": "54",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150210",
"mintempi": "48",
"meantempi": "56",
"maxtempi": "64"
}, {
"date": "20150211",
"mintempi": "48",
"meantempi": "58",
"maxtempi": "67"
}, {
"date": "20150212",
"mintempi": "51",
"meantempi": "62",
"maxtempi": "73"
}, {
"date": "20150213",
"mintempi": "52",
"meantempi": "61",
"maxtempi": "69"
}, {
"date": "20150214",
"mintempi": "52",
"meantempi": "63",
"maxtempi": "73"
}, {
"date": "20150215",
"mintempi": "51",
"meantempi": "63",
"maxtempi": "75"
}, {
"date": "20150216",
"mintempi": "51",
"meantempi": "60",
"maxtempi": "68"
}, {
"date": "20150217",
"mintempi": "53",
"meantempi": "56",
"maxtempi": "59"
}, {
"date": "20150218",
"mintempi": "54",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150219",
"mintempi": "54",
"meantempi": "58",
"maxtempi": "62"
}, {
"date": "20150220",
"mintempi": "54",
"meantempi": "61",
"maxtempi": "68"
}, {
"date": "20150221",
"mintempi": "49",
"meantempi": "58",
"maxtempi": "67"
}, {
"date": "20150222",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150223",
"mintempi": "53",
"meantempi": "58",
"maxtempi": "63"
}, {
"date": "20150224",
"mintempi": "44",
"meantempi": "55",
"maxtempi": "66"
}, {
"date": "20150225",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150226",
"mintempi": "50",
"meantempi": "59",
"maxtempi": "67"
}, {
"date": "20150227",
"mintempi": "53",
"meantempi": "58",
"maxtempi": "62"
}, {
"date": "20150228",
"mintempi": "50",
"meantempi": "56",
"maxtempi": "62"
}, {
"date": "20150301",
"mintempi": "48",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150302",
"mintempi": "50",
"meantempi": "56",
"maxtempi": "61"
}, {
"date": "20150303",
"mintempi": "47",
"meantempi": "56",
"maxtempi": "64"
}, {
"date": "20150304",
"mintempi": "46",
"meantempi": "56",
"maxtempi": "66"
}, {
"date": "20150305",
"mintempi": "47",
"meantempi": "58",
"maxtempi": "68"
}, {
"date": "20150306",
"mintempi": "48",
"meantempi": "60",
"maxtempi": "72"
}, {
"date": "20150307",
"mintempi": "48",
"meantempi": "61",
"maxtempi": "73"
}, {
"date": "20150308",
"mintempi": "48",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150309",
"mintempi": "51",
"meantempi": "59",
"maxtempi": "66"
}, {
"date": "20150310",
"mintempi": "50",
"meantempi": "56",
"maxtempi": "62"
}, {
"date": "20150311",
"mintempi": "55",
"meantempi": "62",
"maxtempi": "68"
}, {
"date": "20150312",
"mintempi": "52",
"meantempi": "62",
"maxtempi": "72"
}, {
"date": "20150313",
"mintempi": "53",
"meantempi": "64",
"maxtempi": "74"
}, {
"date": "20150314",
"mintempi": "57",
"meantempi": "70",
"maxtempi": "83"
}, {
"date": "20150315",
"mintempi": "59",
"meantempi": "65",
"maxtempi": "71"
}, {
"date": "20150316",
"mintempi": "57",
"meantempi": "63",
"maxtempi": "69"
}, {
"date": "20150317",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150318",
"mintempi": "51",
"meantempi": "60",
"maxtempi": "69"
}, {
"date": "20150319",
"mintempi": "50",
"meantempi": "62",
"maxtempi": "74"
}, {
"date": "20150320",
"mintempi": "52",
"meantempi": "62",
"maxtempi": "71"
}, {
"date": "20150321",
"mintempi": "56",
"meantempi": "65",
"maxtempi": "73"
}, {
"date": "20150322",
"mintempi": "55",
"meantempi": "61",
"maxtempi": "67"
}, {
"date": "20150323",
"mintempi": "55",
"meantempi": "60",
"maxtempi": "65"
}, {
"date": "20150324",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150325",
"mintempi": "52",
"meantempi": "62",
"maxtempi": "72"
}, {
"date": "20150326",
"mintempi": "52",
"meantempi": "66",
"maxtempi": "79"
}, {
"date": "20150327",
"mintempi": "52",
"meantempi": "58",
"maxtempi": "63"
}, {
"date": "20150328",
"mintempi": "52",
"meantempi": "63",
"maxtempi": "74"
}, {
"date": "20150329",
"mintempi": "50",
"meantempi": "61",
"maxtempi": "71"
}, {
"date": "20150330",
"mintempi": "52",
"meantempi": "58",
"maxtempi": "64"
}, {
"date": "20150331",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150401",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20150402",
"mintempi": "49",
"meantempi": "59",
"maxtempi": "68"
}, {
"date": "20150403",
"mintempi": "48",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150404",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "63"
}, {
"date": "20150405",
"mintempi": "48",
"meantempi": "54",
"maxtempi": "59"
}, {
"date": "20150406",
"mintempi": "46",
"meantempi": "55",
"maxtempi": "63"
}, {
"date": "20150407",
"mintempi": "50",
"meantempi": "56",
"maxtempi": "61"
}, {
"date": "20150408",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "63"
}, {
"date": "20150409",
"mintempi": "49",
"meantempi": "58",
"maxtempi": "66"
}, {
"date": "20150410",
"mintempi": "49",
"meantempi": "57",
"maxtempi": "65"
}, {
"date": "20150411",
"mintempi": "51",
"meantempi": "60",
"maxtempi": "69"
}, {
"date": "20150412",
"mintempi": "51",
"meantempi": "63",
"maxtempi": "74"
}, {
"date": "20150413",
"mintempi": "51",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150414",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "63"
}, {
"date": "20150415",
"mintempi": "48",
"meantempi": "59",
"maxtempi": "69"
}, {
"date": "20150416",
"mintempi": "51",
"meantempi": "66",
"maxtempi": "80"
}, {
"date": "20150417",
"mintempi": "51",
"meantempi": "61",
"maxtempi": "70"
}, {
"date": "20150418",
"mintempi": "49",
"meantempi": "58",
"maxtempi": "67"
}, {
"date": "20150419",
"mintempi": "51",
"meantempi": "58",
"maxtempi": "64"
}, {
"date": "20150420",
"mintempi": "53",
"meantempi": "61",
"maxtempi": "68"
}, {
"date": "20150421",
"mintempi": "54",
"meantempi": "57",
"maxtempi": "59"
}, {
"date": "20150422",
"mintempi": "52",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150423",
"mintempi": "51",
"meantempi": "59",
"maxtempi": "67"
}, {
"date": "20150424",
"mintempi": "52",
"meantempi": "58",
"maxtempi": "63"
}, {
"date": "20150425",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "61"
}, {
"date": "20150426",
"mintempi": "51",
"meantempi": "59",
"maxtempi": "67"
}, {
"date": "20150427",
"mintempi": "52",
"meantempi": "66",
"maxtempi": "80"
}, {
"date": "20150428",
"mintempi": "52",
"meantempi": "58",
"maxtempi": "64"
}, {
"date": "20150429",
"mintempi": "51",
"meantempi": "60",
"maxtempi": "68"
}, {
"date": "20150430",
"mintempi": "52",
"meantempi": "70",
"maxtempi": "88"
}, {
"date": "20150501",
"mintempi": "54",
"meantempi": "65",
"maxtempi": "75"
}, {
"date": "20150502",
"mintempi": "53",
"meantempi": "60",
"maxtempi": "67"
}, {
"date": "20150503",
"mintempi": "52",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150504",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "61"
}, {
"date": "20150505",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150506",
"mintempi": "51",
"meantempi": "59",
"maxtempi": "66"
}, {
"date": "20150507",
"mintempi": "50",
"meantempi": "59",
"maxtempi": "68"
}, {
"date": "20150508",
"mintempi": "50",
"meantempi": "59",
"maxtempi": "68"
}, {
"date": "20150509",
"mintempi": "52",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150510",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150511",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150512",
"mintempi": "51",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150513",
"mintempi": "52",
"meantempi": "59",
"maxtempi": "65"
}, {
"date": "20150514",
"mintempi": "55",
"meantempi": "60",
"maxtempi": "65"
}, {
"date": "20150515",
"mintempi": "53",
"meantempi": "58",
"maxtempi": "62"
}, {
"date": "20150516",
"mintempi": "54",
"meantempi": "58",
"maxtempi": "61"
}, {
"date": "20150517",
"mintempi": "55",
"meantempi": "59",
"maxtempi": "62"
}, {
"date": "20150518",
"mintempi": "55",
"meantempi": "58",
"maxtempi": "60"
}, {
"date": "20150519",
"mintempi": "55",
"meantempi": "59",
"maxtempi": "63"
}, {
"date": "20150520",
"mintempi": "55",
"meantempi": "59",
"maxtempi": "62"
}, {
"date": "20150521",
"mintempi": "55",
"meantempi": "61",
"maxtempi": "67"
}, {
"date": "20150522",
"mintempi": "56",
"meantempi": "60",
"maxtempi": "64"
}, {
"date": "20150523",
"mintempi": "54",
"meantempi": "59",
"maxtempi": "63"
}, {
"date": "20150524",
"mintempi": "51",
"meantempi": "56",
"maxtempi": "61"
}, {
"date": "20150525",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150526",
"mintempi": "54",
"meantempi": "60",
"maxtempi": "65"
}, {
"date": "20150527",
"mintempi": "53",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150528",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "62"
}, {
"date": "20150529",
"mintempi": "53",
"meantempi": "58",
"maxtempi": "62"
}, {
"date": "20150530",
"mintempi": "52",
"meantempi": "58",
"maxtempi": "64"
}, {
"date": "20150531",
"mintempi": "53",
"meantempi": "60",
"maxtempi": "67"
}, {
"date": "20150601",
"mintempi": "58",
"meantempi": "66",
"maxtempi": "74"
}, {
"date": "20150602",
"mintempi": "56",
"meantempi": "61",
"maxtempi": "65"
}, {
"date": "20150603",
"mintempi": "55",
"meantempi": "60",
"maxtempi": "65"
}, {
"date": "20150604",
"mintempi": "54",
"meantempi": "62",
"maxtempi": "70"
}, {
"date": "20150605",
"mintempi": "54",
"meantempi": "64",
"maxtempi": "73"
}, {
"date": "20150606",
"mintempi": "57",
"meantempi": "66",
"maxtempi": "74"
}, {
"date": "20150607",
"mintempi": "55",
"meantempi": "63",
"maxtempi": "71"
}, {
"date": "20150608",
"mintempi": "55",
"meantempi": "70",
"maxtempi": "84"
}, {
"date": "20150609",
"mintempi": "54",
"meantempi": "67",
"maxtempi": "79"
}, {
"date": "20150610",
"mintempi": "56",
"meantempi": "62",
"maxtempi": "68"
}, {
"date": "20150611",
"mintempi": "54",
"meantempi": "63",
"maxtempi": "71"
}, {
"date": "20150612",
"mintempi": "55",
"meantempi": "64",
"maxtempi": "73"
}, {
"date": "20150613",
"mintempi": "56",
"meantempi": "67",
"maxtempi": "77"
}, {
"date": "20150614",
"mintempi": "53",
"meantempi": "62",
"maxtempi": "70"
}, {
"date": "20150615",
"mintempi": "53",
"meantempi": "57",
"maxtempi": "61"
}, {
"date": "20150616",
"mintempi": "53",
"meantempi": "60",
"maxtempi": "66"
}, {
"date": "20150617",
"mintempi": "52",
"meantempi": "60",
"maxtempi": "67"
}, {
"date": "20150618",
"mintempi": "52",
"meantempi": "60",
"maxtempi": "67"
}, {
"date": "20150619",
"mintempi": "51",
"meantempi": "60",
"maxtempi": "69"
}, {
"date": "20150620",
"mintempi": "53",
"meantempi": "61",
"maxtempi": "69"
}, {
"date": "20150621",
"mintempi": "55",
"meantempi": "61",
"maxtempi": "66"
}, {
"date": "20150622",
"mintempi": "54",
"meantempi": "59",
"maxtempi": "64"
}, {
"date": "20150623",
"mintempi": "54",
"meantempi": "61",
"maxtempi": "68"
}, {
"date": "20150624",
"mintempi": "54",
"meantempi": "63",
"maxtempi": "71"
}, {
"date": "20150625",
"mintempi": "56",
"meantempi": "66",
"maxtempi": "76"
}, {
"date": "20150626",
"mintempi": "56",
"meantempi": "65",
"maxtempi": "73"
}, {
"date": "20150627",
"mintempi": "58",
"meantempi": "67",
"maxtempi": "75"
}, {
"date": "20150628",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "72"
}, {
"date": "20150629",
"mintempi": "56",
"meantempi": "62",
"maxtempi": "68"
}, {
"date": "20150630",
"mintempi": "55",
"meantempi": "67",
"maxtempi": "79"
}, {
"date": "20150701",
"mintempi": "56",
"meantempi": "65",
"maxtempi": "74"
}, {
"date": "20150702",
"mintempi": "58",
"meantempi": "66",
"maxtempi": "73"
}, {
"date": "20150703",
"mintempi": "58",
"meantempi": "65",
"maxtempi": "72"
}, {
"date": "20150704",
"mintempi": "58",
"meantempi": "65",
"maxtempi": "71"
}, {
"date": "20150705",
"mintempi": "59",
"meantempi": "68",
"maxtempi": "77"
}, {
"date": "20150706",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "72"
}, {
"date": "20150707",
"mintempi": "61",
"meantempi": "68",
"maxtempi": "74"
}, {
"date": "20150708",
"mintempi": "60",
"meantempi": "65",
"maxtempi": "69"
}, {
"date": "20150709",
"mintempi": "59",
"meantempi": "64",
"maxtempi": "68"
}, {
"date": "20150710",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "71"
}, {
"date": "20150711",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150712",
"mintempi": "62",
"meantempi": "68",
"maxtempi": "74"
}, {
"date": "20150713",
"mintempi": "62",
"meantempi": "67",
"maxtempi": "72"
}, {
"date": "20150714",
"mintempi": "59",
"meantempi": "64",
"maxtempi": "68"
}, {
"date": "20150715",
"mintempi": "59",
"meantempi": "69",
"maxtempi": "79"
}, {
"date": "20150716",
"mintempi": "59",
"meantempi": "68",
"maxtempi": "77"
}, {
"date": "20150717",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "73"
}, {
"date": "20150718",
"mintempi": "59",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150719",
"mintempi": "63",
"meantempi": "76",
"maxtempi": "88"
}, {
"date": "20150720",
"mintempi": "60",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150721",
"mintempi": "60",
"meantempi": "65",
"maxtempi": "70"
}, {
"date": "20150722",
"mintempi": "60",
"meantempi": "64",
"maxtempi": "68"
}, {
"date": "20150723",
"mintempi": "60",
"meantempi": "64",
"maxtempi": "68"
}, {
"date": "20150724",
"mintempi": "58",
"meantempi": "65",
"maxtempi": "72"
}, {
"date": "20150725",
"mintempi": "59",
"meantempi": "64",
"maxtempi": "69"
}, {
"date": "20150726",
"mintempi": "59",
"meantempi": "67",
"maxtempi": "74"
}, {
"date": "20150727",
"mintempi": "57",
"meantempi": "69",
"maxtempi": "81"
}, {
"date": "20150728",
"mintempi": "58",
"meantempi": "73",
"maxtempi": "87"
}, {
"date": "20150729",
"mintempi": "57",
"meantempi": "69",
"maxtempi": "81"
}, {
"date": "20150730",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150731",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150801",
"mintempi": "62",
"meantempi": "69",
"maxtempi": "75"
}, {
"date": "20150802",
"mintempi": "62",
"meantempi": "67",
"maxtempi": "71"
}, {
"date": "20150803",
"mintempi": "63",
"meantempi": "68",
"maxtempi": "73"
}, {
"date": "20150804",
"mintempi": "61",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150805",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "73"
}, {
"date": "20150806",
"mintempi": "59",
"meantempi": "65",
"maxtempi": "70"
}, {
"date": "20150807",
"mintempi": "58",
"meantempi": "67",
"maxtempi": "76"
}, {
"date": "20150808",
"mintempi": "61",
"meantempi": "66",
"maxtempi": "71"
}, {
"date": "20150809",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "71"
}, {
"date": "20150810",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150811",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "73"
}, {
"date": "20150812",
"mintempi": "58",
"meantempi": "68",
"maxtempi": "77"
}, {
"date": "20150813",
"mintempi": "62",
"meantempi": "69",
"maxtempi": "75"
}, {
"date": "20150814",
"mintempi": "61",
"meantempi": "68",
"maxtempi": "74"
}, {
"date": "20150815",
"mintempi": "60",
"meantempi": "76",
"maxtempi": "92"
}, {
"date": "20150816",
"mintempi": "61",
"meantempi": "76",
"maxtempi": "90"
}, {
"date": "20150817",
"mintempi": "60",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150818",
"mintempi": "59",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150819",
"mintempi": "59",
"meantempi": "67",
"maxtempi": "74"
}, {
"date": "20150820",
"mintempi": "61",
"meantempi": "65",
"maxtempi": "69"
}, {
"date": "20150821",
"mintempi": "59",
"meantempi": "65",
"maxtempi": "71"
}, {
"date": "20150822",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "73"
}, {
"date": "20150823",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "74"
}, {
"date": "20150824",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "72"
}, {
"date": "20150825",
"mintempi": "58",
"meantempi": "65",
"maxtempi": "71"
}, {
"date": "20150826",
"mintempi": "57",
"meantempi": "67",
"maxtempi": "77"
}, {
"date": "20150827",
"mintempi": "61",
"meantempi": "74",
"maxtempi": "86"
}, {
"date": "20150828",
"mintempi": "64",
"meantempi": "79",
"maxtempi": "93"
}, {
"date": "20150829",
"mintempi": "65",
"meantempi": "70",
"maxtempi": "75"
}, {
"date": "20150830",
"mintempi": "63",
"meantempi": "69",
"maxtempi": "74"
}, {
"date": "20150831",
"mintempi": "60",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150901",
"mintempi": "59",
"meantempi": "68",
"maxtempi": "76"
}, {
"date": "20150902",
"mintempi": "62",
"meantempi": "68",
"maxtempi": "73"
}, {
"date": "20150903",
"mintempi": "59",
"meantempi": "64",
"maxtempi": "69"
}, {
"date": "20150904",
"mintempi": "56",
"meantempi": "63",
"maxtempi": "69"
}, {
"date": "20150905",
"mintempi": "53",
"meantempi": "65",
"maxtempi": "77"
}, {
"date": "20150906",
"mintempi": "56",
"meantempi": "71",
"maxtempi": "85"
}, {
"date": "20150907",
"mintempi": "58",
"meantempi": "74",
"maxtempi": "89"
}, {
"date": "20150908",
"mintempi": "61",
"meantempi": "77",
"maxtempi": "92"
}, {
"date": "20150909",
"mintempi": "60",
"meantempi": "76",
"maxtempi": "91"
}, {
"date": "20150910",
"mintempi": "57",
"meantempi": "70",
"maxtempi": "83"
}, {
"date": "20150911",
"mintempi": "57",
"meantempi": "67",
"maxtempi": "76"
}, {
"date": "20150912",
"mintempi": "57",
"meantempi": "65",
"maxtempi": "73"
}, {
"date": "20150913",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "72"
}, {
"date": "20150914",
"mintempi": "58",
"meantempi": "63",
"maxtempi": "68"
}, {
"date": "20150915",
"mintempi": "57",
"meantempi": "63",
"maxtempi": "68"
}, {
"date": "20150916",
"mintempi": "58",
"meantempi": "64",
"maxtempi": "70"
}, {
"date": "20150917",
"mintempi": "58",
"meantempi": "64",
"maxtempi": "70"
}, {
"date": "20150918",
"mintempi": "56",
"meantempi": "68",
"maxtempi": "79"
}, {
"date": "20150919",
"mintempi": "55",
"meantempi": "70",
"maxtempi": "85"
}, {
"date": "20150920",
"mintempi": "61",
"meantempi": "77",
"maxtempi": "93"
}, {
"date": "20150921",
"mintempi": "60",
"meantempi": "76",
"maxtempi": "91"
}, {
"date": "20150922",
"mintempi": "58",
"meantempi": "62",
"maxtempi": "65"
}, {
"date": "20150923",
"mintempi": "55",
"meantempi": "65",
"maxtempi": "75"
}, {
"date": "20150924",
"mintempi": "60",
"meantempi": "73",
"maxtempi": "85"
}, {
"date": "20150925",
"mintempi": "58",
"meantempi": "66",
"maxtempi": "74"
}, {
"date": "20150926",
"mintempi": "57",
"meantempi": "64",
"maxtempi": "71"
}, {
"date": "20150927",
"mintempi": "57",
"meantempi": "64",
"maxtempi": "71"
}, {
"date": "20150928",
"mintempi": "55",
"meantempi": "63",
"maxtempi": "70"
}, {
"date": "20150929",
"mintempi": "57",
"meantempi": "62",
"maxtempi": "67"
}, {
"date": "20150930",
"mintempi": "58",
"meantempi": "62",
"maxtempi": "65"
}, {
"date": "20151001",
"mintempi": "59",
"meantempi": "67",
"maxtempi": "74"
}, {
"date": "20151002",
"mintempi": "56",
"meantempi": "66",
"maxtempi": "76"
}, {
"date": "20151003",
"mintempi": "55",
"meantempi": "63",
"maxtempi": "71"
}, {
"date": "20151004",
"mintempi": "53",
"meantempi": "63",
"maxtempi": "73"
}, {
"date": "20151005",
"mintempi": "57",
"meantempi": "66",
"maxtempi": "74"
}, {
"date": "20151006",
"mintempi": "60",
"meantempi": "67",
"maxtempi": "74"
}, {
"date": "20151007",
"mintempi": "59",
"meantempi": "66",
"maxtempi": "73"
}, {
"date": "20151008",
"mintempi": "58",
"meantempi": "69",
"maxtempi": "80"
}, {
"date": "20151009",
"mintempi": "57",
"meantempi": "68",
"maxtempi": "79"
}, {
"date": "20151010",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "71"
}, {
"date": "20151011",
"mintempi": "58",
"meantempi": "66",
"maxtempi": "74"
}, {
"date": "20151012",
"mintempi": "56",
"meantempi": "69",
"maxtempi": "82"
}, {
"date": "20151013",
"mintempi": "62",
"meantempi": "75",
"maxtempi": "87"
}, {
"date": "20151014",
"mintempi": "61",
"meantempi": "70",
"maxtempi": "78"
}, {
"date": "20151015",
"mintempi": "61",
"meantempi": "66",
"maxtempi": "71"
}, {
"date": "20151016",
"mintempi": "60",
"meantempi": "66",
"maxtempi": "72"
}, {
"date": "20151017",
"mintempi": "60",
"meantempi": "65",
"maxtempi": "69"
}, {
"date": "20151018",
"mintempi": "60",
"meantempi": "65",
"maxtempi": "69"
}, {
"date": "20151019",
"mintempi": "60",
"meantempi": "64",
"maxtempi": "68"
}, {
"date": "20151020",
"mintempi": "57",
"meantempi": "68",
"maxtempi": "79"
}, {
"date": "20151021",
"mintempi": "55",
"meantempi": "65",
"maxtempi": "75"
}, {
"date": "20151022",
"mintempi": "54",
"meantempi": "64",
"maxtempi": "73"
}, {
"date": "20151023",
"mintempi": "55",
"meantempi": "62",
"maxtempi": "69"
}, {
"date": "20151024",
"mintempi": "53",
"meantempi": "62",
"maxtempi": "70"
}, {
"date": "20151025",
"mintempi": "58",
"meantempi": "64",
"maxtempi": "70"
}, {
"date": "20151026",
"mintempi": "55",
"meantempi": "64",
"maxtempi": "73"
}, {
"date": "20151027",
"mintempi": "58",
"meantempi": "63",
"maxtempi": "68"
}, {
"date": "20151028",
"mintempi": "59",
"meantempi": "65",
"maxtempi": "70"
}, {
"date": "20151029",
"mintempi": "56",
"meantempi": "64",
"maxtempi": "72"
}, {
"date": "20151030",
"mintempi": "53",
"meantempi": "66",
"maxtempi": "78"
}, {
"date": "20151031",
"mintempi": "55",
"meantempi": "64",
"maxtempi": "73"
}, {
"date": "20151101",
"mintempi": "57",
"meantempi": "64",
"maxtempi": "71"
}, {
"date": "20151102",
"mintempi": "54",
"meantempi": "59",
"maxtempi": "63"
}, {
"date": "20151103",
"mintempi": "51",
"meantempi": "58",
"maxtempi": "64"
}, {
"date": "20151104",
"mintempi": "50",
"meantempi": "57",
"maxtempi": "64"
}, {
"date": "20151105",
"mintempi": "47",
"meantempi": "56",
"maxtempi": "64"
}, {
"date": "20151106",
"mintempi": "48",
"meantempi": "58",
"maxtempi": "67"
}, {
"date": "20151107",
"mintempi": "47",
"meantempi": "57",
"maxtempi": "66"
}, {
"date": "20151108",
"mintempi": "49",
"meantempi": "56",
"maxtempi": "62"
}, {
"date": "20151109",
"mintempi": "47",
"meantempi": "52",
"maxtempi": "57"
}, {
"date": "20151110",
"mintempi": "45",
"meantempi": "53",
"maxtempi": "60"
}, {
"date": "20151111",
"mintempi": "44",
"meantempi": "54",
"maxtempi": "63"
}, {
"date": "20151112",
"mintempi": "45",
"meantempi": "54",
"maxtempi": "63"
}, {
"date": "20151113",
"mintempi": "46",
"meantempi": "57",
"maxtempi": "67"
}, {
"date": "20151114",
"mintempi": "46",
"meantempi": "55",
"maxtempi": "64"
}, {
"date": "20151115",
"mintempi": "50",
"meantempi": "55",
"maxtempi": "59"
}, {
"date": "20151116",
"mintempi": "47",
"meantempi": "54",
"maxtempi": "60"
}, {
"date": "20151117",
"mintempi": "50",
"meantempi": "56",
"maxtempi": "61"
}, {
"date": "20151118",
"mintempi": "48",
"meantempi": "56",
"maxtempi": "63"
}, {
"date": "20151119",
"mintempi": "48",
"meantempi": "58",
"maxtempi": "68"
}, {
"date": "20151120",
"mintempi": "52",
"meantempi": "60",
"maxtempi": "68"
}, {
"date": "20151121",
"mintempi": "49",
"meantempi": "59",
"maxtempi": "68"
}, {
"date": "20151122",
"mintempi": "48",
"meantempi": "58",
"maxtempi": "67"
}, {
"date": "20151123",
"mintempi": "49",
"meantempi": "54",
"maxtempi": "58"
}, {
"date": "20151124",
"mintempi": "48",
"meantempi": "53",
"maxtempi": "58"
}, {
"date": "20151125",
"mintempi": "42",
"meantempi": "48",
"maxtempi": "54"
}, {
"date": "20151126",
"mintempi": "42",
"meantempi": "48",
"maxtempi": "53"
}, {
"date": "20151127",
"mintempi": "42",
"meantempi": "49",
"maxtempi": "56"
}, {
"date": "20151128",
"mintempi": "42",
"meantempi": "49",
"maxtempi": "56"
}, {
"date": "20151129",
"mintempi": "37",
"meantempi": "46",
"maxtempi": "55"
}, {
"date": "20151130",
"mintempi": "38",
"meantempi": "45",
"maxtempi": "51"
}, {
"date": "20151201",
"mintempi": "43",
"meantempi": "50",
"maxtempi": "56"
}, {
"date": "20151202",
"mintempi": "46",
"meantempi": "52",
"maxtempi": "58"
}, {
"date": "20151203",
"mintempi": "45",
"meantempi": "52",
"maxtempi": "59"
}, {
"date": "20151204",
"mintempi": "45",
"meantempi": "52",
"maxtempi": "58"
}, {
"date": "20151205",
"mintempi": "44",
"meantempi": "50",
"maxtempi": "56"
}, {
"date": "20151206",
"mintempi": "52",
"meantempi": "57",
"maxtempi": "61"
}, {
"date": "20151207",
"mintempi": "54",
"meantempi": "56",
"maxtempi": "58"
}, {
"date": "20151208",
"mintempi": "52",
"meantempi": "56",
"maxtempi": "60"
}, {
"date": "20151209",
"mintempi": "54",
"meantempi": "60",
"maxtempi": "65"
}, {
"date": "20151210",
"mintempi": "51",
"meantempi": "56",
"maxtempi": "61"
}, {
"date": "20151211",
"mintempi": "46",
"meantempi": "51",
"maxtempi": "56"
}, {
"date": "20151212",
"mintempi": "46",
"meantempi": "52",
"maxtempi": "57"
}, {
"date": "20151213",
"mintempi": "48",
"meantempi": "53",
"maxtempi": "57"
}, {
"date": "20151214",
"mintempi": "44",
"meantempi": "50",
"maxtempi": "56"
}, {
"date": "20151215",
"mintempi": "41",
"meantempi": "49",
"maxtempi": "56"
}, {
"date": "20151216",
"mintempi": "39",
"meantempi": "47",
"maxtempi": "55"
}, {
"date": "20151217",
"mintempi": "50",
"meantempi": "53",
"maxtempi": "55"
}, {
"date": "20151218",
"mintempi": "45",
"meantempi": "52",
"maxtempi": "59"
}, {
"date": "20151219",
"mintempi": "49",
"meantempi": "52",
"maxtempi": "55"
}, {
"date": "20151220",
"mintempi": "42",
"meantempi": "48",
"maxtempi": "54"
}, {
"date": "20151221",
"mintempi": "51",
"meantempi": "55",
"maxtempi": "59"
}, {
"date": "20151222",
"mintempi": "51",
"meantempi": "55",
"maxtempi": "59"
}, {
"date": "20151223",
"mintempi": "48",
"meantempi": "52",
"maxtempi": "55"
}, {
"date": "20151224",
"mintempi": "45",
"meantempi": "49",
"maxtempi": "53"
}, {
"date": "20151225",
"mintempi": "40",
"meantempi": "46",
"maxtempi": "51"
}, {
"date": "20151226",
"mintempi": "39",
"meantempi": "46",
"maxtempi": "52"
}, {
"date": "20151227",
"mintempi": "34",
"meantempi": "41",
"maxtempi": "48"
}, {
"date": "20151228",
"mintempi": "41",
"meantempi": "45",
"maxtempi": "48"
}, {
"date": "20151229",
"mintempi": "36",
"meantempi": "45",
"maxtempi": "54"
}, {
"date": "20151230",
"mintempi": "40",
"meantempi": "45",
"maxtempi": "49"
}, {
"date": "20151231",
"mintempi": "39",
"meantempi": "45",
"maxtempi": "51"
}],
"newyork": [{"date":"1-Jan","avgLow":"24°","avgHigh":"38°","recLow":"10° (1963)","recHigh":"59° (1966)","index":0,"max":39,"min":27},
{"date":"2-Jan","avgLow":"24°","avgHigh":"38°","recLow":"6° (1968)","recHigh":"58° (1966)","index":1,"max":42,"min":35},
{"date":"3-Jan","avgLow":"24°","avgHigh":"37°","recLow":"3° (1981)","recHigh":"56° (1950)","index":2,"max":42,"min":33},
{"date":"4-Jan","avgLow":"24°","avgHigh":"37°","recLow":"1° (1981)","recHigh":"64° (1950)","index":3,"max":56,"min":41},
{"date":"5-Jan","avgLow":"24°","avgHigh":"37°","recLow":"1° (1981)","recHigh":"60° (1950)","index":4,"max":49,"min":21},
{"date":"6-Jan","avgLow":"24°","avgHigh":"37°","recLow":"3° (1988)","recHigh":"60° (1950)","index":5,"max":22,"min":19},
{"date":"7-Jan","avgLow":"23°","avgHigh":"37°","recLow":"5° (1996)","recHigh":"52° (1961)","index":6,"max":23,"min":9},
{"date":"8-Jan","avgLow":"23°","avgHigh":"37°","recLow":"0° (1981)","recHigh":"57° (1949)","index":7,"max":21,"min":8},
{"date":"9-Jan","avgLow":"23°","avgHigh":"36°","recLow":"0° (1968)","recHigh":"54° (1978)","index":8,"max":33,"min":19},
{"date":"10-Jan","avgLow":"23°","avgHigh":"36°","recLow":"0° (1981)","recHigh":"53° (1983)","index":9,"max":23,"min":16},
{"date":"11-Jan","avgLow":"23°","avgHigh":"36°","recLow":"0° (1981)","recHigh":"62° (1975)","index":10,"max":37,"min":18},
{"date":"12-Jan","avgLow":"23°","avgHigh":"36°","recLow":"1° (1981)","recHigh":"61° (1975)","index":11,"max":39,"min":35},
{"date":"13-Jan","avgLow":"23°","avgHigh":"36°","recLow":"3° (1981)","recHigh":"55° (1972)","index":12,"max":36,"min":17},
{"date":"14-Jan","avgLow":"23°","avgHigh":"36°","recLow":"5° (1988)","recHigh":"60° (1995)","index":13,"max":32,"min":16},
{"date":"15-Jan","avgLow":"23°","avgHigh":"36°","recLow":"0° (1957)","recHigh":"62° (1995)","index":14,"max":35,"min":25},
{"date":"16-Jan","avgLow":"23°","avgHigh":"36°","recLow":"1° (1994)","recHigh":"59° (1995)","index":15,"max":43,"min":20},
{"date":"17-Jan","avgLow":"22°","avgHigh":"36°","recLow":"0° (1977)","recHigh":"59° (1973)","index":16,"max":32,"min":17},
{"date":"18-Jan","avgLow":"22°","avgHigh":"36°","recLow":"0° (1982)","recHigh":"60° (1986)","index":17,"max":42,"min":31},
{"date":"19-Jan","avgLow":"22°","avgHigh":"36°","recLow":"1° (1979)","recHigh":"60° (1951)","index":18,"max":42,"min":36},
{"date":"20-Jan","avgLow":"22°","avgHigh":"36°","recLow":"-4° (1994)","recHigh":"55° (1996)","index":19,"max":40,"min":32},
{"date":"21-Jan","avgLow":"22°","avgHigh":"36°","recLow":"2° (1984)","recHigh":"53° (1951)","index":20,"max":36,"min":25},
{"date":"22-Jan","avgLow":"22°","avgHigh":"36°","recLow":"2° (1985)","recHigh":"57° (1958)","index":21,"max":40,"min":31},
{"date":"23-Jan","avgLow":"22°","avgHigh":"36°","recLow":"1° (1976)","recHigh":"60° (1967)","index":22,"max":39,"min":28},
{"date":"24-Jan","avgLow":"22°","avgHigh":"36°","recLow":"4° (1963)","recHigh":"68° (1967)","index":23,"max":39,"min":33},
{"date":"25-Jan","avgLow":"22°","avgHigh":"36°","recLow":"4° (1961)","recHigh":"56° (1967)","index":24,"max":42,"min":31},
{"date":"26-Jan","avgLow":"22°","avgHigh":"36°","recLow":"8° (1961)","recHigh":"70° (1950)","index":25,"max":31,"min":22},
{"date":"27-Jan","avgLow":"22°","avgHigh":"36°","recLow":"4° (1994)","recHigh":"65° (1974)","index":26,"max":30,"min":20},
{"date":"28-Jan","avgLow":"22°","avgHigh":"36°","recLow":"4° (1994)","recHigh":"56° (1974)","index":27,"max":34,"min":16},
{"date":"29-Jan","avgLow":"22°","avgHigh":"36°","recLow":"1° (1977)","recHigh":"55° (1975)","index":28,"max":36,"min":19},
{"date":"30-Jan","avgLow":"22°","avgHigh":"37°","recLow":"7° (1952)","recHigh":"57° (1974)","index":29,"max":38,"min":19},
{"date":"31-Jan","avgLow":"22°","avgHigh":"37°","recLow":"6° (1981)","recHigh":"58° (1974)","index":30,"max":26,"min":13},
{"date":"1-Feb","avgLow":"22°","avgHigh":"37°","recLow":"4° (1980)","recHigh":"62° (1989)","index":31,"max":36,"min":20},
{"date":"2-Feb","avgLow":"22°","avgHigh":"37°","recLow":"-2° (1961)","recHigh":"58° (1973)","index":32,"max":34,"min":14},
{"date":"3-Feb","avgLow":"22°","avgHigh":"37°","recLow":"1° (1955)","recHigh":"56° (1983)","index":33,"max":26,"min":13},
{"date":"4-Feb","avgLow":"22°","avgHigh":"37°","recLow":"4° (1981)","recHigh":"50° (1984)","index":34,"max":43,"min":24},
{"date":"5-Feb","avgLow":"22°","avgHigh":"38°","recLow":"2° (1981)","recHigh":"52° (1964)","index":35,"max":42,"min":14},
{"date":"6-Feb","avgLow":"23°","avgHigh":"38°","recLow":"3° (1996)","recHigh":"53° (1960)","index":36,"max":27,"min":12},
{"date":"7-Feb","avgLow":"23°","avgHigh":"38°","recLow":"5° (1995)","recHigh":"50° (1953)","index":37,"max":40,"min":25},
{"date":"8-Feb","avgLow":"23°","avgHigh":"38°","recLow":"2° (1963)","recHigh":"61° (1965)","index":38,"max":37,"min":29},
{"date":"9-Feb","avgLow":"23°","avgHigh":"38°","recLow":"4° (1979)","recHigh":"58° (1949)","index":39,"max":29,"min":25},
{"date":"10-Feb","avgLow":"23°","avgHigh":"38°","recLow":"0° (1979)","recHigh":"55° (1955)","index":40,"max":40,"min":26},
{"date":"11-Feb","avgLow":"23°","avgHigh":"39°","recLow":"-3° (1979)","recHigh":"63° (1960)","index":41,"max":34,"min":22},
{"date":"12-Feb","avgLow":"23°","avgHigh":"39°","recLow":"0° (1979)","recHigh":"54° (1966)","index":42,"max":40,"min":16},
{"date":"13-Feb","avgLow":"23°","avgHigh":"39°","recLow":"0° (1979)","recHigh":"60° (1951)","index":43,"max":21,"min":8},
{"date":"14-Feb","avgLow":"24°","avgHigh":"39°","recLow":"0° (1979)","recHigh":"55° (1949)","index":44,"max":32,"min":16},
{"date":"15-Feb","avgLow":"24°","avgHigh":"39°","recLow":"0° (1987)","recHigh":"71° (1949)","index":45,"max":25,"min":4},
{"date":"16-Feb","avgLow":"24°","avgHigh":"40°","recLow":"2° (1987)","recHigh":"66° (1954)","index":46,"max":21,"min":3},
{"date":"17-Feb","avgLow":"24°","avgHigh":"40°","recLow":"-3° (1979)","recHigh":"62° (1976)","index":47,"max":27,"min":14},
{"date":"18-Feb","avgLow":"24°","avgHigh":"40°","recLow":"-1° (1979)","recHigh":"55° (1954)","index":48,"max":33,"min":19},
{"date":"19-Feb","avgLow":"25°","avgHigh":"40°","recLow":"10° (1959)","recHigh":"58° (1961)","index":49,"max":27,"min":8},
{"date":"20-Feb","avgLow":"25°","avgHigh":"41°","recLow":"5° (1950)","recHigh":"65° (1997)","index":50,"max":19,"min":2},
{"date":"21-Feb","avgLow":"25°","avgHigh":"41°","recLow":"5° (1950)","recHigh":"60° (1953)","index":51,"max":32,"min":13},
{"date":"22-Feb","avgLow":"25°","avgHigh":"41°","recLow":"8° (1963)","recHigh":"64° (1997)","index":52,"max":43,"min":32},
{"date":"23-Feb","avgLow":"26°","avgHigh":"41°","recLow":"10° (1963)","recHigh":"71° (1997)","index":53,"max":38,"min":8},
{"date":"24-Feb","avgLow":"26°","avgHigh":"42°","recLow":"16° (1968)","recHigh":"72° (1985)","index":54,"max":24,"min":4},
{"date":"25-Feb","avgLow":"26°","avgHigh":"42°","recLow":"13° (1989)","recHigh":"65° (1976)","index":55,"max":37,"min":20},
{"date":"26-Feb","avgLow":"26°","avgHigh":"42°","recLow":"10° (1970)","recHigh":"63° (1996)","index":56,"max":32,"min":21},
{"date":"27-Feb","avgLow":"27°","avgHigh":"42°","recLow":"9° (1950)","recHigh":"65° (1976)","index":57,"max":30,"min":18},
{"date":"28-Feb","avgLow":"27°","avgHigh":"43°","recLow":"11° (1994)","recHigh":"72° (1997)","index":58,"max":29,"min":13},
{"date":"29-Feb","avgLow":"27°","avgHigh":"43°","recLow":"7° (1980)","recHigh":"65° (1976)","index":59,"max":null,"min":null},
{"date":"1-Mar","avgLow":"27°","avgHigh":"43°","recLow":"5° (1980)","recHigh":"70° (1972)","index":60,"max":31,"min":24},
{"date":"2-Mar","avgLow":"27°","avgHigh":"43°","recLow":"10° (1962)","recHigh":"75° (1972)","index":61,"max":39,"min":27},
{"date":"3-Mar","avgLow":"28°","avgHigh":"44°","recLow":"10° (1950)","recHigh":"61° (1997)","index":62,"max":37,"min":22},
{"date":"4-Mar","avgLow":"28°","avgHigh":"44°","recLow":"11° (1950)","recHigh":"63° (1974)","index":63,"max":45,"min":35},
{"date":"5-Mar","avgLow":"28°","avgHigh":"44°","recLow":"12° (1978)","recHigh":"72° (1964)","index":64,"max":40,"min":19},
{"date":"6-Mar","avgLow":"29°","avgHigh":"44°","recLow":"16° (1978)","recHigh":"61° (1996)","index":65,"max":27,"min":12},
{"date":"7-Mar","avgLow":"29°","avgHigh":"45°","recLow":"9° (1986)","recHigh":"67° (1974)","index":66,"max":38,"min":18},
{"date":"8-Mar","avgLow":"29°","avgHigh":"45°","recLow":"9° (1986)","recHigh":"72° (1987)","index":67,"max":49,"min":37},
{"date":"9-Mar","avgLow":"30°","avgHigh":"45°","recLow":"10° (1996)","recHigh":"62° (1955)","index":68,"max":54,"min":40},
{"date":"10-Mar","avgLow":"30°","avgHigh":"46°","recLow":"10° (1984)","recHigh":"68° (1955)","index":69,"max":53,"min":39},
{"date":"11-Mar","avgLow":"30°","avgHigh":"46°","recLow":"12° (1960)","recHigh":"64° (1955)","index":70,"max":59,"min":44},
{"date":"12-Mar","avgLow":"31°","avgHigh":"46°","recLow":"12° (1984)","recHigh":"62° (1973)","index":71,"max":47,"min":36},
{"date":"13-Mar","avgLow":"31°","avgHigh":"47°","recLow":"19° (1960)","recHigh":"65° (1957)","index":72,"max":43,"min":31},
{"date":"14-Mar","avgLow":"31°","avgHigh":"47°","recLow":"19° (1981)","recHigh":"69° (1995)","index":73,"max":51,"min":40},
{"date":"15-Mar","avgLow":"32°","avgHigh":"47°","recLow":"17° (1979)","recHigh":"64° (1983)","index":74,"max":44,"min":36},
{"date":"16-Mar","avgLow":"32°","avgHigh":"48°","recLow":"15° (1981)","recHigh":"67° (1995)","index":75,"max":52,"min":35},
{"date":"17-Mar","avgLow":"32°","avgHigh":"48°","recLow":"13° (1981)","recHigh":"65° (1995)","index":76,"max":57,"min":34},
{"date":"18-Mar","avgLow":"33°","avgHigh":"48°","recLow":"5° (1981)","recHigh":"69° (1969)","index":77,"max":39,"min":29},
{"date":"19-Mar","avgLow":"33°","avgHigh":"48°","recLow":"16° (1949)","recHigh":"68° (1986)","index":78,"max":43,"min":29},
{"date":"20-Mar","avgLow":"33°","avgHigh":"49°","recLow":"15° (1981)","recHigh":"70° (1959)","index":79,"max":38,"min":29},
{"date":"21-Mar","avgLow":"34°","avgHigh":"49°","recLow":"12° (1986)","recHigh":"67° (1976)","index":80,"max":47,"min":29},
{"date":"22-Mar","avgLow":"34°","avgHigh":"49°","recLow":"14° (1988)","recHigh":"64° (1979)","index":81,"max":43,"min":28},
{"date":"23-Mar","avgLow":"34°","avgHigh":"50°","recLow":"19° (1959)","recHigh":"65° (1949)","index":82,"max":38,"min":23},
{"date":"24-Mar","avgLow":"35°","avgHigh":"50°","recLow":"23° (1956)","recHigh":"74° (1988)","index":83,"max":45,"min":26},
{"date":"25-Mar","avgLow":"35°","avgHigh":"50°","recLow":"18° (1956)","recHigh":"77° (1963)","index":84,"max":49,"min":34},
{"date":"26-Mar","avgLow":"35°","avgHigh":"51°","recLow":"20° (1960)","recHigh":"70° (1986)","index":85,"max":62,"min":42},
{"date":"27-Mar","avgLow":"36°","avgHigh":"51°","recLow":"24° (1966)","recHigh":"74° (1949)","index":86,"max":46,"min":39},
{"date":"28-Mar","avgLow":"36°","avgHigh":"52°","recLow":"20° (1982)","recHigh":"78° (1989)","index":87,"max":40,"min":26},
{"date":"29-Mar","avgLow":"36°","avgHigh":"52°","recLow":"25° (1959)","recHigh":"80° (1985)","index":88,"max":46,"min":25},
{"date":"30-Mar","avgLow":"37°","avgHigh":"52°","recLow":"22° (1970)","recHigh":"76° (1962)","index":89,"max":54,"min":36},
{"date":"31-Mar","avgLow":"37°","avgHigh":"53°","recLow":"20° (1964)","recHigh":"70° (1986)","index":90,"max":47,"min":35},
{"date":"1-Apr","avgLow":"37°","avgHigh":"53°","recLow":"26° (1964)","recHigh":"76° (1978)","index":91,"max":51,"min":32},
{"date":"2-Apr","avgLow":"38°","avgHigh":"53°","recLow":"29° (1965)","recHigh":"74° (1955)","index":92,"max":67,"min":41},
{"date":"3-Apr","avgLow":"38°","avgHigh":"54°","recLow":"22° (1954)","recHigh":"70° (1964)","index":93,"max":64,"min":59},
{"date":"4-Apr","avgLow":"38°","avgHigh":"54°","recLow":"23° (1954)","recHigh":"77° (1950)","index":94,"max":60,"min":42},
{"date":"5-Apr","avgLow":"39°","avgHigh":"54°","recLow":"22° (1995)","recHigh":"74° (1989)","index":95,"max":61,"min":42},
{"date":"6-Apr","avgLow":"39°","avgHigh":"55°","recLow":"21° (1982)","recHigh":"70° (1974)","index":96,"max":63,"min":42},
{"date":"7-Apr","avgLow":"39°","avgHigh":"55°","recLow":"18° (1982)","recHigh":"72° (1954)","index":97,"max":62,"min":42},
{"date":"8-Apr","avgLow":"40°","avgHigh":"55°","recLow":"21° (1982)","recHigh":"81° (1959)","index":98,"max":45,"min":37},
{"date":"9-Apr","avgLow":"40°","avgHigh":"56°","recLow":"25° (1977)","recHigh":"75° (1970)","index":99,"max":43,"min":37},
{"date":"10-Apr","avgLow":"40°","avgHigh":"56°","recLow":"26° (1985)","recHigh":"79° (1955)","index":100,"max":56,"min":39},
{"date":"11-Apr","avgLow":"41°","avgHigh":"56°","recLow":"27° (1997)","recHigh":"80° (1955)","index":101,"max":57,"min":44},
{"date":"12-Apr","avgLow":"41°","avgHigh":"57°","recLow":"26° (1976)","recHigh":"87° (1977)","index":102,"max":66,"min":43},
{"date":"13-Apr","avgLow":"41°","avgHigh":"57°","recLow":"28° (1950)","recHigh":"83° (1977)","index":103,"max":68,"min":50},
{"date":"14-Apr","avgLow":"42°","avgHigh":"57°","recLow":"21° (1950)","recHigh":"74° (1949)","index":104,"max":65,"min":55},
{"date":"15-Apr","avgLow":"42°","avgHigh":"58°","recLow":"27° (1981)","recHigh":"83° (1949)","index":105,"max":72,"min":51},
{"date":"16-Apr","avgLow":"42°","avgHigh":"58°","recLow":"26° (1981)","recHigh":"80° (1976)","index":106,"max":64,"min":52},
{"date":"17-Apr","avgLow":"43°","avgHigh":"59°","recLow":"28° (1980)","recHigh":"83° (1976)","index":107,"max":71,"min":55},
{"date":"18-Apr","avgLow":"43°","avgHigh":"59°","recLow":"36° (1983)","recHigh":"83° (1964)","index":108,"max":80,"min":59},
{"date":"19-Apr","avgLow":"43°","avgHigh":"59°","recLow":"31° (1979)","recHigh":"86° (1985)","index":109,"max":64,"min":48},
{"date":"20-Apr","avgLow":"44°","avgHigh":"60°","recLow":"33° (1981)","recHigh":"82° (1994)","index":110,"max":57,"min":46},
{"date":"21-Apr","avgLow":"44°","avgHigh":"60°","recLow":"20° (1981)","recHigh":"82° (1957)","index":111,"max":65,"min":52},
{"date":"22-Apr","avgLow":"44°","avgHigh":"60°","recLow":"27° (1981)","recHigh":"83° (1973)","index":112,"max":69,"min":48},
{"date":"23-Apr","avgLow":"45°","avgHigh":"61°","recLow":"30° (1989)","recHigh":"81° (1973)","index":113,"max":52,"min":41},
{"date":"24-Apr","avgLow":"45°","avgHigh":"61°","recLow":"38° (1956)","recHigh":"85° (1996)","index":114,"max":52,"min":39},
{"date":"25-Apr","avgLow":"45°","avgHigh":"61°","recLow":"33° (1981)","recHigh":"87° (1960)","index":115,"max":62,"min":38},
{"date":"26-Apr","avgLow":"46°","avgHigh":"62°","recLow":"33° (1981)","recHigh":"80° (1985)","index":116,"max":64,"min":46},
{"date":"27-Apr","avgLow":"46°","avgHigh":"62°","recLow":"32° (1956)","recHigh":"86° (1962)","index":117,"max":62,"min":49},
{"date":"28-Apr","avgLow":"47°","avgHigh":"62°","recLow":"38° (1966)","recHigh":"82° (1956)","index":118,"max":71,"min":50},
{"date":"29-Apr","avgLow":"47°","avgHigh":"63°","recLow":"37° (1966)","recHigh":"86° (1974)","index":119,"max":78,"min":50},
{"date":"30-Apr","avgLow":"47°","avgHigh":"63°","recLow":"40° (1949)","recHigh":"79° (1974)","index":120,"max":67,"min":48},
{"date":"1-May","avgLow":"48°","avgHigh":"63°","recLow":"36° (1963)","recHigh":"83° (1957)","index":121,"max":63,"min":49},
{"date":"2-May","avgLow":"48°","avgHigh":"64°","recLow":"34° (1963)","recHigh":"80° (1951)","index":122,"max":74,"min":48},
{"date":"3-May","avgLow":"48°","avgHigh":"64°","recLow":"38° (1957)","recHigh":"82° (1969)","index":123,"max":80,"min":51},
{"date":"4-May","avgLow":"49°","avgHigh":"64°","recLow":"38° (1986)","recHigh":"87° (1965)","index":124,"max":85,"min":57},
{"date":"5-May","avgLow":"49°","avgHigh":"65°","recLow":"40° (1956)","recHigh":"86° (1949)","index":125,"max":85,"min":66},
{"date":"6-May","avgLow":"49°","avgHigh":"65°","recLow":"41° (1970)","recHigh":"88° (1986)","index":126,"max":73,"min":59},
{"date":"7-May","avgLow":"50°","avgHigh":"66°","recLow":"36° (1981)","recHigh":"78° (1949)","index":127,"max":80,"min":56},
{"date":"8-May","avgLow":"50°","avgHigh":"66°","recLow":"36° (1956)","recHigh":"87° (1964)","index":128,"max":82,"min":56},
{"date":"9-May","avgLow":"50°","avgHigh":"66°","recLow":"36° (1977)","recHigh":"88° (1970)","index":129,"max":70,"min":57},
{"date":"10-May","avgLow":"51°","avgHigh":"67°","recLow":"34° (1966)","recHigh":"89° (1970)","index":130,"max":83,"min":61},
{"date":"11-May","avgLow":"51°","avgHigh":"67°","recLow":"40° (1966)","recHigh":"85° (1965)","index":131,"max":84,"min":70},
{"date":"12-May","avgLow":"51°","avgHigh":"67°","recLow":"39° (1963)","recHigh":"85° (1959)","index":132,"max":86,"min":64},
{"date":"13-May","avgLow":"52°","avgHigh":"67°","recLow":"38° (1981)","recHigh":"88° (1956)","index":133,"max":70,"min":53},
{"date":"14-May","avgLow":"52°","avgHigh":"68°","recLow":"41° (1996)","recHigh":"81° (1985)","index":134,"max":73,"min":50},
{"date":"15-May","avgLow":"52°","avgHigh":"68°","recLow":"41° (1996)","recHigh":"83° (1951)","index":135,"max":75,"min":55},
{"date":"16-May","avgLow":"53°","avgHigh":"68°","recLow":"40° (1983)","recHigh":"87° (1951)","index":136,"max":75,"min":57},
{"date":"17-May","avgLow":"53°","avgHigh":"69°","recLow":"38° (1956)","recHigh":"90° (1974)","index":137,"max":83,"min":64},
{"date":"18-May","avgLow":"53°","avgHigh":"69°","recLow":"38° (1981)","recHigh":"88° (1977)","index":138,"max":75,"min":60},
{"date":"19-May","avgLow":"54°","avgHigh":"69°","recLow":"38° (1976)","recHigh":"95° (1962)","index":139,"max":80,"min":59},
{"date":"20-May","avgLow":"54°","avgHigh":"70°","recLow":"41° (1981)","recHigh":"88° (1975)","index":140,"max":67,"min":54},
{"date":"21-May","avgLow":"55°","avgHigh":"70°","recLow":"41° (1949)","recHigh":"96° (1996)","index":141,"max":62,"min":52},
{"date":"22-May","avgLow":"55°","avgHigh":"70°","recLow":"47° (1950)","recHigh":"94° (1996)","index":142,"max":74,"min":55},
{"date":"23-May","avgLow":"55°","avgHigh":"71°","recLow":"44° (1981)","recHigh":"93° (1964)","index":143,"max":70,"min":49},
{"date":"24-May","avgLow":"56°","avgHigh":"71°","recLow":"41° (1963)","recHigh":"92° (1964)","index":144,"max":81,"min":56},
{"date":"25-May","avgLow":"56°","avgHigh":"71°","recLow":"40° (1956)","recHigh":"89° (1994)","index":145,"max":85,"min":64},
{"date":"26-May","avgLow":"56°","avgHigh":"72°","recLow":"44° (1972)","recHigh":"92° (1965)","index":146,"max":88,"min":67},
{"date":"27-May","avgLow":"57°","avgHigh":"72°","recLow":"41° (1961)","recHigh":"86° (1985)","index":147,"max":85,"min":70},
{"date":"28-May","avgLow":"57°","avgHigh":"72°","recLow":"39° (1961)","recHigh":"88° (1977)","index":148,"max":85,"min":70},
{"date":"29-May","avgLow":"57°","avgHigh":"73°","recLow":"46° (1953)","recHigh":"97° (1969)","index":149,"max":85,"min":65},
{"date":"30-May","avgLow":"58°","avgHigh":"73°","recLow":"44° (1949)","recHigh":"92° (1986)","index":150,"max":85,"min":67},
{"date":"31-May","avgLow":"58°","avgHigh":"73°","recLow":"48° (1961)","recHigh":"89° (1986)","index":151,"max":87,"min":57},
{"date":"1-Jun","avgLow":"58°","avgHigh":"73°","recLow":"46° (1984)","recHigh":"92° (1989)","index":152,"max":58,"min":51},
{"date":"2-Jun","avgLow":"59°","avgHigh":"74°","recLow":"49° (1981)","recHigh":"91° (1989)","index":153,"max":55,"min":50},
{"date":"3-Jun","avgLow":"59°","avgHigh":"74°","recLow":"46° (1986)","recHigh":"83° (1989)","index":154,"max":70,"min":52},
{"date":"4-Jun","avgLow":"59°","avgHigh":"74°","recLow":"48° (1988)","recHigh":"88° (1971)","index":155,"max":65,"min":54},
{"date":"5-Jun","avgLow":"60°","avgHigh":"75°","recLow":"50° (1964)","recHigh":"91° (1966)","index":156,"max":70,"min":55},
{"date":"6-Jun","avgLow":"60°","avgHigh":"75°","recLow":"50° (1958)","recHigh":"90° (1953)","index":157,"max":76,"min":60},
{"date":"7-Jun","avgLow":"60°","avgHigh":"75°","recLow":"46° (1958)","recHigh":"90° (1971)","index":158,"max":74,"min":55},
{"date":"8-Jun","avgLow":"60°","avgHigh":"75°","recLow":"48° (1981)","recHigh":"92° (1984)","index":159,"max":79,"min":63},
{"date":"9-Jun","avgLow":"61°","avgHigh":"76°","recLow":"44° (1980)","recHigh":"96° (1984)","index":160,"max":83,"min":68},
{"date":"10-Jun","avgLow":"61°","avgHigh":"76°","recLow":"49° (1957)","recHigh":"94° (1974)","index":161,"max":82,"min":65},
{"date":"11-Jun","avgLow":"61°","avgHigh":"76°","recLow":"44° (1972)","recHigh":"94° (1973)","index":162,"max":89,"min":72},
{"date":"12-Jun","avgLow":"62°","avgHigh":"76°","recLow":"44° (1979)","recHigh":"93° (1973)","index":163,"max":88,"min":73},
{"date":"13-Jun","avgLow":"62°","avgHigh":"77°","recLow":"50° (1979)","recHigh":"94° (1983)","index":164,"max":86,"min":72},
{"date":"14-Jun","avgLow":"62°","avgHigh":"77°","recLow":"49° (1978)","recHigh":"97° (1956)","index":165,"max":88,"min":66},
{"date":"15-Jun","avgLow":"63°","avgHigh":"77°","recLow":"51° (1951)","recHigh":"95° (1956)","index":166,"max":83,"min":64},
{"date":"16-Jun","avgLow":"63°","avgHigh":"77°","recLow":"50° (1961)","recHigh":"96° (1994)","index":167,"max":79,"min":65},
{"date":"17-Jun","avgLow":"63°","avgHigh":"78°","recLow":"50° (1959)","recHigh":"93° (1952)","index":168,"max":82,"min":66},
{"date":"18-Jun","avgLow":"63°","avgHigh":"78°","recLow":"46° (1950)","recHigh":"91° (1962)","index":169,"max":71,"min":64},
{"date":"19-Jun","avgLow":"64°","avgHigh":"78°","recLow":"52° (1956)","recHigh":"91° (1994)","index":170,"max":87,"min":68},
{"date":"20-Jun","avgLow":"64°","avgHigh":"78°","recLow":"49° (1959)","recHigh":"96° (1994)","index":171,"max":75,"min":64},
{"date":"21-Jun","avgLow":"64°","avgHigh":"79°","recLow":"55° (1980)","recHigh":"92° (1949)","index":172,"max":88,"min":71},
{"date":"22-Jun","avgLow":"64°","avgHigh":"79°","recLow":"53° (1963)","recHigh":"92° (1988)","index":173,"max":87,"min":70},
{"date":"23-Jun","avgLow":"65°","avgHigh":"79°","recLow":"54° (1958)","recHigh":"91° (1965)","index":174,"max":90,"min":75},
{"date":"24-Jun","avgLow":"65°","avgHigh":"79°","recLow":"53° (1979)","recHigh":"95° (1975)","index":175,"max":84,"min":68},
{"date":"25-Jun","avgLow":"65°","avgHigh":"80°","recLow":"48° (1979)","recHigh":"96° (1952)","index":176,"max":83,"min":65},
{"date":"26-Jun","avgLow":"65°","avgHigh":"80°","recLow":"46° (1981)","recHigh":"100° (1952)","index":177,"max":81,"min":69},
{"date":"27-Jun","avgLow":"65°","avgHigh":"80°","recLow":"50° (1985)","recHigh":"98° (1966)","index":178,"max":71,"min":58},
{"date":"28-Jun","avgLow":"66°","avgHigh":"80°","recLow":"50° (1985)","recHigh":"95° (1969)","index":179,"max":73,"min":62},
{"date":"29-Jun","avgLow":"66°","avgHigh":"80°","recLow":"57° (1979)","recHigh":"96° (1959)","index":180,"max":76,"min":63},
{"date":"30-Jun","avgLow":"66°","avgHigh":"81°","recLow":"56° (1988)","recHigh":"97° (1964)","index":181,"max":82,"min":68},
{"date":"1-Jul","avgLow":"66°","avgHigh":"81°","recLow":"54° (1988)","recHigh":"97° (1963)","index":182,"max":82,"min":69},
{"date":"2-Jul","avgLow":"66°","avgHigh":"81°","recLow":"56° (1988)","recHigh":"98° (1966)","index":183,"max":80,"min":69},
{"date":"3-Jul","avgLow":"67°","avgHigh":"81°","recLow":"56° (1957)","recHigh":"102° (1966)","index":184,"max":82,"min":66},
{"date":"4-Jul","avgLow":"67°","avgHigh":"81°","recLow":"53° (1979)","recHigh":"98° (1966)","index":185,"max":75,"min":69},
{"date":"5-Jul","avgLow":"67°","avgHigh":"82°","recLow":"49° (1979)","recHigh":"97° (1955)","index":186,"max":83,"min":68},
{"date":"6-Jul","avgLow":"67°","avgHigh":"82°","recLow":"49° (1979)","recHigh":"94° (1986)","index":187,"max":83,"min":72},
{"date":"7-Jul","avgLow":"67°","avgHigh":"82°","recLow":"53° (1979)","recHigh":"96° (1986)","index":188,"max":88,"min":75},
{"date":"8-Jul","avgLow":"67°","avgHigh":"82°","recLow":"57° (1979)","recHigh":"95° (1971)","index":189,"max":88,"min":77},
{"date":"9-Jul","avgLow":"68°","avgHigh":"82°","recLow":"54° (1963)","recHigh":"97° (1974)","index":190,"max":79,"min":68},
{"date":"10-Jul","avgLow":"68°","avgHigh":"82°","recLow":"50° (1953)","recHigh":"94° (1974)","index":191,"max":84,"min":72},
{"date":"11-Jul","avgLow":"68°","avgHigh":"82°","recLow":"59° (1957)","recHigh":"94° (1987)","index":192,"max":88,"min":69},
{"date":"12-Jul","avgLow":"68°","avgHigh":"83°","recLow":"55° (1978)","recHigh":"96° (1966)","index":193,"max":89,"min":72},
{"date":"13-Jul","avgLow":"68°","avgHigh":"83°","recLow":"57° (1980)","recHigh":"97° (1966)","index":194,"max":88,"min":73},
{"date":"14-Jul","avgLow":"68°","avgHigh":"83°","recLow":"61° (1960)","recHigh":"98° (1954)","index":195,"max":82,"min":73},
{"date":"15-Jul","avgLow":"68°","avgHigh":"83°","recLow":"58° (1950)","recHigh":"98° (1983)","index":196,"max":81,"min":72},
{"date":"16-Jul","avgLow":"68°","avgHigh":"83°","recLow":"59° (1957)","recHigh":"97° (1983)","index":197,"max":80,"min":64},
{"date":"17-Jul","avgLow":"68°","avgHigh":"83°","recLow":"58° (1954)","recHigh":"97° (1955)","index":198,"max":81,"min":67},
{"date":"18-Jul","avgLow":"68°","avgHigh":"83°","recLow":"61° (1956)","recHigh":"95° (1983)","index":199,"max":85,"min":71},
{"date":"19-Jul","avgLow":"68°","avgHigh":"83°","recLow":"60° (1954)","recHigh":"96° (1977)","index":200,"max":93,"min":78},
{"date":"20-Jul","avgLow":"69°","avgHigh":"83°","recLow":"57° (1951)","recHigh":"97° (1957)","index":201,"max":94,"min":82},
{"date":"21-Jul","avgLow":"69°","avgHigh":"83°","recLow":"58° (1950)","recHigh":"97° (1977)","index":202,"max":89,"min":74},
{"date":"22-Jul","avgLow":"69°","avgHigh":"83°","recLow":"57° (1956)","recHigh":"100° (1957)","index":203,"max":85,"min":69},
{"date":"23-Jul","avgLow":"69°","avgHigh":"83°","recLow":"62° (1950)","recHigh":"97° (1955)","index":204,"max":86,"min":68},
{"date":"24-Jul","avgLow":"69°","avgHigh":"83°","recLow":"58° (1950)","recHigh":"92° (1972)","index":205,"max":87,"min":70},
{"date":"25-Jul","avgLow":"69°","avgHigh":"83°","recLow":"57° (1953)","recHigh":"95° (1987)","index":206,"max":88,"min":69},
{"date":"26-Jul","avgLow":"69°","avgHigh":"83°","recLow":"60° (1953)","recHigh":"96° (1989)","index":207,"max":90,"min":74},
{"date":"27-Jul","avgLow":"69°","avgHigh":"83°","recLow":"55° (1977)","recHigh":"96° (1963)","index":208,"max":86,"min":71},
{"date":"28-Jul","avgLow":"69°","avgHigh":"83°","recLow":"59° (1977)","recHigh":"95° (1949)","index":209,"max":95,"min":75},
{"date":"29-Jul","avgLow":"69°","avgHigh":"83°","recLow":"60° (1984)","recHigh":"96° (1949)","index":210,"max":96,"min":78},
{"date":"30-Jul","avgLow":"68°","avgHigh":"83°","recLow":"60° (1956)","recHigh":"96° (1988)","index":211,"max":87,"min":76},
{"date":"31-Jul","avgLow":"68°","avgHigh":"83°","recLow":"57° (1956)","recHigh":"98° (1954)","index":212,"max":89,"min":72},
{"date":"1-Aug","avgLow":"68°","avgHigh":"83°","recLow":"59° (1978)","recHigh":"99° (1955)","index":213,"max":89,"min":75},
{"date":"2-Aug","avgLow":"68°","avgHigh":"83°","recLow":"59° (1951)","recHigh":"100° (1955)","index":214,"max":89,"min":71},
{"date":"3-Aug","avgLow":"68°","avgHigh":"83°","recLow":"54° (1959)","recHigh":"97° (1975)","index":215,"max":90,"min":75},
{"date":"4-Aug","avgLow":"68°","avgHigh":"83°","recLow":"57° (1964)","recHigh":"94° (1955)","index":216,"max":89,"min":69},
{"date":"5-Aug","avgLow":"68°","avgHigh":"83°","recLow":"56° (1951)","recHigh":"96° (1995)","index":217,"max":87,"min":72},
{"date":"6-Aug","avgLow":"68°","avgHigh":"82°","recLow":"54° (1957)","recHigh":"92° (1989)","index":218,"max":83,"min":67},
{"date":"7-Aug","avgLow":"68°","avgHigh":"82°","recLow":"57° (1957)","recHigh":"92° (1955)","index":219,"max":84,"min":69},
{"date":"8-Aug","avgLow":"68°","avgHigh":"82°","recLow":"54° (1989)","recHigh":"91° (1949)","index":220,"max":82,"min":68},
{"date":"9-Aug","avgLow":"68°","avgHigh":"82°","recLow":"55° (1989)","recHigh":"98° (1949)","index":221,"max":85,"min":68},
{"date":"10-Aug","avgLow":"68°","avgHigh":"82°","recLow":"56° (1964)","recHigh":"95° (1949)","index":222,"max":84,"min":70},
{"date":"11-Aug","avgLow":"67°","avgHigh":"82°","recLow":"55° (1962)","recHigh":"97° (1949)","index":223,"max":81,"min":71},
{"date":"12-Aug","avgLow":"67°","avgHigh":"82°","recLow":"50° (1979)","recHigh":"92° (1988)","index":224,"max":85,"min":71},
{"date":"13-Aug","avgLow":"67°","avgHigh":"82°","recLow":"51° (1979)","recHigh":"93° (1970)","index":225,"max":83,"min":67},
{"date":"14-Aug","avgLow":"67°","avgHigh":"81°","recLow":"53° (1961)","recHigh":"94° (1988)","index":226,"max":88,"min":67},
{"date":"15-Aug","avgLow":"67°","avgHigh":"81°","recLow":"54° (1979)","recHigh":"94° (1985)","index":227,"max":92,"min":73},
{"date":"16-Aug","avgLow":"67°","avgHigh":"81°","recLow":"52° (1979)","recHigh":"91° (1959)","index":228,"max":93,"min":76},
{"date":"17-Aug","avgLow":"66°","avgHigh":"81°","recLow":"50° (1979)","recHigh":"93° (1995)","index":229,"max":95,"min":78},
{"date":"18-Aug","avgLow":"66°","avgHigh":"81°","recLow":"54° (1979)","recHigh":"91° (1995)","index":230,"max":90,"min":73},
{"date":"19-Aug","avgLow":"66°","avgHigh":"81°","recLow":"56° (1963)","recHigh":"94° (1966)","index":231,"max":87,"min":77},
{"date":"20-Aug","avgLow":"66°","avgHigh":"81°","recLow":"53° (1949)","recHigh":"95° (1955)","index":232,"max":86,"min":77},
{"date":"21-Aug","avgLow":"66°","avgHigh":"80°","recLow":"50° (1982)","recHigh":"95° (1955)","index":233,"max":87,"min":71},
{"date":"22-Aug","avgLow":"65°","avgHigh":"80°","recLow":"55° (1950)","recHigh":"96° (1995)","index":234,"max":86,"min":69},
{"date":"23-Aug","avgLow":"65°","avgHigh":"80°","recLow":"53° (1952)","recHigh":"92° (1989)","index":235,"max":85,"min":70},
{"date":"24-Aug","avgLow":"65°","avgHigh":"80°","recLow":"53° (1952)","recHigh":"92° (1969)","index":236,"max":87,"min":73},
{"date":"25-Aug","avgLow":"65°","avgHigh":"80°","recLow":"52° (1963)","recHigh":"94° (1969)","index":237,"max":90,"min":73},
{"date":"26-Aug","avgLow":"65°","avgHigh":"79°","recLow":"54° (1952)","recHigh":"100° (1948)","index":238,"max":85,"min":67},
{"date":"27-Aug","avgLow":"64°","avgHigh":"79°","recLow":"55° (1969)","recHigh":"99° (1948)","index":239,"max":82,"min":67},
{"date":"28-Aug","avgLow":"64°","avgHigh":"79°","recLow":"47° (1982)","recHigh":"98° (1953)","index":240,"max":82,"min":63},
{"date":"29-Aug","avgLow":"64°","avgHigh":"79°","recLow":"48° (1965)","recHigh":"95° (1953)","index":241,"max":87,"min":67},
{"date":"30-Aug","avgLow":"63°","avgHigh":"79°","recLow":"48° (1986)","recHigh":"99° (1973)","index":242,"max":90,"min":72},
{"date":"31-Aug","avgLow":"63°","avgHigh":"78°","recLow":"50° (1965)","recHigh":"98° (1953)","index":243,"max":91,"min":76},
{"date":"1-Sep","avgLow":"63°","avgHigh":"78°","recLow":"53° (1948)","recHigh":"92° (1969)","index":244,"max":90,"min":76},
{"date":"2-Sep","avgLow":"63°","avgHigh":"78°","recLow":"52° (1949)","recHigh":"99° (1953)","index":245,"max":91,"min":74},
{"date":"3-Sep","avgLow":"62°","avgHigh":"78°","recLow":"52° (1958)","recHigh":"91° (1953)","index":246,"max":93,"min":74},
{"date":"4-Sep","avgLow":"62°","avgHigh":"77°","recLow":"54° (1994)","recHigh":"93° (1961)","index":247,"max":85,"min":72},
{"date":"5-Sep","avgLow":"62°","avgHigh":"77°","recLow":"52° (1950)","recHigh":"93° (1985)","index":248,"max":83,"min":67},
{"date":"6-Sep","avgLow":"61°","avgHigh":"77°","recLow":"48° (1984)","recHigh":"94° (1983)","index":249,"max":87,"min":65},
{"date":"7-Sep","avgLow":"61°","avgHigh":"77°","recLow":"47° (1962)","recHigh":"92° (1983)","index":250,"max":92,"min":70},
{"date":"8-Sep","avgLow":"61°","avgHigh":"76°","recLow":"50° (1984)","recHigh":"86° (1985)","index":251,"max":97,"min":76},
{"date":"9-Sep","avgLow":"60°","avgHigh":"76°","recLow":"48° (1986)","recHigh":"90° (1959)","index":252,"max":90,"min":76},
{"date":"10-Sep","avgLow":"60°","avgHigh":"76°","recLow":"45° (1956)","recHigh":"98° (1983)","index":253,"max":79,"min":70},
{"date":"11-Sep","avgLow":"60°","avgHigh":"75°","recLow":"49° (1995)","recHigh":"96° (1983)","index":254,"max":81,"min":66},
{"date":"12-Sep","avgLow":"59°","avgHigh":"75°","recLow":"47° (1958)","recHigh":"89° (1961)","index":255,"max":79,"min":69},
{"date":"13-Sep","avgLow":"59°","avgHigh":"75°","recLow":"45° (1985)","recHigh":"92° (1952)","index":256,"max":80,"min":62},
{"date":"14-Sep","avgLow":"59°","avgHigh":"75°","recLow":"41° (1953)","recHigh":"87° (1956)","index":257,"max":77,"min":59},
{"date":"15-Sep","avgLow":"58°","avgHigh":"74°","recLow":"45° (1964)","recHigh":"88° (1994)","index":258,"max":84,"min":62},
{"date":"16-Sep","avgLow":"58°","avgHigh":"74°","recLow":"40° (1984)","recHigh":"91° (1970)","index":259,"max":88,"min":66},
{"date":"17-Sep","avgLow":"58°","avgHigh":"74°","recLow":"42° (1986)","recHigh":"90° (1972)","index":260,"max":89,"min":68},
{"date":"18-Sep","avgLow":"57°","avgHigh":"73°","recLow":"42° (1959)","recHigh":"88° (1965)","index":261,"max":87,"min":68},
{"date":"19-Sep","avgLow":"57°","avgHigh":"73°","recLow":"42° (1956)","recHigh":"93° (1983)","index":262,"max":83,"min":68},
{"date":"20-Sep","avgLow":"57°","avgHigh":"73°","recLow":"41° (1956)","recHigh":"92° (1983)","index":263,"max":79,"min":64},
{"date":"21-Sep","avgLow":"56°","avgHigh":"72°","recLow":"39° (1956)","recHigh":"82° (1965)","index":264,"max":73,"min":59},
{"date":"22-Sep","avgLow":"56°","avgHigh":"72°","recLow":"40° (1962)","recHigh":"92° (1970)","index":265,"max":71,"min":62},
{"date":"23-Sep","avgLow":"56°","avgHigh":"72°","recLow":"43° (1963)","recHigh":"95° (1970)","index":266,"max":80,"min":59},
{"date":"24-Sep","avgLow":"55°","avgHigh":"71°","recLow":"38° (1963)","recHigh":"87° (1959)","index":267,"max":82,"min":60},
{"date":"25-Sep","avgLow":"55°","avgHigh":"71°","recLow":"40° (1950)","recHigh":"90° (1970)","index":268,"max":76,"min":63},
{"date":"26-Sep","avgLow":"54°","avgHigh":"70°","recLow":"42° (1978)","recHigh":"88° (1958)","index":269,"max":72,"min":61},
{"date":"27-Sep","avgLow":"54°","avgHigh":"70°","recLow":"38° (1980)","recHigh":"84° (1972)","index":270,"max":71,"min":56},
{"date":"28-Sep","avgLow":"54°","avgHigh":"70°","recLow":"40° (1957)","recHigh":"82° (1954)","index":271,"max":78,"min":65},
{"date":"29-Sep","avgLow":"53°","avgHigh":"69°","recLow":"41° (1978)","recHigh":"79° (1953)","index":272,"max":83,"min":72},
{"date":"30-Sep","avgLow":"53°","avgHigh":"69°","recLow":"40° (1951)","recHigh":"86° (1986)","index":273,"max":79,"min":59},
{"date":"1-Oct","avgLow":"52°","avgHigh":"68°","recLow":"45° (1966)","recHigh":"82° (1954)","index":274,"max":64,"min":56},
{"date":"2-Oct","avgLow":"52°","avgHigh":"68°","recLow":"42° (1958)","recHigh":"85° (1954)","index":275,"max":57,"min":48},
{"date":"3-Oct","avgLow":"52°","avgHigh":"68°","recLow":"37° (1974)","recHigh":"83° (1995)","index":276,"max":55,"min":49},
{"date":"4-Oct","avgLow":"51°","avgHigh":"67°","recLow":"36° (1974)","recHigh":"83° (1959)","index":277,"max":63,"min":53},
{"date":"5-Oct","avgLow":"51°","avgHigh":"67°","recLow":"37° (1996)","recHigh":"81° (1973)","index":278,"max":67,"min":52},
{"date":"6-Oct","avgLow":"50°","avgHigh":"67°","recLow":"35° (1958)","recHigh":"82° (1959)","index":279,"max":73,"min":52},
{"date":"7-Oct","avgLow":"50°","avgHigh":"66°","recLow":"38° (1954)","recHigh":"83° (1963)","index":280,"max":73,"min":58},
{"date":"8-Oct","avgLow":"50°","avgHigh":"66°","recLow":"36° (1954)","recHigh":"76° (1982)","index":281,"max":72,"min":59},
{"date":"9-Oct","avgLow":"49°","avgHigh":"65°","recLow":"34° (1988)","recHigh":"82° (1959)","index":282,"max":78,"min":61},
{"date":"10-Oct","avgLow":"49°","avgHigh":"65°","recLow":"30° (1979)","recHigh":"85° (1949)","index":283,"max":65,"min":50},
{"date":"11-Oct","avgLow":"49°","avgHigh":"65°","recLow":"33° (1979)","recHigh":"83° (1954)","index":284,"max":69,"min":53},
{"date":"12-Oct","avgLow":"48°","avgHigh":"64°","recLow":"34° (1956)","recHigh":"83° (1962)","index":285,"max":77,"min":56},
{"date":"13-Oct","avgLow":"48°","avgHigh":"64°","recLow":"34° (1980)","recHigh":"85° (1954)","index":286,"max":72,"min":61},
{"date":"14-Oct","avgLow":"47°","avgHigh":"64°","recLow":"33° (1980)","recHigh":"84° (1975)","index":287,"max":null,"min":null},
{"date":"15-Oct","avgLow":"47°","avgHigh":"63°","recLow":"38° (1987)","recHigh":"82° (1975)","index":288,"max":null,"min":null},
{"date":"16-Oct","avgLow":"47°","avgHigh":"63°","recLow":"34° (1978)","recHigh":"82° (1963)","index":289,"max":null,"min":null},
{"date":"17-Oct","avgLow":"46°","avgHigh":"62°","recLow":"36° (1978)","recHigh":"81° (1963)","index":290,"max":null,"min":null},
{"date":"18-Oct","avgLow":"46°","avgHigh":"62°","recLow":"32° (1978)","recHigh":"78° (1964)","index":291,"max":null,"min":null},
{"date":"19-Oct","avgLow":"46°","avgHigh":"62°","recLow":"32° (1948)","recHigh":"78° (1965)","index":292,"max":null,"min":null},
{"date":"20-Oct","avgLow":"45°","avgHigh":"61°","recLow":"30° (1974)","recHigh":"79° (1969)","index":293,"max":null,"min":null},
{"date":"21-Oct","avgLow":"45°","avgHigh":"61°","recLow":"30° (1974)","recHigh":"80° (1963)","index":294,"max":null,"min":null},
{"date":"22-Oct","avgLow":"45°","avgHigh":"61°","recLow":"32° (1948)","recHigh":"79° (1975)","index":295,"max":null,"min":null},
{"date":"23-Oct","avgLow":"44°","avgHigh":"60°","recLow":"27° (1988)","recHigh":"72° (1968)","index":296,"max":null,"min":null},
{"date":"24-Oct","avgLow":"44°","avgHigh":"60°","recLow":"29° (1969)","recHigh":"75° (1995)","index":297,"max":null,"min":null},
{"date":"25-Oct","avgLow":"44°","avgHigh":"60°","recLow":"32° (1981)","recHigh":"74° (1963)","index":298,"max":null,"min":null},
{"date":"26-Oct","avgLow":"44°","avgHigh":"59°","recLow":"32° (1980)","recHigh":"78° (1964)","index":299,"max":null,"min":null},
{"date":"27-Oct","avgLow":"43°","avgHigh":"59°","recLow":"29° (1976)","recHigh":"80° (1963)","index":300,"max":null,"min":null},
{"date":"28-Oct","avgLow":"43°","avgHigh":"58°","recLow":"28° (1976)","recHigh":"77° (1984)","index":301,"max":null,"min":null},
{"date":"29-Oct","avgLow":"43°","avgHigh":"58°","recLow":"31° (1965)","recHigh":"75° (1971)","index":302,"max":null,"min":null},
{"date":"30-Oct","avgLow":"42°","avgHigh":"58°","recLow":"29° (1980)","recHigh":"76° (1950)","index":303,"max":null,"min":null},
{"date":"31-Oct","avgLow":"42°","avgHigh":"57°","recLow":"30° (1980)","recHigh":"75° (1950)","index":304,"max":null,"min":null},
{"date":"1-Nov","avgLow":"42°","avgHigh":"57°","recLow":"32° (1951)","recHigh":"81° (1974)","index":305,"max":null,"min":null},
{"date":"2-Nov","avgLow":"42°","avgHigh":"57°","recLow":"30° (1965)","recHigh":"80° (1950)","index":306,"max":null,"min":null},
{"date":"3-Nov","avgLow":"41°","avgHigh":"57°","recLow":"30° (1984)","recHigh":"73° (1975)","index":307,"max":null,"min":null},
{"date":"4-Nov","avgLow":"41°","avgHigh":"56°","recLow":"30° (1951)","recHigh":"75° (1974)","index":308,"max":null,"min":null},
{"date":"5-Nov","avgLow":"41°","avgHigh":"56°","recLow":"29° (1951)","recHigh":"73° (1975)","index":309,"max":null,"min":null},
{"date":"6-Nov","avgLow":"40°","avgHigh":"56°","recLow":"28° (1951)","recHigh":"77° (1948)","index":310,"max":null,"min":null},
{"date":"7-Nov","avgLow":"40°","avgHigh":"55°","recLow":"30° (1962)","recHigh":"68° (1994)","index":311,"max":null,"min":null},
{"date":"8-Nov","avgLow":"40°","avgHigh":"55°","recLow":"28° (1960)","recHigh":"75° (1975)","index":312,"max":null,"min":null},
{"date":"9-Nov","avgLow":"40°","avgHigh":"54°","recLow":"24° (1976)","recHigh":"74° (1975)","index":313,"max":null,"min":null},
{"date":"10-Nov","avgLow":"39°","avgHigh":"54°","recLow":"30° (1954)","recHigh":"71° (1985)","index":314,"max":null,"min":null},
{"date":"11-Nov","avgLow":"39°","avgHigh":"54°","recLow":"23° (1954)","recHigh":"72° (1949)","index":315,"max":null,"min":null},
{"date":"12-Nov","avgLow":"39°","avgHigh":"53°","recLow":"25° (1987)","recHigh":"66° (1964)","index":316,"max":null,"min":null},
{"date":"13-Nov","avgLow":"38°","avgHigh":"53°","recLow":"18° (1986)","recHigh":"71° (1964)","index":317,"max":null,"min":null},
{"date":"14-Nov","avgLow":"38°","avgHigh":"53°","recLow":"18° (1986)","recHigh":"70° (1973)","index":318,"max":null,"min":null},
{"date":"15-Nov","avgLow":"38°","avgHigh":"52°","recLow":"24° (1986)","recHigh":"74° (1973)","index":319,"max":null,"min":null},
{"date":"16-Nov","avgLow":"37°","avgHigh":"52°","recLow":"24° (1996)","recHigh":"69° (1956)","index":320,"max":null,"min":null},
{"date":"17-Nov","avgLow":"37°","avgHigh":"52°","recLow":"24° (1959)","recHigh":"70° (1953)","index":321,"max":null,"min":null},
{"date":"18-Nov","avgLow":"37°","avgHigh":"51°","recLow":"19° (1959)","recHigh":"70° (1953)","index":322,"max":null,"min":null},
{"date":"19-Nov","avgLow":"36°","avgHigh":"51°","recLow":"23° (1949)","recHigh":"66° (1953)","index":323,"max":null,"min":null},
{"date":"20-Nov","avgLow":"36°","avgHigh":"51°","recLow":"20° (1986)","recHigh":"75° (1985)","index":324,"max":null,"min":null},
{"date":"21-Nov","avgLow":"36°","avgHigh":"50°","recLow":"16° (1987)","recHigh":"64° (1956)","index":325,"max":null,"min":null},
{"date":"22-Nov","avgLow":"36°","avgHigh":"50°","recLow":"16° (1987)","recHigh":"66° (1973)","index":326,"max":null,"min":null},
{"date":"23-Nov","avgLow":"35°","avgHigh":"50°","recLow":"22° (1972)","recHigh":"65° (1963)","index":327,"max":null,"min":null},
{"date":"24-Nov","avgLow":"35°","avgHigh":"49°","recLow":"21° (1956)","recHigh":"65° (1979)","index":328,"max":null,"min":null},
{"date":"25-Nov","avgLow":"35°","avgHigh":"49°","recLow":"23° (1970)","recHigh":"66° (1979)","index":329,"max":null,"min":null},
{"date":"26-Nov","avgLow":"34°","avgHigh":"49°","recLow":"16° (1955)","recHigh":"60° (1979)","index":330,"max":null,"min":null},
{"date":"27-Nov","avgLow":"34°","avgHigh":"48°","recLow":"21° (1949)","recHigh":"62° (1959)","index":331,"max":null,"min":null},
{"date":"28-Nov","avgLow":"33°","avgHigh":"48°","recLow":"19° (1951)","recHigh":"68° (1973)","index":332,"max":null,"min":null},
{"date":"29-Nov","avgLow":"33°","avgHigh":"47°","recLow":"14° (1955)","recHigh":"66° (1994)","index":333,"max":null,"min":null},
{"date":"30-Nov","avgLow":"33°","avgHigh":"47°","recLow":"16° (1976)","recHigh":"59° (1962)","index":334,"max":null,"min":null},
{"date":"1-Dec","avgLow":"32°","avgHigh":"47°","recLow":"18° (1989)","recHigh":"63° (1962)","index":335,"max":null,"min":null},
{"date":"2-Dec","avgLow":"32°","avgHigh":"46°","recLow":"15° (1989)","recHigh":"65° (1970)","index":336,"max":null,"min":null},
{"date":"3-Dec","avgLow":"32°","avgHigh":"46°","recLow":"9° (1976)","recHigh":"62° (1970)","index":337,"max":null,"min":null},
{"date":"4-Dec","avgLow":"31°","avgHigh":"46°","recLow":"6° (1989)","recHigh":"70° (1982)","index":338,"max":null,"min":null},
{"date":"5-Dec","avgLow":"31°","avgHigh":"45°","recLow":"14° (1980)","recHigh":"65° (1973)","index":339,"max":null,"min":null},
{"date":"6-Dec","avgLow":"31°","avgHigh":"45°","recLow":"13° (1980)","recHigh":"68° (1982)","index":340,"max":null,"min":null},
{"date":"7-Dec","avgLow":"30°","avgHigh":"45°","recLow":"15° (1954)","recHigh":"66° (1956)","index":341,"max":null,"min":null},
{"date":"8-Dec","avgLow":"30°","avgHigh":"44°","recLow":"15° (1989)","recHigh":"63° (1966)","index":342,"max":null,"min":null},
{"date":"9-Dec","avgLow":"30°","avgHigh":"44°","recLow":"15° (1960)","recHigh":"65° (1966)","index":343,"max":null,"min":null},
{"date":"10-Dec","avgLow":"29°","avgHigh":"44°","recLow":"9° (1968)","recHigh":"64° (1966)","index":344,"max":null,"min":null},
{"date":"11-Dec","avgLow":"29°","avgHigh":"43°","recLow":"10° (1988)","recHigh":"65° (1971)","index":345,"max":null,"min":null},
{"date":"12-Dec","avgLow":"29°","avgHigh":"43°","recLow":"6° (1988)","recHigh":"62° (1979)","index":346,"max":null,"min":null},
{"date":"13-Dec","avgLow":"29°","avgHigh":"43°","recLow":"6° (1960)","recHigh":"59° (1949)","index":347,"max":null,"min":null},
{"date":"14-Dec","avgLow":"28°","avgHigh":"42°","recLow":"10° (1989)","recHigh":"58° (1975)","index":348,"max":null,"min":null},
{"date":"15-Dec","avgLow":"28°","avgHigh":"42°","recLow":"9° (1980)","recHigh":"61° (1975)","index":349,"max":null,"min":null},
{"date":"16-Dec","avgLow":"28°","avgHigh":"42°","recLow":"11° (1961)","recHigh":"64° (1971)","index":350,"max":null,"min":null},
{"date":"17-Dec","avgLow":"28°","avgHigh":"41°","recLow":"10° (1951)","recHigh":"58° (1984)","index":351,"max":null,"min":null},
{"date":"18-Dec","avgLow":"27°","avgHigh":"41°","recLow":"11° (1980)","recHigh":"58° (1966)","index":352,"max":null,"min":null},
{"date":"19-Dec","avgLow":"27°","avgHigh":"41°","recLow":"7° (1980)","recHigh":"54° (1996)","index":353,"max":null,"min":null},
{"date":"20-Dec","avgLow":"27°","avgHigh":"41°","recLow":"4° (1980)","recHigh":"56° (1957)","index":354,"max":null,"min":null},
{"date":"21-Dec","avgLow":"27°","avgHigh":"40°","recLow":"6° (1955)","recHigh":"59° (1957)","index":355,"max":null,"min":null},
{"date":"22-Dec","avgLow":"26°","avgHigh":"40°","recLow":"4° (1989)","recHigh":"60° (1949)","index":356,"max":null,"min":null},
{"date":"23-Dec","avgLow":"26°","avgHigh":"40°","recLow":"0° (1989)","recHigh":"59° (1949)","index":357,"max":null,"min":null},
{"date":"24-Dec","avgLow":"26°","avgHigh":"40°","recLow":"5° (1989)","recHigh":"56° (1988)","index":358,"max":null,"min":null},
{"date":"25-Dec","avgLow":"26°","avgHigh":"39°","recLow":"0° (1983)","recHigh":"62° (1982)","index":359,"max":null,"min":null},
{"date":"26-Dec","avgLow":"25°","avgHigh":"39°","recLow":"1° (1980)","recHigh":"62° (1982)","index":360,"max":null,"min":null},
{"date":"27-Dec","avgLow":"25°","avgHigh":"39°","recLow":"5° (1948)","recHigh":"60° (1973)","index":361,"max":null,"min":null},
{"date":"28-Dec","avgLow":"25°","avgHigh":"39°","recLow":"7° (1950)","recHigh":"64° (1982)","index":362,"max":null,"min":null},
{"date":"29-Dec","avgLow":"25°","avgHigh":"38°","recLow":"8° (1993)","recHigh":"67° (1984)","index":363,"max":null,"min":null},
{"date":"30-Dec","avgLow":"25°","avgHigh":"38°","recLow":"2° (1962)","recHigh":"59° (1984)","index":364,"max":null,"min":null},
{"date":"31-Dec","avgLow":"24°","avgHigh":"38°","recLow":"2° (1962)","recHigh":"61° (1965)","index":365,"max":null,"min":null}]
}
///////////////////////////////////////////////////////////////////////////
//////////////////// Set up and initiate svg containers ///////////////////
///////////////////////////////////////////////////////////////////////////
var margin = {
top: 70,
right: 20,
bottom: 120,
left: 20
};
var width = window.innerWidth - margin.left - margin.right - 20;
var height = window.innerHeight - margin.top - margin.bottom - 20;
//SVG container
var svg = d3.select("#weatherRadial")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + (margin.left + width/2) + "," + (margin.top + height/2) + ")");
///////////////////////////////////////////////////////////////////////////
//////////////////////////// Create scales ////////////////////////////////
///////////////////////////////////////////////////////////////////////////
//Parses a string into a date
var parseDate = d3.timeParse("%Y%m%d");
var parseDateNY = d3.timeParse("%d-%b")
d3.json("myfile.json", function(error, weatherSF) {
console.log(weatherSF.data)
weatherSF.newyork.forEach(function(d) {
d.date = parseDateNY(d.date);
d.min = +d.min
d.max = +d.max
// d.meantempi = +d.meantempi
// console.log(d.date)
})
//Turn strings into actual numbers/dates
weatherSF.data.forEach(function(d) {
d.date = parseDate(d.date);
d.mintempi = +d.mintempi
d.maxtempi = +d.maxtempi
d.meantempi = +d.meantempi
// console.log(d.date)
})
//Set the minimum inner radius and max outer radius of the chart
var outerRadius = Math.min(width, height, 500)/2,
innerRadius = outerRadius * 0.4;
//Scale for the heights of the bar, not starting at zero to give the bars an initial offset outward
var barScale = d3.scaleLinear()
.range([innerRadius, outerRadius])
.domain([30,80]);
//Scale to turn the date into an angle of 360 degrees in total
//With the first datapoint (Jan 1st) on top
var angle = d3.scaleLinear()
.range([-180, 180])
.domain(d3.extent(weatherSF.data, function(d) {
return d.date; }));
var angleNY = d3.scaleLinear()
.range([-180, 180])
.domain(d3.extent(weatherSF.newyork, function(d) {
return d.date; }));
// console.log(angle.domain)
//create title
var textWrapper = svg.append("g").attr("class", "textWrapper")
.attr("transform", "translate(" + Math.max(-width/2, -outerRadius - 170) + "," + 0 + ")");
//Append title to the top
textWrapper.append("text")
.attr("class", "title")
.attr("x", 0)
.attr("y", -outerRadius - 40)
.text("Daily Temperatures in San Francisco and New York");
textWrapper.append("text")
.attr("class", "subtitle")
.attr("x", 0)
.attr("y", -outerRadius - 20)
.text("2015");
//Append credit at bottom
textWrapper.append("text")
.attr("class", "credit")
.attr("x", 0)
.attr("y", outerRadius + 120)
.text("Based on weather-radials.com");
//create axes
//Wrapper for the bars and to position it downward
var barWrapper = svg.append("g")
.attr("transform", "translate(" + 0 + "," + 0 + ")");
//Draw gridlines below the bars
var axes = barWrapper.selectAll(".gridCircles")
.data([30,40,50,60,70,80])
.enter().append("g");
var tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden");
//Draw the circles
axes.append("circle")
.attr("class", "axisCircles")
.attr("r", function(d) { return barScale(d); });
//Draw the axis labels
axes.append("text")
.attr("class", "axisText")
.attr("y", function(d) { return barScale(d); })
.attr("dy", "0.3em")
.text(function(d) { return d + "°F"});
//Add January for reference
barWrapper.append("text")
.attr("class", "january")
.attr("x", -17)
.attr("y", -outerRadius * 1.15)
.attr("dy", "0.9em")
.text("January");
barWrapper.append("text")
.attr("class", "january")
.attr("x", outerRadius * 1.1)
.attr("y", -7)
.attr("dy", "0.9em")
.text("April");
barWrapper.append("text")
.attr("class", "january")
.attr("x", -15)
.attr("y", outerRadius * 1.1)
.attr("dy", "0.9em")
.text("June");
barWrapper.append("text")
.attr("class", "january")
.attr("x", -outerRadius * 1.32)
.attr("y", -10)
.attr("dy", "0.9em")
.text("October");
//Add a line to split the year
barWrapper.append("line")
.attr("class", "yearLine")
.attr("x1", 0)
.attr("y1", -outerRadius )
.attr("x2", 0)
.attr("y2", -outerRadius * 1.1);
barWrapper.append("line")
.attr("class", "yearLine")
.attr("x1", outerRadius )
.attr("y1", 0)
.attr("x2", outerRadius * 1.1)
.attr("y2", 0);
barWrapper.append("line")
.attr("class", "yearLine")
.attr("x1", -outerRadius)
.attr("y1", 0)
.attr("x2", -outerRadius * 1.1)
.attr("y2", 0);
barWrapper.append("line")
.attr("class", "yearLine")
.attr("x1", 0)
.attr("y1", outerRadius)
.attr("x2", 0)
.attr("y2", outerRadius * 1.1);
//drew bars
//Draw a bar per day were the height is the difference between the minimum and maximum temperature
//And the color is based on the mean temperature
barWrapper.selectAll(".tempBar")
.data(weatherSF.data)
.enter().append("rect")
.attr("class", "tempBar")
.attr("transform", function(d,i) { return "rotate(" + (angle(d.date)) + ")"; })
.attr("width", 1.5)
.attr("height", function(d,i) { return barScale(d.maxtempi) - barScale(d.mintempi); })
.attr("x", -0.75)
.attr("y", function(d,i) {return barScale(d.mintempi); })
.style("fill", '#dd1c77')
.on("mouseover", function(d,i) {
tooltip.append("h3").attr("class", "tooltip_title");
tooltip.append("pre").attr("class", "tooltip_body");
tooltip.select(".tooltip_title")
.text('San Francisco')
tooltip.select(".tooltip_body")
.text(
"Date: " + d.date + "\n" +
"Min Temp: " + d.mintempi + " °F\n" +
"Max Temp: " + d.maxtempi + " °F\n"
);
return tooltip.style("visibility", "visible");
})
.on("mousemove", function() {
return tooltip.style("top", (d3.event.pageY-52) + "px").style("left", (d3.event.pageX+18) + "px");
})
.on("mouseout", function() {
return tooltip.style("visibility", "hidden");
});
// .style("fill", function(d) { return colorScale(d.mean_temp); });
// barWrapper.selectAll("circle")
// .data(weatherSF.data)
// .enter().append("circle")
// .attr("class", "circle")
// .attr("transform", function(d,i) { return "rotate(" + (angle(d.date)) + ")"; })
// // .attr("width", 1.5)
// // .attr("height", function(d,i) { return barScale(d.maxtempi) - barScale(d.mintempi); })
// .attr("cx", -0.75)
// .attr("cy", function(d,i) {return barScale(d.meantempi); })
// .attr('r', 2)
// .style("fill", '#e34a33')
// .style('opacity', '0.4')
barWrapper.selectAll(".nytempBar")
.data(weatherSF.newyork)
.enter().append("rect")
.attr("class", "nytempBar")
.attr("transform", function(d,i) { return "rotate(" + (angleNY(d.date)) + ")"; })
.attr("width", 1.5)
.attr("height", function(d,i) { return barScale(d.max) - barScale(d.min); })
.attr("x", -0.75)
.attr("y", function(d,i) {return barScale(d.min); })
.style("fill", '#43a2ca')
.style('opacity', '.5')
})
//Base the color scale on average temperature extremes
// var colorScale = d3.scaleLinear()
// .domain([-15, 7.5, 30])
// .range(["#2c7bb6", "#ffff8c", "#d7191c"])
// .interpolate(d3.interpolateHcl);
///////////////////////////////////////////////////////////////////////////
//////////////// Create8the gradient for the legend ///////////////////////
///////////////////////////////////////////////////////////////////////////
//Extra scale since the color scale is interpolated
// var tempScale = d3.scaleLinear()
// .domain([-15, 30])
// .range([0, width]);
//Calculate the variables for the temp gradient
// var numStops = 10;
// tempRange = tempScale.domain();
// tempRange[2] = tempRange[1] - tempRange[0];
// tempPoint = [];
// for(var i = 0; i < numStops; i++) {
// tempPoint.push(i * tempRange[2]/(numStops-1) + tempRange[0]);
// }//for i
//Create the gradient
// svg.append("defs")
// .append("linearGradient")
// .attr("id", "legend-weather")
// .attr("x1", "0%").attr("y1", "0%")
// .attr("x2", "100%").attr("y2", "0%")
// .selectAll("stop")
// .data(d3.range(numStops))
// .enter().append("stop")
// .attr("offset", function(d,i) { return tempScale( tempPoint[i] )/width; })
// .attr("stop-color", function(d,i) { return colorScale( tempPoint[i] ); });
///////////////////////////////////////////////////////////////////////////
////////////////////////// Draw the legend ////////////////////////////////
///////////////////////////////////////////////////////////////////////////
// var legendWidth = Math.min(outerRadius*2, 400);
//Color Legend container
// var legendsvg = svg.append("g")
// .attr("class", "legendWrapper")
// .attr("transform", "translate(" + 0 + "," + (outerRadius + 70) + ")");
//Draw the Rectangle
// legendsvg.append("rect")
// .attr("class", "legendRect")
// .attr("x", -legendWidth/2)
// .attr("y", 0)
// .attr("rx", 8/2)
// .attr("width", legendWidth)
// .attr("height", 8)
// .style("fill", "url(#legend-weather)");
//Append title
// legendsvg.append("text")
// .attr("class", "legendTitle")
// .attr("x", 0)
// .attr("y", -10)
// .style("text-anchor", "middle")
// .text("Average Daily Temperature");
//Set scale for x-axis
// var xScale = d3.scaleLinear()
// .range([-legendWidth/2, legendWidth/2])
// .domain([-15,30] );
//Define x-axis
// var xAxis = d3.axisBottom()
// // d3.svg.axis()
// // .orient("bottom")
// .ticks(5)
// .tickFormat(function(d) { return d + "°C"; })
// .scale(xScale);
//Set up X axis
// legendsvg.append("g")
// .attr("class", "axis")
// .attr("transform", "translate(0," + (10) + ")")
// .call(xAxis);
var weatherBoston=[{date:"2015-1-1",max_temp:1,mean_temp:-2,min_temp:-6},{date:"20150102",max_temp:5,mean_temp:2,min_temp:-1},{date:"20150103",max_temp:3,mean_temp:-1,min_temp:-6},{date:"20150104",max_temp:11,mean_temp:7,min_temp:2},{date:"20150105",max_temp:10,mean_temp:1,min_temp:-8},{date:"2015-1-6",max_temp:-8,mean_temp:-8,min_temp:-9},{date:"2015-1-7",max_temp:-3,mean_temp:-9,min_temp:-16},{date:"2015-1-8",max_temp:-7,mean_temp:-13,min_temp:-18},{date:"2015-1-9",max_temp:-1,mean_temp:-4,min_temp:-7},{date:"2015-1-10",max_temp:-4,mean_temp:-6,min_temp:-8},{date:"2015-1-11",max_temp:1,mean_temp:-4,min_temp:-9},{date:"2015-1-12",max_temp:3,mean_temp:2,min_temp:1},{date:"2015-1-13",max_temp:2,mean_temp:-4,min_temp:-9},{date:"2015-1-14",max_temp:-4,mean_temp:-7,min_temp:-10},{date:"2015-1-15",max_temp:-1,mean_temp:-2,min_temp:-4},{date:"2015-1-16",max_temp:3,mean_temp:-3,min_temp:-9},{date:"2015-1-17",max_temp:-6,mean_temp:-9,min_temp:-13},{date:"2015-1-18",max_temp:11,mean_temp:2,min_temp:-7},{date:"2015-1-19",max_temp:8,mean_temp:4,min_temp:0},{date:"2015-1-20",max_temp:4,mean_temp:1,min_temp:-3},{date:"2015-1-21",max_temp:1,mean_temp:-2,min_temp:-6},{date:"2015-1-22",max_temp:3,mean_temp:1,min_temp:-2},{date:"2015-1-23",max_temp:3,mean_temp:-1,min_temp:-4},{date:"2015-1-24",max_temp:1,mean_temp:1,min_temp:-1},{date:"2015-1-25",max_temp:3,mean_temp:-2,min_temp:-7},{date:"2015-1-26",max_temp:-2,mean_temp:-7,min_temp:-12},{date:"2015-1-27",max_temp:-7,mean_temp:-8,min_temp:-10},{date:"2015-1-28",max_temp:-4,mean_temp:-7,min_temp:-11},{date:"2015-1-29",max_temp:0,mean_temp:-6,min_temp:-12},{date:"2015-1-30",max_temp:1,mean_temp:-3,min_temp:-7},{date:"2015-1-31",max_temp:-6,mean_temp:-9,min_temp:-12},{date:"2015-2-1",max_temp:-1,mean_temp:-6,min_temp:-11},{date:"2015-2-2",max_temp:-1,mean_temp:-6,min_temp:-12},{date:"2015-2-3",max_temp:-6,mean_temp:-10,min_temp:-14},{date:"2015-2-4",max_temp:3,mean_temp:-3,min_temp:-10},{date:"2015-2-5",max_temp:2,mean_temp:-6,min_temp:-14},{date:"2015-2-6",max_temp:-6,mean_temp:-11,min_temp:-15},{date:"2015-2-7",max_temp:-2,mean_temp:-5,min_temp:-9},{date:"2015-2-8",max_temp:-2,mean_temp:-6,min_temp:-11},{date:"2015-2-9",max_temp:-4,mean_temp:-7,min_temp:-10},{date:"2015-2-10",max_temp:-1,mean_temp:-6,min_temp:-10},{date:"2015-2-11",max_temp:-4,mean_temp:-7,min_temp:-10},{date:"2015-2-12",max_temp:-1,mean_temp:-5,min_temp:-9},{date:"2015-2-13",max_temp:-6,mean_temp:-9,min_temp:-14},{date:"2015-2-14",max_temp:-1,mean_temp:-8,min_temp:-16},{date:"2015-2-15",max_temp:-7,mean_temp:-13,min_temp:-19},{date:"2015-2-16",max_temp:-7,mean_temp:-13,min_temp:-19},{date:"2015-2-17",max_temp:-5,mean_temp:-8,min_temp:-12},{date:"2015-2-18",max_temp:-2,mean_temp:-5,min_temp:-8},{date:"2015-2-19",max_temp:-1,mean_temp:-7,min_temp:-12},{date:"2015-2-20",max_temp:-7,mean_temp:-11,min_temp:-15},{date:"2015-2-21",max_temp:1,mean_temp:-7,min_temp:-16},{date:"2015-2-22",max_temp:4,mean_temp:1,min_temp:-2},{date:"2015-2-23",max_temp:1,mean_temp:-7,min_temp:-16},{date:"2015-2-24",max_temp:-7,mean_temp:-12,min_temp:-17},{date:"2015-2-25",max_temp:2,mean_temp:-4,min_temp:-10},{date:"2015-2-26",max_temp:-6,mean_temp:-7,min_temp:-8},{date:"2015-2-27",max_temp:-3,mean_temp:-6,min_temp:-9},{date:"2015-2-28",max_temp:-1,mean_temp:-6,min_temp:-11},{date:"2015-3-1",max_temp:-1,mean_temp:-6,min_temp:-11},{date:"2015-3-2",max_temp:3,mean_temp:0,min_temp:-3},{date:"2015-3-3",max_temp:1,mean_temp:-3,min_temp:-7},{date:"2015-3-4",max_temp:6,mean_temp:3,min_temp:1},{date:"2015-3-5",max_temp:4,mean_temp:-2,min_temp:-8},{date:"2015-3-6",max_temp:-4,mean_temp:-8,min_temp:-13},{date:"2015-3-7",max_temp:3,mean_temp:-2,min_temp:-8},{date:"2015-3-8",max_temp:6,mean_temp:1,min_temp:-4},{date:"2015-3-9",max_temp:9,mean_temp:3,min_temp:-3},{date:"2015-3-10",max_temp:9,mean_temp:4,min_temp:-1},{date:"2015-3-11",max_temp:14,mean_temp:8,min_temp:3},{date:"2015-3-12",max_temp:6,mean_temp:1,min_temp:-4},{date:"2015-3-13",max_temp:4,mean_temp:0,min_temp:-4},{date:"2015-3-14",max_temp:4,mean_temp:2,min_temp:-1},{date:"2015-3-15",max_temp:5,mean_temp:1,min_temp:-3},{date:"2015-3-16",max_temp:7,mean_temp:2,min_temp:-3},{date:"2015-3-17",max_temp:11,mean_temp:4,min_temp:-2},{date:"2015-3-18",max_temp:-1,mean_temp:-3,min_temp:-6},{date:"2015-3-19",max_temp:1,mean_temp:-3,min_temp:-7},{date:"2015-3-20",max_temp:0,mean_temp:-2,min_temp:-5},{date:"2015-3-21",max_temp:5,mean_temp:2,min_temp:-2},{date:"2015-3-22",max_temp:4,mean_temp:-1,min_temp:-6},{date:"2015-3-23",max_temp:1,mean_temp:-3,min_temp:-8},{date:"2015-3-24",max_temp:2,mean_temp:-2,min_temp:-7},{date:"2015-3-25",max_temp:9,mean_temp:4,min_temp:-2},{date:"2015-3-26",max_temp:13,mean_temp:8,min_temp:3},{date:"2015-3-27",max_temp:7,mean_temp:5,min_temp:3},{date:"2015-3-28",max_temp:4,mean_temp:2,min_temp:-1},{date:"2015-3-29",max_temp:6,mean_temp:1,min_temp:-3},{date:"2015-3-30",max_temp:7,mean_temp:3,min_temp:-1},{date:"2015-3-31",max_temp:10,mean_temp:7,min_temp:3},{date:"2015-4-1",max_temp:8,mean_temp:4,min_temp:-1},{date:"2015-4-2",max_temp:16,mean_temp:8,min_temp:-1},{date:"2015-4-3",max_temp:15,mean_temp:11,min_temp:7},{date:"2015-4-4",max_temp:11,mean_temp:7,min_temp:2},{date:"2015-4-5",max_temp:9,mean_temp:5,min_temp:0},{date:"2015-4-6",max_temp:6,mean_temp:4,min_temp:2},{date:"2015-4-7",max_temp:6,mean_temp:4,min_temp:2},{date:"2015-4-8",max_temp:6,mean_temp:3,min_temp:1},{date:"2015-4-9",max_temp:3,mean_temp:2,min_temp:1},{date:"2015-4-10",max_temp:13,mean_temp:8,min_temp:2},{date:"2015-4-11",max_temp:14,mean_temp:10,min_temp:6},{date:"2015-4-12",max_temp:20,mean_temp:12,min_temp:4},{date:"2015-4-13",max_temp:21,mean_temp:13,min_temp:5},{date:"2015-4-14",max_temp:18,mean_temp:15,min_temp:11},{date:"2015-4-15",max_temp:19,mean_temp:15,min_temp:10},{date:"2015-4-16",max_temp:16,mean_temp:11,min_temp:5},{date:"2015-4-17",max_temp:18,mean_temp:13,min_temp:8},{date:"2015-4-18",max_temp:16,mean_temp:11,min_temp:6},{date:"2015-4-19",max_temp:10,mean_temp:8,min_temp:5},{date:"2015-4-20",max_temp:11,mean_temp:8,min_temp:5},{date:"2015-4-21",max_temp:18,mean_temp:13,min_temp:8},{date:"2015-4-22",max_temp:19,mean_temp:13,min_temp:6},{date:"2015-4-23",max_temp:11,mean_temp:7,min_temp:3},{date:"2015-4-24",max_temp:10,mean_temp:7,min_temp:3},{date:"2015-4-25",max_temp:13,mean_temp:8,min_temp:2},{date:"2015-4-26",max_temp:13,mean_temp:10,min_temp:6},{date:"2015-4-27",max_temp:14,mean_temp:11,min_temp:7},{date:"2015-4-28",max_temp:18,mean_temp:12,min_temp:6},{date:"2015-4-29",max_temp:12,mean_temp:11,min_temp:9},{date:"2015-4-30",max_temp:13,mean_temp:10,min_temp:7},{date:"2015-5-1",max_temp:9,mean_temp:7,min_temp:4},{date:"2015-5-2",max_temp:10,mean_temp:7,min_temp:4},{date:"2015-5-3",max_temp:19,mean_temp:13,min_temp:7},{date:"2015-5-4",max_temp:29,mean_temp:19,min_temp:9},{date:"2015-5-5",max_temp:21,mean_temp:17,min_temp:12},{date:"2015-5-6",max_temp:23,mean_temp:17,min_temp:11},{date:"2015-5-7",max_temp:26,mean_temp:19,min_temp:12},{date:"2015-5-8",max_temp:22,mean_temp:15,min_temp:8},{date:"2015-5-9",max_temp:22,mean_temp:15,min_temp:8},{date:"2015-5-10",max_temp:32,mean_temp:23,min_temp:15},{date:"2015-5-11",max_temp:27,mean_temp:18,min_temp:10},{date:"2015-5-12",max_temp:31,mean_temp:20,min_temp:9},{date:"2015-5-13",max_temp:21,mean_temp:16,min_temp:12},{date:"2015-5-14",max_temp:21,mean_temp:15,min_temp:9},{date:"2015-5-15",max_temp:19,mean_temp:14,min_temp:9},{date:"2015-5-16",max_temp:22,mean_temp:17,min_temp:13},{date:"2015-5-17",max_temp:19,mean_temp:16,min_temp:11},{date:"2015-5-18",max_temp:14,mean_temp:12,min_temp:9},{date:"2015-5-19",max_temp:18,mean_temp:15,min_temp:11},{date:"2015-5-20",max_temp:19,mean_temp:15,min_temp:11},{date:"2015-5-21",max_temp:19,mean_temp:13,min_temp:7},{date:"2015-5-22",max_temp:24,mean_temp:18,min_temp:11},{date:"2015-5-23",max_temp:18,mean_temp:13,min_temp:7},{date:"2015-5-24",max_temp:28,mean_temp:19,min_temp:11},{date:"2015-5-25",max_temp:27,mean_temp:21,min_temp:14},{date:"2015-5-26",max_temp:31,mean_temp:24,min_temp:18},{date:"2015-5-27",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-5-28",max_temp:30,mean_temp:24,min_temp:18},{date:"2015-5-29",max_temp:22,mean_temp:18,min_temp:13},{date:"2015-5-30",max_temp:31,mean_temp:23,min_temp:14},{date:"2015-5-31",max_temp:25,mean_temp:17,min_temp:9},{date:"2015-6-1",max_temp:9,mean_temp:9,min_temp:8},{date:"2015-6-2",max_temp:9,mean_temp:9,min_temp:8},{date:"2015-6-3",max_temp:13,mean_temp:11,min_temp:8},{date:"2015-6-4",max_temp:14,mean_temp:12,min_temp:9},{date:"2015-6-5",max_temp:15,mean_temp:13,min_temp:10},{date:"2015-6-6",max_temp:19,mean_temp:16,min_temp:11},{date:"2015-6-7",max_temp:19,mean_temp:16,min_temp:12},{date:"2015-6-8",max_temp:24,mean_temp:18,min_temp:12},{date:"2015-6-9",max_temp:26,mean_temp:22,min_temp:18},{date:"2015-6-10",max_temp:28,mean_temp:22,min_temp:17},{date:"2015-6-11",max_temp:31,mean_temp:24,min_temp:18},{date:"2015-6-12",max_temp:26,mean_temp:22,min_temp:18},{date:"2015-6-13",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-6-14",max_temp:23,mean_temp:20,min_temp:17},{date:"2015-6-15",max_temp:17,mean_temp:15,min_temp:12},{date:"2015-6-16",max_temp:22,mean_temp:18,min_temp:13},{date:"2015-6-17",max_temp:21,mean_temp:18,min_temp:15},{date:"2015-6-18",max_temp:24,mean_temp:19,min_temp:14},{date:"2015-6-19",max_temp:30,mean_temp:24,min_temp:17},{date:"2015-6-20",max_temp:24,mean_temp:19,min_temp:14},{date:"2015-6-21",max_temp:24,mean_temp:20,min_temp:16},{date:"2015-6-22",max_temp:25,mean_temp:21,min_temp:16},{date:"2015-6-23",max_temp:31,mean_temp:23,min_temp:16},{date:"2015-6-24",max_temp:29,mean_temp:24,min_temp:19},{date:"2015-6-25",max_temp:27,mean_temp:23,min_temp:18},{date:"2015-6-26",max_temp:22,mean_temp:19,min_temp:15},{date:"2015-6-27",max_temp:20,mean_temp:17,min_temp:14},{date:"2015-6-28",max_temp:15,mean_temp:13,min_temp:11},{date:"2015-6-29",max_temp:24,mean_temp:18,min_temp:12},{date:"2015-6-30",max_temp:24,mean_temp:20,min_temp:16},{date:"2015-7-1",max_temp:28,mean_temp:22,min_temp:17},{date:"2015-7-2",max_temp:27,mean_temp:22,min_temp:18},{date:"2015-7-3",max_temp:24,mean_temp:21,min_temp:17},{date:"2015-7-4",max_temp:22,mean_temp:19,min_temp:17},{date:"2015-7-5",max_temp:28,mean_temp:22,min_temp:16},{date:"2015-7-6",max_temp:27,mean_temp:23,min_temp:20},{date:"2015-7-7",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-7-8",max_temp:31,mean_temp:26,min_temp:21},{date:"2015-7-9",max_temp:21,mean_temp:19,min_temp:17},{date:"2015-7-10",max_temp:25,mean_temp:21,min_temp:16},{date:"2015-7-11",max_temp:28,mean_temp:24,min_temp:20},{date:"2015-7-12",max_temp:32,mean_temp:27,min_temp:22},{date:"2015-7-13",max_temp:25,mean_temp:22,min_temp:19},{date:"2015-7-14",max_temp:28,mean_temp:23,min_temp:18},{date:"2015-7-15",max_temp:28,mean_temp:24,min_temp:19},{date:"2015-7-16",max_temp:20,mean_temp:18,min_temp:15},{date:"2015-7-17",max_temp:24,mean_temp:20,min_temp:16},{date:"2015-7-18",max_temp:26,mean_temp:22,min_temp:18},{date:"2015-7-19",max_temp:32,mean_temp:27,min_temp:22},{date:"2015-7-20",max_temp:33,mean_temp:27,min_temp:21},{date:"2015-7-21",max_temp:27,mean_temp:24,min_temp:21},{date:"2015-7-22",max_temp:29,mean_temp:25,min_temp:21},{date:"2015-7-23",max_temp:28,mean_temp:24,min_temp:19},{date:"2015-7-24",max_temp:27,mean_temp:23,min_temp:19},{date:"2015-7-25",max_temp:21,mean_temp:19,min_temp:17},{date:"2015-7-26",max_temp:26,mean_temp:22,min_temp:17},{date:"2015-7-27",max_temp:30,mean_temp:25,min_temp:20},{date:"2015-7-28",max_temp:30,mean_temp:26,min_temp:21},{date:"2015-7-29",max_temp:33,mean_temp:28,min_temp:22},{date:"2015-7-30",max_temp:33,mean_temp:28,min_temp:23},{date:"2015-7-31",max_temp:32,mean_temp:27,min_temp:23},{date:"2015-8-1",max_temp:32,mean_temp:26,min_temp:20},{date:"2015-8-2",max_temp:31,mean_temp:26,min_temp:20},{date:"2015-8-3",max_temp:32,mean_temp:26,min_temp:20},{date:"2015-8-4",max_temp:32,mean_temp:26,min_temp:19},{date:"2015-8-5",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-8-6",max_temp:28,mean_temp:23,min_temp:18},{date:"2015-8-7",max_temp:23,mean_temp:21,min_temp:18},{date:"2015-8-8",max_temp:24,mean_temp:21,min_temp:16},{date:"2015-8-9",max_temp:23,mean_temp:20,min_temp:17},{date:"2015-8-10",max_temp:28,mean_temp:23,min_temp:17},{date:"2015-8-11",max_temp:22,mean_temp:20,min_temp:18},{date:"2015-8-12",max_temp:29,mean_temp:25,min_temp:20},{date:"2015-8-13",max_temp:28,mean_temp:23,min_temp:19},{date:"2015-8-14",max_temp:30,mean_temp:24,min_temp:17},{date:"2015-8-15",max_temp:33,mean_temp:27,min_temp:20},{date:"2015-8-16",max_temp:32,mean_temp:26,min_temp:19},{date:"2015-8-17",max_temp:33,mean_temp:27,min_temp:22},{date:"2015-8-18",max_temp:31,mean_temp:26,min_temp:22},{date:"2015-8-19",max_temp:31,mean_temp:27,min_temp:22},{date:"2015-8-20",max_temp:26,mean_temp:23,min_temp:20},{date:"2015-8-21",max_temp:28,mean_temp:24,min_temp:19},{date:"2015-8-22",max_temp:23,mean_temp:21,min_temp:19},{date:"2015-8-23",max_temp:22,mean_temp:21,min_temp:19},{date:"2015-8-24",max_temp:24,mean_temp:22,min_temp:20},{date:"2015-8-25",max_temp:27,mean_temp:23,min_temp:19},{date:"2015-8-26",max_temp:29,mean_temp:25,min_temp:21},{date:"2015-8-27",max_temp:28,mean_temp:23,min_temp:18},{date:"2015-8-28",max_temp:24,mean_temp:21,min_temp:18},{date:"2015-8-29",max_temp:28,mean_temp:23,min_temp:17},{date:"2015-8-30",max_temp:31,mean_temp:26,min_temp:21},{date:"2015-8-31",max_temp:32,mean_temp:27,min_temp:22},{date:"2015-9-1",max_temp:26,mean_temp:23,min_temp:21},{date:"2015-9-2",max_temp:33,mean_temp:26,min_temp:19},{date:"2015-9-3",max_temp:28,mean_temp:24,min_temp:21},{date:"2015-9-4",max_temp:22,mean_temp:19,min_temp:17},{date:"2015-9-5",max_temp:23,mean_temp:19,min_temp:14},{date:"2015-9-6",max_temp:28,mean_temp:22,min_temp:16},{date:"2015-9-7",max_temp:34,mean_temp:27,min_temp:19},{date:"2015-9-8",max_temp:36,mean_temp:29,min_temp:22},{date:"2015-9-9",max_temp:34,mean_temp:28,min_temp:22},{date:"2015-9-10",max_temp:25,mean_temp:22,min_temp:18},{date:"2015-9-11",max_temp:23,mean_temp:20,min_temp:17},{date:"2015-9-12",max_temp:22,mean_temp:19,min_temp:16},{date:"2015-9-13",max_temp:19,mean_temp:18,min_temp:17},{date:"2015-9-14",max_temp:22,mean_temp:18,min_temp:14},{date:"2015-9-15",max_temp:29,mean_temp:23,min_temp:17},{date:"2015-9-16",max_temp:27,mean_temp:23,min_temp:18},{date:"2015-9-17",max_temp:32,mean_temp:25,min_temp:18},{date:"2015-9-18",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-9-19",max_temp:26,mean_temp:22,min_temp:17},{date:"2015-9-20",max_temp:24,mean_temp:19,min_temp:14},{date:"2015-9-21",max_temp:19,mean_temp:16,min_temp:12},{date:"2015-9-22",max_temp:20,mean_temp:17,min_temp:13},{date:"2015-9-23",max_temp:20,mean_temp:16,min_temp:12},{date:"2015-9-24",max_temp:23,mean_temp:19,min_temp:14},{date:"2015-9-25",max_temp:19,mean_temp:16,min_temp:13},{date:"2015-9-26",max_temp:17,mean_temp:14,min_temp:10},{date:"2015-9-27",max_temp:18,mean_temp:13,min_temp:9},{date:"2015-9-28",max_temp:26,mean_temp:19,min_temp:13},{date:"2015-9-29",max_temp:29,mean_temp:24,min_temp:18},{date:"2015-9-30",max_temp:26,mean_temp:20,min_temp:14},{date:"2015-10-1",max_temp:15,mean_temp:14,min_temp:12},{date:"2015-10-2",max_temp:12,mean_temp:11,min_temp:10},{date:"2015-10-3",max_temp:12,mean_temp:11,min_temp:9},{date:"2015-10-4",max_temp:13,mean_temp:12,min_temp:11},{date:"2015-10-5",max_temp:16,mean_temp:13,min_temp:9},{date:"2015-10-6",max_temp:18,mean_temp:13,min_temp:9},{date:"2015-10-7",max_temp:22,mean_temp:17,min_temp:11},{date:"2015-10-8",max_temp:17,mean_temp:14,min_temp:11},{date:"2015-10-9",max_temp:22,mean_temp:17,min_temp:11},{date:"2015-10-10",max_temp:16,mean_temp:13,min_temp:9},{date:"2015-10-11",max_temp:20,mean_temp:14,min_temp:9},{date:"2015-10-12",max_temp:24,mean_temp:18,min_temp:11},{date:"2015-10-13",max_temp:22,mean_temp:18,min_temp:13},{date:"2015-10-14",max_temp:20,mean_temp:16,min_temp:11},{date:"2015-10-15",max_temp:17,mean_temp:13,min_temp:8},{date:"2015-10-16",max_temp:16,mean_temp:13,min_temp:10},{date:"2015-10-17",max_temp:13,mean_temp:9,min_temp:4},{date:"2015-10-18",max_temp:8,mean_temp:4,min_temp:1},{date:"2015-10-19",max_temp:9,mean_temp:4,min_temp:-1},{date:"2015-10-20",max_temp:19,mean_temp:13,min_temp:7},{date:"2015-10-21",max_temp:16,mean_temp:14,min_temp:12},{date:"2015-10-22",max_temp:23,mean_temp:17,min_temp:11},{date:"2015-10-23",max_temp:15,mean_temp:10,min_temp:4},{date:"2015-10-24",max_temp:9,mean_temp:7,min_temp:3},{date:"2015-10-25",max_temp:17,mean_temp:13,min_temp:9},{date:"2015-10-26",max_temp:11,mean_temp:9,min_temp:6},{date:"2015-10-27",max_temp:12,mean_temp:8,min_temp:3},{date:"2015-10-28",max_temp:18,mean_temp:12,min_temp:6},{date:"2015-10-29",max_temp:24,mean_temp:19,min_temp:14},{date:"2015-10-30",max_temp:16,mean_temp:11,min_temp:6},{date:"2015-10-31",max_temp:11,mean_temp:7,min_temp:3},{date:"2015-11-1",max_temp:17,mean_temp:13,min_temp:9},{date:"2015-11-2",max_temp:18,mean_temp:14,min_temp:11},{date:"2015-11-3",max_temp:23,mean_temp:16,min_temp:8},{date:"2015-11-4",max_temp:16,mean_temp:13,min_temp:9},{date:"2015-11-5",max_temp:24,mean_temp:17,min_temp:10},{date:"2015-11-6",max_temp:23,mean_temp:20,min_temp:17},{date:"2015-11-7",max_temp:21,mean_temp:16,min_temp:10},{date:"2015-11-8",max_temp:13,mean_temp:10,min_temp:7},{date:"2015-11-9",max_temp:16,mean_temp:11,min_temp:5},{date:"2015-11-10",max_temp:12,mean_temp:9,min_temp:7},{date:"2015-11-11",max_temp:10,mean_temp:9,min_temp:8},{date:"2015-11-12",max_temp:14,mean_temp:11,min_temp:8},{date:"2015-11-13",max_temp:15,mean_temp:12,min_temp:8},{date:"2015-11-14",max_temp:8,mean_temp:6,min_temp:3},{date:"2015-11-15",max_temp:12,mean_temp:8,min_temp:3},{date:"2015-11-16",max_temp:16,mean_temp:10,min_temp:4},{date:"2015-11-17",max_temp:7,mean_temp:4,min_temp:1},{date:"2015-11-18",max_temp:9,mean_temp:4,min_temp:-1},{date:"2015-11-19",max_temp:13,mean_temp:9,min_temp:6},{date:"2015-11-20",max_temp:16,mean_temp:12,min_temp:7},{date:"2015-11-21",max_temp:9,mean_temp:6,min_temp:3},{date:"2015-11-22",max_temp:9,mean_temp:6,min_temp:2},{date:"2015-11-23",max_temp:6,mean_temp:2,min_temp:-1},{date:"2015-11-24",max_temp:7,mean_temp:3,min_temp:-2},{date:"2015-11-25",max_temp:7,mean_temp:3,min_temp:-1},{date:"2015-11-26",max_temp:15,mean_temp:9,min_temp:3},{date:"2015-11-27",max_temp:18,mean_temp:13,min_temp:9},{date:"2015-11-28",max_temp:16,mean_temp:11,min_temp:5},{date:"2015-11-29",max_temp:7,mean_temp:3,min_temp:0},{date:"2015-11-30",max_temp:3,mean_temp:1,min_temp:-2},{date:"2015-12-1",max_temp:7,mean_temp:4,min_temp:0},{date:"2015-12-2",max_temp:11,mean_temp:7,min_temp:4},{date:"2015-12-3",max_temp:11,mean_temp:8,min_temp:5},{date:"2015-12-4",max_temp:9,mean_temp:6,min_temp:3},{date:"2015-12-5",max_temp:12,mean_temp:8,min_temp:4},{date:"2015-12-6",max_temp:15,mean_temp:9,min_temp:2},{date:"2015-12-7",max_temp:13,mean_temp:8,min_temp:3},{date:"2015-12-8",max_temp:7,mean_temp:5,min_temp:3},{date:"2015-12-9",max_temp:8,mean_temp:6,min_temp:3},{date:"2015-12-10",max_temp:14,mean_temp:11,min_temp:6},{date:"2015-12-11",max_temp:14,mean_temp:11,min_temp:6},{date:"2015-12-12",max_temp:16,mean_temp:13,min_temp:9},{date:"2015-12-13",max_temp:12,mean_temp:10,min_temp:8},{date:"2015-12-14",max_temp:14,mean_temp:11,min_temp:8},{date:"2015-12-15",max_temp:16,mean_temp:13,min_temp:9},{date:"2015-12-16",max_temp:9,mean_temp:6,min_temp:3},{date:"2015-12-17",max_temp:11,mean_temp:8,min_temp:4},{date:"2015-12-18",max_temp:11,mean_temp:8,min_temp:4},{date:"2015-12-19",max_temp:4,mean_temp:3,min_temp:1},{date:"2015-12-20",max_temp:5,mean_temp:2,min_temp:-1},{date:"2015-12-21",max_temp:12,mean_temp:6,min_temp:0},{date:"2015-12-22",max_temp:16,mean_temp:12,min_temp:9},{date:"2015-12-23",max_temp:13,mean_temp:11,min_temp:7},{date:"2015-12-24",max_temp:21,mean_temp:15,min_temp:9},{date:"2015-12-25",max_temp:17,mean_temp:13,min_temp:9},{date:"2015-12-26",max_temp:13,mean_temp:9,min_temp:5},{date:"2015-12-27",max_temp:10,mean_temp:7,min_temp:3},{date:"2015-12-28",max_temp:3,mean_temp:1,min_temp:-2},{date:"2015-12-29",max_temp:4,mean_temp:0,min_temp:-4},{date:"2015-12-30",max_temp:3,mean_temp:-1,min_temp:-4},{date:"2015-12-31",max_temp:8,mean_temp:4,min_temp:1}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment