Skip to content

Instantly share code, notes, and snippets.

@databayou
Last active May 31, 2019 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save databayou/6091643720d7df6a96453d0cdbcae186 to your computer and use it in GitHub Desktop.
Save databayou/6091643720d7df6a96453d0cdbcae186 to your computer and use it in GitHub Desktop.
Interactive Color Heatmap and Legend
license: mit

This visualization was made for Datacanvas: Sense Your City, Data Art Visualization Challenge. The paired colors represent different environmental data from the sensors. The whole chart includes one week of March 2015. Each rectangle represents data from one hour. Dust data measurements are in pcs/mL.

I wanted a heatmap that represented changing environmental factors in each city. I wanted to use contrasting colors that popped. I also created an extra javascript file to make the legend. You can see the final version in my webpage Databayou.

Built with blockbuilder.orgBuilt with blockbuilder.org

<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="sensedata.json"></script>
<script type="text/javascript" src="https://d3js.org/d3.v3.min.js"></script>
<style>
#top {
width: 650px;
margin: 0 auto;
}
#bottom {
width: 700px;
margin: 0 auto;
}
input:hover {
background: #E6E6FA;
}
.city {
-webkit-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
-moz-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
background-color:#fff;
border:1px solid #4682B4;
font-family:'Lucida Grande',Tahoma,Verdana,Arial,sans-serif;
font-size:12px;
font-weight:700;
padding:2px 6px;
height:25px;
color:#4682B4;
border-radius:2px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
margin:0 auto;
}
#viz {
width: 1024px;
margin: 0 auto;
}
.leyenda {
width: 300px;
margin: 0 auto;
}
.element {
-webkit-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
-moz-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
background-color:#fff;
border:1px solid #FF0000;
font-family:'Lucida Grande',Tahoma,Verdana,Arial,sans-serif;
font-size:12px;
font-weight:700;
padding:2px 6px;
height:25px;
color:#FF0000;
border-radius:2px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
width:100px;
}
.tooltip {
position: absolute;
top:40px;
left:40px;
width: 350;
height: 200;
text-align: left;
padding: 4px;
font: 13px Arial, Verdana, sans-serif;
background: white;
border: 3px;
border-radius: 8px;
border-color: #4682B4;
color: #4682B4;
display: block;
z-index: 1;
}
</style>
</head>
<body>
<div class="header">
<div id="top">
<input name="ban"
class="city"
type="button"
value="Bangalore"
onclick="banData()" />
<input name="bos"
class="city"
type="button"
value="Boston"
onclick="bosData()" />
<input name="gen"
class="city"
type="button"
value="Geneva"
onclick="genData()" />
<input name="rio"
class="city"
type="button"
value="Rio de Janeiro"
onclick="rioData()" />
<input name="san"
class="city"
type="button"
value="San Francisco"
onclick="sanData()" />
<input name="shang"
class="city"
type="button"
value="Shanghai"
onclick="shangData()" />
<input name="sing"
class="city"
type="button"
value="Singapore"
onclick="singData()" />
</div>
</div>
<div id="viz">
<script type="text/javascript" src="sense.js"></script>
<script type="text/javascript"></script>
</div>
<div id="legend" class="leyenda">
<script type="text/javascript" src="legend.js"></script>
<script type="text/javascript"></script>
</div>
<div id="bottom">
<input name="temp"
class="element"
type="button"
value="Temperature"
onclick="tempData(); legtempData();" />
<input name="lig"
class="element"
type="button"
value="Light"
onclick="ligData() ;legligData();" />
<input name="air"
class="element"
type="button"
value="Air Pollution"
onclick="airData(); legairData();" />
<input name="sou"
class="element"
type="button"
value="Noise"
onclick="souData(); legsouData();" />
<input name="hum"
class="element"
type="button"
value="Humidity"
onclick="humData(); leghumData();" />
<input name="dus"
class="element"
type="button"
value="Dust"
onclick="dusData(); legdusData();" />
</div>
</body>
</html>
/////////////////////this is the legend////////////////////
var svgContainer2 = d3.select("#legend").append("svg")//check the #
.attr("width",300)
.attr("height",30);
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(legtemp)
.enter()
.append("rect");
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(legtemp)
.enter()
.append("text");
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 + 8; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.temp + "C"; })
.attr("font-family", "sans-serif")
.style("font-size", "10px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
function legtempData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(legtemp)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text = svgContainer2.selectAll("text")
.data(legtemp)
.transition()
.duration(3000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 + 8; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.temp + "C"; })
.attr("font-family", "sans-serif")
.style("font-size", "10px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
function legligData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(leglig)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(leglig)
.transition()
.duration(3000)
.delay(1000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 ; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.light + "Lux"; })
.attr("font-family", "sans-serif")
.style("font-size", "8px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
function legairData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(legair)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(legair)
.transition()
.duration(3000)
.delay(1000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 ; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.airq + "Mv"; })
.attr("font-family", "sans-serif")
.style("font-size", "10px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
function legsouData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(legsou)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30 + 1; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(legsou)
.transition()
.duration(3000)
.delay(1000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.sound + "mV"; })
.attr("font-family", "sans-serif")
.style("font-size", "8px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
function leghumData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(leghum)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30 + 1; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(leghum)
.transition()
.duration(3000)
.delay(1000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 + 2; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.humidity + "%"; })
.attr("font-family", "sans-serif")
.style("font-size", "10px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
function legdusData() {
//Rectangles added to the svgContainer
var rectangles2 = svgContainer2.selectAll("rect")
.data(legdus)
.transition()
.duration(3000);
var rectangleAttributes2 = rectangles2
.attr("x", function (d, i) {return i * 30 + 1; })//thickness
.attr("y", 0)//this is the top of the line
.attr("width", 30)//1 so there is no padding
.attr("height", 30) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.r + " , " + d.g + " , " + d.b + ")";
});
var text2 = svgContainer2.selectAll("text")
.data(legdus)
.transition()
.duration(3000)
.delay(1000);
var textLabels2 = text2
.attr("x", function (d, i) {return i * 30 + 1; })//thickness
.attr("y", 25)//this is the top of the line
.text( function (d) { return d.dust + "*"; })
.attr("font-family", "sans-serif")
.style("font-size", "10px")
.attr("fill", "#FFFFFF")
.attr("text-anchor", "start");
}
var svgContainer = d3.select("#viz").append("svg")
.attr("width",1024)
.attr("height",210);
var div = d3.select("#viz").append("div")
.attr("class", "tooltip")
.style("opacity", 1);
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(bang)
.enter()
.append("rect");
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
})
.on("mouseover", function(d) {
div.transition()
.delay(300)
.duration(200)
.style("opacity", 1);
div.html("City: " + d.city + "</br>" + "Date and Time: " + "</br>" + d.timestamp)
//.style("block");//it is to keep it still on top
.style("left", (d3.event.pageX) + "px") //It would be this one if it was all over the place
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
div.transition()
.delay(2000)
.duration(1500)
.style("opacity", 0)
});
var text = svgContainer.selectAll("text")
.data(label)
.enter()
.append("text");
var textLabels = text
.attr("x", function(d) { return (d.x); })
.attr("y", function(d) { return (d.y); })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start"); // text starts on the left side of the margin
function banData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(bang)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function bosData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(bos)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function genData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(gen)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function rioData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(rio)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function sanData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(san)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function shangData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(shang)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function singData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(sing)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(label)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.label; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#FF0000")
.attr("text-anchor", "start");
}
function tempData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(temp)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
function ligData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(lig)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
function airData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(air)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
function souData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(sou)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
function humData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(hum)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
function dusData() {
//Rectangles added to the svgContainer
var rectangles = svgContainer.selectAll("rect")
.data(dus)
.transition()
.duration(3000);
var rectangleAttributes = rectangles
.attr("x", function (d) {return d.x-112; })//thickness
.attr("y", function (d) { return d.y; })//this is the top of the line
.attr("width", 5)//1 so there is no padding
.attr("height", function(d) { return d.height; }) //this is the bottom line
.style("fill", function(d) {
return "rgb(" + d.rt + " , " + d.gt + " , " + d.bt + ")";
});
var text = svgContainer.selectAll("text")
.data(city)
.transition()
.duration(3000)
.delay(1000);
var textLabels = text
.attr("x", function(d) { return d.x; })
.attr("y", function(d) { return d.y; })
.text( function (d) { return d.city; })
.attr("font-family", "sans-serif")
.style("font-size", "15px")
.attr("fill", "#4682B4")
.attr("text-anchor", "start");
}
This file has been truncated, but you can view the full file.
var temp = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","temperature":30.28983276,"x":200,"y":0,"height":30,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","temperature":31.23692746,"x":205,"y":0,"height":30,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","temperature":32.05623189,"x":210,"y":0,"height":30,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","temperature":32.91357925,"x":215,"y":0,"height":30,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","temperature":34.11449762,"x":220,"y":0,"height":30,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","temperature":34.05385358,"x":225,"y":0,"height":30,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","temperature":33.45061499,"x":230,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","temperature":32.09714134,"x":235,"y":0,"height":30,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","temperature":30.76441939,"x":240,"y":0,"height":30,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","temperature":30.09489902,"x":245,"y":0,"height":30,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","temperature":29.62881061,"x":250,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","temperature":28.87811089,"x":255,"y":0,"height":30,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","temperature":28.03748809,"x":260,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","temperature":27.48263685,"x":265,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","temperature":27.02566384,"x":270,"y":0,"height":30,"rt":153,"gt":102,"bt":102},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","temperature":26.46871473,"x":275,"y":0,"height":30,"rt":150,"gt":105,"bt":105},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","temperature":26.10926339,"x":280,"y":0,"height":30,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","temperature":25.76105752,"x":285,"y":0,"height":30,"rt":146,"gt":109,"bt":109},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","temperature":25.53888177,"x":290,"y":0,"height":30,"rt":145,"gt":110,"bt":110},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","temperature":25.27637417,"x":295,"y":0,"height":30,"rt":143,"gt":112,"bt":112},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","temperature":25.05195383,"x":300,"y":0,"height":30,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","temperature":25.80489291,"x":305,"y":0,"height":30,"rt":146,"gt":109,"bt":109},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","temperature":27.01560755,"x":310,"y":0,"height":30,"rt":153,"gt":102,"bt":102},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","temperature":28.71218606,"x":315,"y":0,"height":30,"rt":163,"gt":92,"bt":92},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","temperature":30.13473328,"x":320,"y":0,"height":30,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","temperature":30.98280535,"x":325,"y":0,"height":30,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","temperature":32.08686988,"x":330,"y":0,"height":30,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","temperature":33.14733494,"x":335,"y":0,"height":30,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","temperature":34.27458384,"x":340,"y":0,"height":30,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","temperature":34.10945229,"x":345,"y":0,"height":30,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","temperature":33.85741797,"x":350,"y":0,"height":30,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","temperature":32.29416302,"x":355,"y":0,"height":30,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","temperature":31.22230891,"x":360,"y":0,"height":30,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","temperature":30.8755214,"x":365,"y":0,"height":30,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","temperature":30.16584732,"x":370,"y":0,"height":30,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","temperature":29.60972953,"x":375,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","temperature":29.1306522,"x":380,"y":0,"height":30,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","temperature":28.56660955,"x":385,"y":0,"height":30,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","temperature":28.13511949,"x":390,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","temperature":27.63148549,"x":395,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","temperature":27.20416318,"x":400,"y":0,"height":30,"rt":154,"gt":101,"bt":101},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","temperature":26.8872414,"x":405,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","temperature":26.86135045,"x":410,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","temperature":26.51715202,"x":415,"y":0,"height":30,"rt":150,"gt":105,"bt":105},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","temperature":26.60031368,"x":420,"y":0,"height":30,"rt":151,"gt":104,"bt":104},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","temperature":27.42875521,"x":425,"y":0,"height":30,"rt":155,"gt":100,"bt":100},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","temperature":28.51926034,"x":430,"y":0,"height":30,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","temperature":30.17376189,"x":435,"y":0,"height":30,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","temperature":31.405474,"x":440,"y":0,"height":30,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","temperature":32.49474187,"x":445,"y":0,"height":30,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","temperature":32.95896957,"x":450,"y":0,"height":30,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","temperature":33.34960125,"x":455,"y":0,"height":30,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","temperature":33.66484704,"x":460,"y":0,"height":30,"rt":191,"gt":64,"bt":64},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","temperature":33.47877927,"x":465,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","temperature":33.48884496,"x":470,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","temperature":32.39520489,"x":475,"y":0,"height":30,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","temperature":31.27355616,"x":480,"y":0,"height":30,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","temperature":30.91820107,"x":485,"y":0,"height":30,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","temperature":30.76392645,"x":490,"y":0,"height":30,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","temperature":29.71273874,"x":495,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","temperature":29.08319698,"x":500,"y":0,"height":30,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","temperature":28.58764572,"x":505,"y":0,"height":30,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","temperature":28.05655664,"x":510,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","temperature":27.61239526,"x":515,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","temperature":27.26782035,"x":520,"y":0,"height":30,"rt":155,"gt":100,"bt":100},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","temperature":26.90489365,"x":525,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","temperature":26.52460226,"x":530,"y":0,"height":30,"rt":150,"gt":105,"bt":105},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","temperature":26.36443183,"x":535,"y":0,"height":30,"rt":149,"gt":106,"bt":106},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","temperature":26.36123156,"x":540,"y":0,"height":30,"rt":149,"gt":106,"bt":106},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","temperature":27.21830115,"x":545,"y":0,"height":30,"rt":154,"gt":101,"bt":101},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","temperature":28.96227035,"x":550,"y":0,"height":30,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","temperature":30.26122361,"x":555,"y":0,"height":30,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","temperature":31.62705069,"x":560,"y":0,"height":30,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","temperature":32.79077632,"x":565,"y":0,"height":30,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","temperature":33.41119724,"x":570,"y":0,"height":30,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","temperature":34.02888523,"x":575,"y":0,"height":30,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","temperature":34.8949911,"x":580,"y":0,"height":30,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","temperature":34.99799233,"x":585,"y":0,"height":30,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","temperature":33.85993608,"x":590,"y":0,"height":30,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","temperature":33.33990544,"x":595,"y":0,"height":30,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","temperature":31.89893541,"x":600,"y":0,"height":30,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","temperature":31.15779203,"x":605,"y":0,"height":30,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","temperature":30.26524739,"x":610,"y":0,"height":30,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","temperature":29.70481161,"x":615,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","temperature":29.11311021,"x":620,"y":0,"height":30,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","temperature":28.87628238,"x":625,"y":0,"height":30,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","temperature":28.24161143,"x":630,"y":0,"height":30,"rt":160,"gt":95,"bt":95},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","temperature":27.74181959,"x":635,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","temperature":27.47003607,"x":640,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","temperature":27.158625,"x":645,"y":0,"height":30,"rt":154,"gt":101,"bt":101},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","temperature":26.85083682,"x":650,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","temperature":26.815531,"x":655,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","temperature":27.13186777,"x":660,"y":0,"height":30,"rt":154,"gt":101,"bt":101},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","temperature":28.1445753,"x":665,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","temperature":29.4752588,"x":670,"y":0,"height":30,"rt":167,"gt":88,"bt":88},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","temperature":31.03026913,"x":675,"y":0,"height":30,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","temperature":32.21517052,"x":680,"y":0,"height":30,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","temperature":32.91268217,"x":685,"y":0,"height":30,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","temperature":33.55719017,"x":690,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","temperature":34.3749093,"x":695,"y":0,"height":30,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","temperature":35.77341788,"x":700,"y":0,"height":30,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","temperature":36.1894607,"x":705,"y":0,"height":30,"rt":205,"gt":50,"bt":50},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","temperature":35.79128513,"x":710,"y":0,"height":30,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","temperature":34.12503536,"x":715,"y":0,"height":30,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","temperature":32.21609279,"x":720,"y":0,"height":30,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","temperature":31.11934242,"x":725,"y":0,"height":30,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","temperature":30.45462408,"x":730,"y":0,"height":30,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","temperature":29.73359401,"x":735,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","temperature":29.20925367,"x":740,"y":0,"height":30,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","temperature":28.37455167,"x":745,"y":0,"height":30,"rt":161,"gt":94,"bt":94},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","temperature":27.99988926,"x":750,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","temperature":27.83979949,"x":755,"y":0,"height":30,"rt":158,"gt":97,"bt":97},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","temperature":27.72045546,"x":760,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","temperature":27.33477618,"x":765,"y":0,"height":30,"rt":155,"gt":100,"bt":100},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","temperature":26.72383786,"x":770,"y":0,"height":30,"rt":151,"gt":104,"bt":104},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","temperature":26.46188281,"x":775,"y":0,"height":30,"rt":150,"gt":105,"bt":105},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","temperature":26.87014622,"x":780,"y":0,"height":30,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","temperature":28.1177945,"x":785,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","temperature":29.23141055,"x":790,"y":0,"height":30,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","temperature":30.68785565,"x":795,"y":0,"height":30,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","temperature":32.36987959,"x":800,"y":0,"height":30,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","temperature":33.55039037,"x":805,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","temperature":34.9699411,"x":810,"y":0,"height":30,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","temperature":36.31307929,"x":815,"y":0,"height":30,"rt":206,"gt":49,"bt":49},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","temperature":38.04524678,"x":820,"y":0,"height":30,"rt":216,"gt":39,"bt":39},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","temperature":37.94535915,"x":825,"y":0,"height":30,"rt":215,"gt":40,"bt":40},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","temperature":36.76717138,"x":830,"y":0,"height":30,"rt":208,"gt":47,"bt":47},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","temperature":35.00794016,"x":835,"y":0,"height":30,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","temperature":33.23886737,"x":840,"y":0,"height":30,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","temperature":31.97585471,"x":845,"y":0,"height":30,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","temperature":31.06276779,"x":850,"y":0,"height":30,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","temperature":30.31456178,"x":855,"y":0,"height":30,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","temperature":29.68374601,"x":860,"y":0,"height":30,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","temperature":29.28198297,"x":865,"y":0,"height":30,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","temperature":28.41809047,"x":870,"y":0,"height":30,"rt":161,"gt":94,"bt":94},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","temperature":27.98260981,"x":875,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","temperature":27.72028824,"x":880,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","temperature":28.2146656,"x":885,"y":0,"height":30,"rt":160,"gt":95,"bt":95},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","temperature":28.0273381,"x":890,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","temperature":27.74493931,"x":895,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","temperature":27.5208928,"x":900,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","temperature":28.50876431,"x":905,"y":0,"height":30,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","temperature":29.53250507,"x":910,"y":0,"height":30,"rt":167,"gt":88,"bt":88},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","temperature":31.05730479,"x":915,"y":0,"height":30,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","temperature":32.50118048,"x":920,"y":0,"height":30,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","temperature":33.48434237,"x":925,"y":0,"height":30,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","temperature":34.34633107,"x":930,"y":0,"height":30,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","temperature":35.05975754,"x":935,"y":0,"height":30,"rt":199,"gt":56,"bt":56},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","temperature":36.23699743,"x":940,"y":0,"height":30,"rt":205,"gt":50,"bt":50},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","temperature":35.84834205,"x":945,"y":0,"height":30,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","temperature":35.26497385,"x":950,"y":0,"height":30,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","temperature":34.60064099,"x":955,"y":0,"height":30,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","temperature":32.8573635,"x":960,"y":0,"height":30,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","temperature":32.16847725,"x":965,"y":0,"height":30,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","temperature":31.39886775,"x":970,"y":0,"height":30,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","temperature":30.54231147,"x":975,"y":0,"height":30,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","temperature":29.89456412,"x":980,"y":0,"height":30,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","temperature":29.13987111,"x":985,"y":0,"height":30,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","temperature":28.49684221,"x":990,"y":0,"height":30,"rt":161,"gt":94,"bt":94},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","temperature":28.06561809,"x":995,"y":0,"height":30,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","temperature":27.66735185,"x":1000,"y":0,"height":30,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","temperature":27.60855167,"x":1005,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","temperature":27.40477834,"x":1010,"y":0,"height":30,"rt":155,"gt":100,"bt":100},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","temperature":27.28694454,"x":1015,"y":0,"height":30,"rt":155,"gt":100,"bt":100},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","temperature":27.48145965,"x":1020,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","temperature":27.58285353,"x":1025,"y":0,"height":30,"rt":156,"gt":99,"bt":99},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","temperature":6.216099453,"x":200,"y":30,"height":60,"rt":35,"gt":220,"bt":220},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","temperature":6.18300083,"x":205,"y":30,"height":60,"rt":35,"gt":220,"bt":220},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","temperature":5.60967553,"x":210,"y":30,"height":60,"rt":32,"gt":223,"bt":223},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","temperature":5.378076209,"x":215,"y":30,"height":60,"rt":30,"gt":225,"bt":225},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","temperature":5.278953202,"x":220,"y":30,"height":60,"rt":30,"gt":225,"bt":225},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","temperature":5.459520989,"x":225,"y":30,"height":60,"rt":31,"gt":224,"bt":224},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","temperature":5.286752157,"x":230,"y":30,"height":60,"rt":30,"gt":225,"bt":225},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","temperature":6.635570697,"x":235,"y":30,"height":60,"rt":38,"gt":217,"bt":217},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","temperature":7.542827267,"x":240,"y":30,"height":60,"rt":43,"gt":212,"bt":212},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","temperature":9.303019978,"x":245,"y":30,"height":60,"rt":53,"gt":202,"bt":202},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","temperature":11.10716888,"x":250,"y":30,"height":60,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","temperature":11.69655915,"x":255,"y":30,"height":60,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","temperature":12.30450224,"x":260,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","temperature":12.8191589,"x":265,"y":30,"height":60,"rt":73,"gt":182,"bt":182},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","temperature":13.00012988,"x":270,"y":30,"height":60,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","temperature":13.35471118,"x":275,"y":30,"height":60,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","temperature":13.1419419,"x":280,"y":30,"height":60,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","temperature":12.39749275,"x":285,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","temperature":11.24987137,"x":290,"y":30,"height":60,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","temperature":10.60408503,"x":295,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","temperature":10.54908222,"x":300,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","temperature":10.44552381,"x":305,"y":30,"height":60,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","temperature":10.33499715,"x":310,"y":30,"height":60,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","temperature":9.906643237,"x":315,"y":30,"height":60,"rt":56,"gt":199,"bt":199},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","temperature":9.592276799,"x":320,"y":30,"height":60,"rt":54,"gt":201,"bt":201},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","temperature":9.679584721,"x":325,"y":30,"height":60,"rt":55,"gt":200,"bt":200},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","temperature":9.740089461,"x":330,"y":30,"height":60,"rt":55,"gt":200,"bt":200},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","temperature":9.770120911,"x":335,"y":30,"height":60,"rt":55,"gt":200,"bt":200},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","temperature":9.8325115,"x":340,"y":30,"height":60,"rt":56,"gt":199,"bt":199},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","temperature":9.984270776,"x":345,"y":30,"height":60,"rt":57,"gt":198,"bt":198},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","temperature":10.22251788,"x":350,"y":30,"height":60,"rt":58,"gt":197,"bt":197},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","temperature":10.4933987,"x":355,"y":30,"height":60,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","temperature":10.90795649,"x":360,"y":30,"height":60,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","temperature":12.00378795,"x":365,"y":30,"height":60,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","temperature":11.59744996,"x":370,"y":30,"height":60,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","temperature":10.83070967,"x":375,"y":30,"height":60,"rt":61,"gt":194,"bt":194},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","temperature":10.72759469,"x":380,"y":30,"height":60,"rt":61,"gt":194,"bt":194},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","temperature":11.11486899,"x":385,"y":30,"height":60,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","temperature":11.19631855,"x":390,"y":30,"height":60,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","temperature":11.13465764,"x":395,"y":30,"height":60,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","temperature":11.50011023,"x":400,"y":30,"height":60,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","temperature":12.34664943,"x":405,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","temperature":12.53140751,"x":410,"y":30,"height":60,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","temperature":11.2681144,"x":415,"y":30,"height":60,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","temperature":10.65237247,"x":420,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","temperature":10.36612081,"x":425,"y":30,"height":60,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","temperature":10.63993808,"x":430,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","temperature":10.61160522,"x":435,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","temperature":10.59616898,"x":440,"y":30,"height":60,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","temperature":10.86790285,"x":445,"y":30,"height":60,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","temperature":10.89394348,"x":450,"y":30,"height":60,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","temperature":10.967305,"x":455,"y":30,"height":60,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","temperature":11.23948162,"x":460,"y":30,"height":60,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","temperature":11.58410081,"x":465,"y":30,"height":60,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","temperature":11.58482044,"x":470,"y":30,"height":60,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","temperature":11.85076038,"x":475,"y":30,"height":60,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","temperature":12.2318071,"x":480,"y":30,"height":60,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","temperature":12.44624119,"x":485,"y":30,"height":60,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","temperature":12.58828282,"x":490,"y":30,"height":60,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","temperature":12.32295406,"x":495,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","temperature":12.99940464,"x":500,"y":30,"height":60,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","temperature":13.44399838,"x":505,"y":30,"height":60,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","temperature":11.71035627,"x":510,"y":30,"height":60,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","temperature":9.622102306,"x":515,"y":30,"height":60,"rt":55,"gt":200,"bt":200},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","temperature":9.044332091,"x":520,"y":30,"height":60,"rt":51,"gt":204,"bt":204},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","temperature":7.890545646,"x":525,"y":30,"height":60,"rt":45,"gt":210,"bt":210},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","temperature":6.462318531,"x":530,"y":30,"height":60,"rt":37,"gt":218,"bt":218},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","temperature":7.069959239,"x":535,"y":30,"height":60,"rt":40,"gt":215,"bt":215},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","temperature":7.235447706,"x":540,"y":30,"height":60,"rt":41,"gt":214,"bt":214},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","temperature":6.696360612,"x":545,"y":30,"height":60,"rt":38,"gt":217,"bt":217},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","temperature":6.257926863,"x":550,"y":30,"height":60,"rt":35,"gt":220,"bt":220},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","temperature":5.892575531,"x":555,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","temperature":5.745048718,"x":560,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","temperature":5.604509948,"x":565,"y":30,"height":60,"rt":32,"gt":223,"bt":223},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","temperature":5.536538382,"x":570,"y":30,"height":60,"rt":31,"gt":224,"bt":224},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","temperature":5.500602336,"x":575,"y":30,"height":60,"rt":31,"gt":224,"bt":224},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","temperature":5.601602164,"x":580,"y":30,"height":60,"rt":32,"gt":223,"bt":223},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","temperature":5.736327519,"x":585,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","temperature":6.179238044,"x":590,"y":30,"height":60,"rt":35,"gt":220,"bt":220},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","temperature":7.764287737,"x":595,"y":30,"height":60,"rt":44,"gt":211,"bt":211},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","temperature":9.35742867,"x":600,"y":30,"height":60,"rt":53,"gt":202,"bt":202},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","temperature":11.77217775,"x":605,"y":30,"height":60,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","temperature":13.7187089,"x":610,"y":30,"height":60,"rt":78,"gt":177,"bt":177},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","temperature":14.69585756,"x":615,"y":30,"height":60,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","temperature":14.42020184,"x":620,"y":30,"height":60,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","temperature":15.21722144,"x":625,"y":30,"height":60,"rt":86,"gt":169,"bt":169},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","temperature":15.03041239,"x":630,"y":30,"height":60,"rt":85,"gt":170,"bt":170},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","temperature":15.40812265,"x":635,"y":30,"height":60,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","temperature":15.50992615,"x":640,"y":30,"height":60,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","temperature":14.53613303,"x":645,"y":30,"height":60,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","temperature":13.49727545,"x":650,"y":30,"height":60,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","temperature":12.68053389,"x":655,"y":30,"height":60,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","temperature":12.08462776,"x":660,"y":30,"height":60,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","temperature":11.53576633,"x":665,"y":30,"height":60,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","temperature":11.84500001,"x":670,"y":30,"height":60,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","temperature":12.00313438,"x":675,"y":30,"height":60,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","temperature":12.30392979,"x":680,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","temperature":12.48071766,"x":685,"y":30,"height":60,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","temperature":12.46636129,"x":690,"y":30,"height":60,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","temperature":12.62329436,"x":695,"y":30,"height":60,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","temperature":12.68495405,"x":700,"y":30,"height":60,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","temperature":12.09033005,"x":705,"y":30,"height":60,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","temperature":11.8752129,"x":710,"y":30,"height":60,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","temperature":12.0176449,"x":715,"y":30,"height":60,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","temperature":12.33347439,"x":720,"y":30,"height":60,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","temperature":12.64443684,"x":725,"y":30,"height":60,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","temperature":13.05286253,"x":730,"y":30,"height":60,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","temperature":14.15004852,"x":735,"y":30,"height":60,"rt":80,"gt":175,"bt":175},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","temperature":16.59106785,"x":740,"y":30,"height":60,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","temperature":16.49535988,"x":745,"y":30,"height":60,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","temperature":16.58556051,"x":750,"y":30,"height":60,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","temperature":15.9622442,"x":755,"y":30,"height":60,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","temperature":11.23385895,"x":760,"y":30,"height":60,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","temperature":9.129845177,"x":765,"y":30,"height":60,"rt":52,"gt":203,"bt":203},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","temperature":7.008694618,"x":770,"y":30,"height":60,"rt":40,"gt":215,"bt":215},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","temperature":6.29194825,"x":775,"y":30,"height":60,"rt":36,"gt":219,"bt":219},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","temperature":6.0186675,"x":780,"y":30,"height":60,"rt":34,"gt":221,"bt":221},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","temperature":6.132769878,"x":785,"y":30,"height":60,"rt":35,"gt":220,"bt":220},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","temperature":5.88449757,"x":790,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","temperature":5.878238498,"x":795,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","temperature":5.922558912,"x":800,"y":30,"height":60,"rt":34,"gt":221,"bt":221},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","temperature":5.519160682,"x":805,"y":30,"height":60,"rt":31,"gt":224,"bt":224},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","temperature":5.062745572,"x":810,"y":30,"height":60,"rt":29,"gt":226,"bt":226},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","temperature":4.353431487,"x":815,"y":30,"height":60,"rt":25,"gt":230,"bt":230},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","temperature":3.648430627,"x":820,"y":30,"height":60,"rt":21,"gt":234,"bt":234},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","temperature":3.355734468,"x":825,"y":30,"height":60,"rt":19,"gt":236,"bt":236},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","temperature":3.333788893,"x":830,"y":30,"height":60,"rt":19,"gt":236,"bt":236},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","temperature":4.342433445,"x":835,"y":30,"height":60,"rt":25,"gt":230,"bt":230},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","temperature":5.095693225,"x":840,"y":30,"height":60,"rt":29,"gt":226,"bt":226},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","temperature":6.515031208,"x":845,"y":30,"height":60,"rt":37,"gt":218,"bt":218},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","temperature":7.507767727,"x":850,"y":30,"height":60,"rt":43,"gt":212,"bt":212},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","temperature":7.102372737,"x":855,"y":30,"height":60,"rt":40,"gt":215,"bt":215},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","temperature":6.762770119,"x":860,"y":30,"height":60,"rt":38,"gt":217,"bt":217},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","temperature":6.433993137,"x":865,"y":30,"height":60,"rt":36,"gt":219,"bt":219},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","temperature":6.035425039,"x":870,"y":30,"height":60,"rt":34,"gt":221,"bt":221},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","temperature":5.563940974,"x":875,"y":30,"height":60,"rt":32,"gt":223,"bt":223},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","temperature":4.825520016,"x":880,"y":30,"height":60,"rt":27,"gt":228,"bt":228},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","temperature":3.994810562,"x":885,"y":30,"height":60,"rt":23,"gt":232,"bt":232},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","temperature":3.30559842,"x":890,"y":30,"height":60,"rt":19,"gt":236,"bt":236},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","temperature":2.893092805,"x":895,"y":30,"height":60,"rt":16,"gt":239,"bt":239},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","temperature":3.232085022,"x":900,"y":30,"height":60,"rt":18,"gt":237,"bt":237},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","temperature":3.516097808,"x":905,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","temperature":3.567954232,"x":910,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","temperature":3.561132122,"x":915,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","temperature":3.656586736,"x":920,"y":30,"height":60,"rt":21,"gt":234,"bt":234},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","temperature":3.584076017,"x":925,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","temperature":3.468409469,"x":930,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","temperature":3.10283461,"x":935,"y":30,"height":60,"rt":18,"gt":237,"bt":237},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","temperature":2.855806998,"x":940,"y":30,"height":60,"rt":16,"gt":239,"bt":239},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","temperature":2.578239871,"x":945,"y":30,"height":60,"rt":15,"gt":240,"bt":240},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","temperature":2.20024026,"x":950,"y":30,"height":60,"rt":12,"gt":243,"bt":243},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","temperature":3.496161447,"x":955,"y":30,"height":60,"rt":20,"gt":235,"bt":235},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","temperature":4.224746534,"x":960,"y":30,"height":60,"rt":24,"gt":231,"bt":231},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","temperature":5.764834727,"x":965,"y":30,"height":60,"rt":33,"gt":222,"bt":222},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","temperature":7.327473327,"x":970,"y":30,"height":60,"rt":42,"gt":213,"bt":213},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","temperature":7.80036279,"x":975,"y":30,"height":60,"rt":44,"gt":211,"bt":211},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","temperature":8.423550081,"x":980,"y":30,"height":60,"rt":48,"gt":207,"bt":207},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","temperature":8.901223101,"x":985,"y":30,"height":60,"rt":50,"gt":205,"bt":205},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","temperature":8.450447116,"x":990,"y":30,"height":60,"rt":48,"gt":207,"bt":207},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","temperature":8.790325541,"x":995,"y":30,"height":60,"rt":50,"gt":205,"bt":205},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","temperature":8.199394764,"x":1000,"y":30,"height":60,"rt":46,"gt":209,"bt":209},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","temperature":7.744486935,"x":1005,"y":30,"height":60,"rt":44,"gt":211,"bt":211},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","temperature":7.405661262,"x":1010,"y":30,"height":60,"rt":42,"gt":213,"bt":213},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","temperature":7.466417944,"x":1015,"y":30,"height":60,"rt":42,"gt":213,"bt":213},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","temperature":7.224372323,"x":1020,"y":30,"height":60,"rt":41,"gt":214,"bt":214},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","temperature":6.998323536,"x":1025,"y":30,"height":60,"rt":40,"gt":215,"bt":215},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","temperature":7.579717749,"x":200,"y":60,"height":90,"rt":43,"gt":212,"bt":212},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","temperature":8.432247796,"x":205,"y":60,"height":90,"rt":48,"gt":207,"bt":207},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","temperature":12.29597227,"x":210,"y":60,"height":90,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","temperature":14.802124,"x":215,"y":60,"height":90,"rt":84,"gt":171,"bt":171},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","temperature":16.78061393,"x":220,"y":60,"height":90,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","temperature":17.59452686,"x":225,"y":60,"height":90,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","temperature":19.33603344,"x":230,"y":60,"height":90,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","temperature":20.18559114,"x":235,"y":60,"height":90,"rt":114,"gt":141,"bt":141},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","temperature":20.48059974,"x":240,"y":60,"height":90,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","temperature":20.98065603,"x":245,"y":60,"height":90,"rt":119,"gt":136,"bt":136},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","temperature":19.15040855,"x":250,"y":60,"height":90,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","temperature":17.01121697,"x":255,"y":60,"height":90,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","temperature":15.47169579,"x":260,"y":60,"height":90,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","temperature":14.84622655,"x":265,"y":60,"height":90,"rt":84,"gt":171,"bt":171},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","temperature":14.25791469,"x":270,"y":60,"height":90,"rt":81,"gt":174,"bt":174},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","temperature":13.60103615,"x":275,"y":60,"height":90,"rt":77,"gt":178,"bt":178},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","temperature":13.13641044,"x":280,"y":60,"height":90,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","temperature":12.69588362,"x":285,"y":60,"height":90,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","temperature":12.41006705,"x":290,"y":60,"height":90,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","temperature":11.885,"x":295,"y":60,"height":90,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","temperature":11.41418553,"x":300,"y":60,"height":90,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","temperature":10.87118483,"x":305,"y":60,"height":90,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","temperature":10.23633437,"x":310,"y":60,"height":90,"rt":58,"gt":197,"bt":197},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","temperature":9.939186335,"x":315,"y":60,"height":90,"rt":56,"gt":199,"bt":199},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","temperature":9.44180795,"x":320,"y":60,"height":90,"rt":54,"gt":201,"bt":201},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","temperature":9.824342672,"x":325,"y":60,"height":90,"rt":56,"gt":199,"bt":199},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","temperature":11.57773282,"x":330,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","temperature":13.36223043,"x":335,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","temperature":15.17553612,"x":340,"y":60,"height":90,"rt":86,"gt":169,"bt":169},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","temperature":15.98333555,"x":345,"y":60,"height":90,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","temperature":16.04274767,"x":350,"y":60,"height":90,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","temperature":16.04956289,"x":355,"y":60,"height":90,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","temperature":16.47478092,"x":360,"y":60,"height":90,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","temperature":16.17547192,"x":365,"y":60,"height":90,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","temperature":16.62595944,"x":370,"y":60,"height":90,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","temperature":16.63403255,"x":375,"y":60,"height":90,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","temperature":14.86099025,"x":380,"y":60,"height":90,"rt":84,"gt":171,"bt":171},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","temperature":13.8044076,"x":385,"y":60,"height":90,"rt":78,"gt":177,"bt":177},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","temperature":13.32543476,"x":390,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","temperature":12.64096708,"x":395,"y":60,"height":90,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","temperature":12.12076218,"x":400,"y":60,"height":90,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","temperature":11.61521565,"x":405,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","temperature":11.86404415,"x":410,"y":60,"height":90,"rt":67,"gt":188,"bt":188},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","temperature":11.38803634,"x":415,"y":60,"height":90,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","temperature":10.61804092,"x":420,"y":60,"height":90,"rt":60,"gt":195,"bt":195},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","temperature":10.21637097,"x":425,"y":60,"height":90,"rt":58,"gt":197,"bt":197},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","temperature":9.589646654,"x":430,"y":60,"height":90,"rt":54,"gt":201,"bt":201},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","temperature":9.458960083,"x":435,"y":60,"height":90,"rt":54,"gt":201,"bt":201},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","temperature":9.301885776,"x":440,"y":60,"height":90,"rt":53,"gt":202,"bt":202},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","temperature":9.315371549,"x":445,"y":60,"height":90,"rt":53,"gt":202,"bt":202},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","temperature":9.855398499,"x":450,"y":60,"height":90,"rt":56,"gt":199,"bt":199},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","temperature":10.45086366,"x":455,"y":60,"height":90,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","temperature":11.09569357,"x":460,"y":60,"height":90,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","temperature":12.83914948,"x":465,"y":60,"height":90,"rt":73,"gt":182,"bt":182},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","temperature":15.17063333,"x":470,"y":60,"height":90,"rt":86,"gt":169,"bt":169},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","temperature":15.41258902,"x":475,"y":60,"height":90,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","temperature":14.81326248,"x":480,"y":60,"height":90,"rt":84,"gt":171,"bt":171},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","temperature":14.59398516,"x":485,"y":60,"height":90,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","temperature":14.37396342,"x":490,"y":60,"height":90,"rt":81,"gt":174,"bt":174},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","temperature":14.10801632,"x":495,"y":60,"height":90,"rt":80,"gt":175,"bt":175},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","temperature":13.94748299,"x":500,"y":60,"height":90,"rt":79,"gt":176,"bt":176},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","temperature":13.41105774,"x":505,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","temperature":13.12240703,"x":510,"y":60,"height":90,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","temperature":12.83596029,"x":515,"y":60,"height":90,"rt":73,"gt":182,"bt":182},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","temperature":12.29748106,"x":520,"y":60,"height":90,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","temperature":12.15456733,"x":525,"y":60,"height":90,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","temperature":11.95898098,"x":530,"y":60,"height":90,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","temperature":11.69655303,"x":535,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","temperature":11.56452347,"x":540,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","temperature":11.21346334,"x":545,"y":60,"height":90,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","temperature":11.09309529,"x":550,"y":60,"height":90,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","temperature":10.78542252,"x":555,"y":60,"height":90,"rt":61,"gt":194,"bt":194},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","temperature":10.4165052,"x":560,"y":60,"height":90,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","temperature":10.36849386,"x":565,"y":60,"height":90,"rt":59,"gt":196,"bt":196},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","temperature":11.20979649,"x":570,"y":60,"height":90,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","temperature":14.652578,"x":575,"y":60,"height":90,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","temperature":17.83330404,"x":580,"y":60,"height":90,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","temperature":19.86456539,"x":585,"y":60,"height":90,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","temperature":20.09921389,"x":590,"y":60,"height":90,"rt":114,"gt":141,"bt":141},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","temperature":19.65234622,"x":595,"y":60,"height":90,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","temperature":20.40007522,"x":600,"y":60,"height":90,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","temperature":20.43464411,"x":605,"y":60,"height":90,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","temperature":19.95754528,"x":610,"y":60,"height":90,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","temperature":18.94726598,"x":615,"y":60,"height":90,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","temperature":16.77164345,"x":620,"y":60,"height":90,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","temperature":15.52599392,"x":625,"y":60,"height":90,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","temperature":15.1757238,"x":630,"y":60,"height":90,"rt":86,"gt":169,"bt":169},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","temperature":14.81075375,"x":635,"y":60,"height":90,"rt":84,"gt":171,"bt":171},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","temperature":14.40165645,"x":640,"y":60,"height":90,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","temperature":13.43801351,"x":645,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","temperature":12.71504966,"x":650,"y":60,"height":90,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","temperature":12.27478396,"x":655,"y":60,"height":90,"rt":70,"gt":185,"bt":185},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","temperature":11.68693347,"x":660,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","temperature":11.61586952,"x":665,"y":60,"height":90,"rt":66,"gt":189,"bt":189},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","temperature":11.32189571,"x":670,"y":60,"height":90,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","temperature":11.10230513,"x":675,"y":60,"height":90,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","temperature":11.37086265,"x":680,"y":60,"height":90,"rt":64,"gt":191,"bt":191},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","temperature":11.47891772,"x":685,"y":60,"height":90,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","temperature":12.14343247,"x":690,"y":60,"height":90,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","temperature":14.28683407,"x":695,"y":60,"height":90,"rt":81,"gt":174,"bt":174},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","temperature":17.59589071,"x":700,"y":60,"height":90,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","temperature":18.96062684,"x":705,"y":60,"height":90,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","temperature":21.18197318,"x":710,"y":60,"height":90,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","temperature":21.21773412,"x":715,"y":60,"height":90,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","temperature":21.25856866,"x":720,"y":60,"height":90,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","temperature":22.39609235,"x":725,"y":60,"height":90,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","temperature":22.52694348,"x":730,"y":60,"height":90,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","temperature":21.25810441,"x":735,"y":60,"height":90,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","temperature":18.86854815,"x":740,"y":60,"height":90,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","temperature":17.17354907,"x":745,"y":60,"height":90,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","temperature":16.19025947,"x":750,"y":60,"height":90,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","temperature":15.34108614,"x":755,"y":60,"height":90,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","temperature":14.56864487,"x":760,"y":60,"height":90,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","temperature":13.98432208,"x":765,"y":60,"height":90,"rt":79,"gt":176,"bt":176},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","temperature":13.40734656,"x":770,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","temperature":12.96393448,"x":775,"y":60,"height":90,"rt":73,"gt":182,"bt":182},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","temperature":12.46733667,"x":780,"y":60,"height":90,"rt":71,"gt":184,"bt":184},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","temperature":11.99262255,"x":785,"y":60,"height":90,"rt":68,"gt":187,"bt":187},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","temperature":11.4955241,"x":790,"y":60,"height":90,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","temperature":11.16743153,"x":795,"y":60,"height":90,"rt":63,"gt":192,"bt":192},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","temperature":10.95109514,"x":800,"y":60,"height":90,"rt":62,"gt":193,"bt":193},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","temperature":11.54986139,"x":805,"y":60,"height":90,"rt":65,"gt":190,"bt":190},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","temperature":14.61810533,"x":810,"y":60,"height":90,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","temperature":17.76323761,"x":815,"y":60,"height":90,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","temperature":20.08348233,"x":820,"y":60,"height":90,"rt":114,"gt":141,"bt":141},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","temperature":21.92460501,"x":825,"y":60,"height":90,"rt":124,"gt":131,"bt":131},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","temperature":23.32723781,"x":830,"y":60,"height":90,"rt":132,"gt":123,"bt":123},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","temperature":23.64461309,"x":835,"y":60,"height":90,"rt":134,"gt":121,"bt":121},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","temperature":23.58518356,"x":840,"y":60,"height":90,"rt":134,"gt":121,"bt":121},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","temperature":24.06142988,"x":845,"y":60,"height":90,"rt":136,"gt":119,"bt":119},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","temperature":23.80496151,"x":850,"y":60,"height":90,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","temperature":22.42978872,"x":855,"y":60,"height":90,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","temperature":20.36039655,"x":860,"y":60,"height":90,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","temperature":18.39258246,"x":865,"y":60,"height":90,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","temperature":17.96107591,"x":870,"y":60,"height":90,"rt":102,"gt":153,"bt":153},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","temperature":17.27640709,"x":875,"y":60,"height":90,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","temperature":16.36840813,"x":880,"y":60,"height":90,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","temperature":15.61968894,"x":885,"y":60,"height":90,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","temperature":14.95045609,"x":890,"y":60,"height":90,"rt":85,"gt":170,"bt":170},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","temperature":14.49907664,"x":895,"y":60,"height":90,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","temperature":13.87810076,"x":900,"y":60,"height":90,"rt":79,"gt":176,"bt":176},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","temperature":13.33185584,"x":905,"y":60,"height":90,"rt":76,"gt":179,"bt":179},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","temperature":13.00658151,"x":910,"y":60,"height":90,"rt":74,"gt":181,"bt":181},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","temperature":12.65610075,"x":915,"y":60,"height":90,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","temperature":12.23710659,"x":920,"y":60,"height":90,"rt":69,"gt":186,"bt":186},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","temperature":12.77578117,"x":925,"y":60,"height":90,"rt":72,"gt":183,"bt":183},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","temperature":15.08223206,"x":930,"y":60,"height":90,"rt":85,"gt":170,"bt":170},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","temperature":18.02257683,"x":935,"y":60,"height":90,"rt":102,"gt":153,"bt":153},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","temperature":19.96489243,"x":940,"y":60,"height":90,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","temperature":21.75824716,"x":945,"y":60,"height":90,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","temperature":22.89441676,"x":950,"y":60,"height":90,"rt":130,"gt":125,"bt":125},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","temperature":23.09323771,"x":955,"y":60,"height":90,"rt":131,"gt":124,"bt":124},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","temperature":22.9548071,"x":960,"y":60,"height":90,"rt":130,"gt":125,"bt":125},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","temperature":23.24517605,"x":965,"y":60,"height":90,"rt":132,"gt":123,"bt":123},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","temperature":23.35656541,"x":970,"y":60,"height":90,"rt":132,"gt":123,"bt":123},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","temperature":22.05185503,"x":975,"y":60,"height":90,"rt":125,"gt":130,"bt":130},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","temperature":20.27801209,"x":980,"y":60,"height":90,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","temperature":19.21698296,"x":985,"y":60,"height":90,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","temperature":18.37561126,"x":990,"y":60,"height":90,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","temperature":17.74617586,"x":995,"y":60,"height":90,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","temperature":17.19103092,"x":1000,"y":60,"height":90,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","temperature":16.5998496,"x":1005,"y":60,"height":90,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","temperature":16.19502279,"x":1010,"y":60,"height":90,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","temperature":15.65542657,"x":1015,"y":60,"height":90,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","temperature":14.70301123,"x":1020,"y":60,"height":90,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","temperature":14.27200433,"x":1025,"y":60,"height":90,"rt":81,"gt":174,"bt":174},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","temperature":31.44290746,"x":200,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","temperature":31.30518385,"x":205,"y":90,"height":120,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","temperature":31.12997154,"x":210,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","temperature":31.04006171,"x":215,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","temperature":31.15620937,"x":220,"y":90,"height":120,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","temperature":32.45383096,"x":225,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","temperature":35.21234428,"x":230,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","temperature":36.21457732,"x":235,"y":90,"height":120,"rt":205,"gt":50,"bt":50},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","temperature":36.40008909,"x":240,"y":90,"height":120,"rt":206,"gt":49,"bt":49},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","temperature":35.35668973,"x":245,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","temperature":34.98981413,"x":250,"y":90,"height":120,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","temperature":34.22020689,"x":255,"y":90,"height":120,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","temperature":34.32649527,"x":260,"y":90,"height":120,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","temperature":34.12279402,"x":265,"y":90,"height":120,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","temperature":33.2726263,"x":270,"y":90,"height":120,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","temperature":32.43321957,"x":275,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","temperature":32.24684485,"x":280,"y":90,"height":120,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","temperature":31.93745962,"x":285,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","temperature":31.65611098,"x":290,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","temperature":31.5424313,"x":295,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","temperature":31.37220903,"x":300,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","temperature":31.24912818,"x":305,"y":90,"height":120,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","temperature":31.13599705,"x":310,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","temperature":31.05627324,"x":315,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","temperature":30.92341182,"x":320,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","temperature":30.87146966,"x":325,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","temperature":30.78880886,"x":330,"y":90,"height":120,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","temperature":30.77509547,"x":335,"y":90,"height":120,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","temperature":31.02712901,"x":340,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","temperature":33.12122197,"x":345,"y":90,"height":120,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","temperature":35.04927313,"x":350,"y":90,"height":120,"rt":199,"gt":56,"bt":56},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","temperature":35.85560027,"x":355,"y":90,"height":120,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","temperature":35.8146028,"x":360,"y":90,"height":120,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","temperature":34.81311747,"x":365,"y":90,"height":120,"rt":197,"gt":58,"bt":58},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","temperature":34.64442287,"x":370,"y":90,"height":120,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","temperature":34.49176429,"x":375,"y":90,"height":120,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","temperature":34.10941186,"x":380,"y":90,"height":120,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","temperature":34.00200486,"x":385,"y":90,"height":120,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","temperature":33.87402551,"x":390,"y":90,"height":120,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","temperature":33.41913014,"x":395,"y":90,"height":120,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","temperature":33.04254696,"x":400,"y":90,"height":120,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","temperature":33.18669066,"x":405,"y":90,"height":120,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","temperature":32.97690859,"x":410,"y":90,"height":120,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","temperature":32.90151084,"x":415,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","temperature":32.87960276,"x":420,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","temperature":32.75864889,"x":425,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","temperature":32.82003907,"x":430,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","temperature":32.74829022,"x":435,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","temperature":32.67915753,"x":440,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","temperature":32.56074403,"x":445,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","temperature":32.54025021,"x":450,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","temperature":32.42242486,"x":455,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","temperature":32.51031299,"x":460,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","temperature":33.01493143,"x":465,"y":90,"height":120,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","temperature":33.92603011,"x":470,"y":90,"height":120,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","temperature":35.35328575,"x":475,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","temperature":35.59559153,"x":480,"y":90,"height":120,"rt":202,"gt":53,"bt":53},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","temperature":36.40366462,"x":485,"y":90,"height":120,"rt":206,"gt":49,"bt":49},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","temperature":35.99100209,"x":490,"y":90,"height":120,"rt":204,"gt":51,"bt":51},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","temperature":35.6420843,"x":495,"y":90,"height":120,"rt":202,"gt":53,"bt":53},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","temperature":35.68892348,"x":500,"y":90,"height":120,"rt":202,"gt":53,"bt":53},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","temperature":35.76991873,"x":505,"y":90,"height":120,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","temperature":35.34364125,"x":510,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","temperature":34.87016879,"x":515,"y":90,"height":120,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","temperature":34.26998804,"x":520,"y":90,"height":120,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","temperature":33.98995704,"x":525,"y":90,"height":120,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","temperature":33.85749158,"x":530,"y":90,"height":120,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","temperature":33.64564235,"x":535,"y":90,"height":120,"rt":191,"gt":64,"bt":64},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","temperature":33.48669926,"x":540,"y":90,"height":120,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","temperature":33.57571701,"x":545,"y":90,"height":120,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","temperature":33.42039133,"x":550,"y":90,"height":120,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","temperature":33.26113462,"x":555,"y":90,"height":120,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","temperature":33.12172756,"x":560,"y":90,"height":120,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","temperature":32.88430944,"x":565,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","temperature":32.79149596,"x":570,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","temperature":32.57037382,"x":575,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","temperature":32.66633597,"x":580,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","temperature":33.69648465,"x":585,"y":90,"height":120,"rt":191,"gt":64,"bt":64},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","temperature":35.98897036,"x":590,"y":90,"height":120,"rt":204,"gt":51,"bt":51},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","temperature":35.43994991,"x":595,"y":90,"height":120,"rt":201,"gt":54,"bt":54},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","temperature":36.61758491,"x":600,"y":90,"height":120,"rt":207,"gt":48,"bt":48},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","temperature":36.09577308,"x":605,"y":90,"height":120,"rt":205,"gt":50,"bt":50},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","temperature":36.26183791,"x":610,"y":90,"height":120,"rt":205,"gt":50,"bt":50},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","temperature":35.70490102,"x":615,"y":90,"height":120,"rt":202,"gt":53,"bt":53},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","temperature":35.24022784,"x":620,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","temperature":35.42144542,"x":625,"y":90,"height":120,"rt":201,"gt":54,"bt":54},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","temperature":35.16755907,"x":630,"y":90,"height":120,"rt":199,"gt":56,"bt":56},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","temperature":34.49501204,"x":635,"y":90,"height":120,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","temperature":33.54379365,"x":640,"y":90,"height":120,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","temperature":33.38062369,"x":645,"y":90,"height":120,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","temperature":32.66767294,"x":650,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","temperature":32.25003522,"x":655,"y":90,"height":120,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","temperature":31.98813315,"x":660,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","temperature":31.70209254,"x":665,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","temperature":31.82813589,"x":670,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","temperature":31.85419417,"x":675,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","temperature":31.79255141,"x":680,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","temperature":31.61683216,"x":685,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","temperature":31.61252555,"x":690,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","temperature":31.70884909,"x":695,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","temperature":31.72218291,"x":700,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","temperature":31.82595308,"x":705,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","temperature":32.08383724,"x":710,"y":90,"height":120,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","temperature":32.67147352,"x":715,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","temperature":32.36997494,"x":720,"y":90,"height":120,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","temperature":32.58732271,"x":725,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","temperature":32.49931872,"x":730,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","temperature":32.46872643,"x":735,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","temperature":32.68386197,"x":740,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","temperature":32.49242914,"x":745,"y":90,"height":120,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","temperature":32.32190815,"x":750,"y":90,"height":120,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","temperature":31.87463401,"x":755,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","temperature":31.59579223,"x":760,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","temperature":31.3288363,"x":765,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","temperature":31.3296943,"x":770,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","temperature":31.51206825,"x":775,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","temperature":31.5424109,"x":780,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","temperature":31.09082244,"x":785,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","temperature":30.98300987,"x":790,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","temperature":30.94329146,"x":795,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","temperature":30.85185792,"x":800,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","temperature":30.81823143,"x":805,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","temperature":30.83254536,"x":810,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","temperature":30.88274605,"x":815,"y":90,"height":120,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","temperature":30.98122395,"x":820,"y":90,"height":120,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","temperature":31.85022873,"x":825,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","temperature":34.30959867,"x":830,"y":90,"height":120,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","temperature":35.8516913,"x":835,"y":90,"height":120,"rt":203,"gt":52,"bt":52},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","temperature":35.32932253,"x":840,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","temperature":34.52187362,"x":845,"y":90,"height":120,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","temperature":34.37116349,"x":850,"y":90,"height":120,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","temperature":34.28736317,"x":855,"y":90,"height":120,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","temperature":33.86593064,"x":860,"y":90,"height":120,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","temperature":33.52779146,"x":865,"y":90,"height":120,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","temperature":33.12944407,"x":870,"y":90,"height":120,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","temperature":32.59641945,"x":875,"y":90,"height":120,"rt":185,"gt":70,"bt":70},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","temperature":32.13705689,"x":880,"y":90,"height":120,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","temperature":32.02489411,"x":885,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Rio de Janeiro","temperature":32.01510862,"x":890,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Rio de Janeiro","temperature":31.87224063,"x":895,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Rio de Janeiro","temperature":31.98509107,"x":900,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Rio de Janeiro","temperature":31.99680958,"x":905,"y":90,"height":120,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Rio de Janeiro","temperature":31.81269839,"x":910,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Rio de Janeiro","temperature":31.70078972,"x":915,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Rio de Janeiro","temperature":31.62583038,"x":920,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Rio de Janeiro","temperature":31.48364554,"x":925,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Rio de Janeiro","temperature":31.3848414,"x":930,"y":90,"height":120,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Rio de Janeiro","temperature":31.30228661,"x":935,"y":90,"height":120,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Rio de Janeiro","temperature":31.5016158,"x":940,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Rio de Janeiro","temperature":32.77094264,"x":945,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Rio de Janeiro","temperature":33.98702489,"x":950,"y":90,"height":120,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Rio de Janeiro","temperature":35.02259852,"x":955,"y":90,"height":120,"rt":198,"gt":57,"bt":57},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Rio de Janeiro","temperature":35.28814293,"x":960,"y":90,"height":120,"rt":200,"gt":55,"bt":55},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Rio de Janeiro","temperature":35.09791541,"x":965,"y":90,"height":120,"rt":199,"gt":56,"bt":56},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Rio de Janeiro","temperature":34.84906823,"x":970,"y":90,"height":120,"rt":197,"gt":58,"bt":58},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Rio de Janeiro","temperature":34.69134351,"x":975,"y":90,"height":120,"rt":197,"gt":58,"bt":58},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Rio de Janeiro","temperature":34.58966254,"x":980,"y":90,"height":120,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Rio de Janeiro","temperature":34.24478912,"x":985,"y":90,"height":120,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Rio de Janeiro","temperature":33.57045694,"x":990,"y":90,"height":120,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Rio de Janeiro","temperature":32.82629571,"x":995,"y":90,"height":120,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Rio de Janeiro","temperature":32.28890613,"x":1000,"y":90,"height":120,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Rio de Janeiro","temperature":31.70961378,"x":1005,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Rio de Janeiro","temperature":31.51751985,"x":1010,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Rio de Janeiro","temperature":31.61204494,"x":1015,"y":90,"height":120,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Rio de Janeiro","temperature":31.79035817,"x":1020,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Rio de Janeiro","temperature":31.71491877,"x":1025,"y":90,"height":120,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"San Francisco","temperature":18.68457307,"x":200,"y":120,"height":150,"rt":106,"gt":149,"bt":149},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"San Francisco","temperature":18.31095119,"x":205,"y":120,"height":150,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"San Francisco","temperature":17.35936456,"x":210,"y":120,"height":150,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"San Francisco","temperature":17.65407786,"x":215,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"San Francisco","temperature":17.5402883,"x":220,"y":120,"height":150,"rt":99,"gt":156,"bt":156},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"San Francisco","temperature":17.7566572,"x":225,"y":120,"height":150,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"San Francisco","temperature":17.71646114,"x":230,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"San Francisco","temperature":17.63013169,"x":235,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"San Francisco","temperature":17.64721663,"x":240,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"San Francisco","temperature":17.61224821,"x":245,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"San Francisco","temperature":19.45564377,"x":250,"y":120,"height":150,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"San Francisco","temperature":20.64266276,"x":255,"y":120,"height":150,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"San Francisco","temperature":22.41338308,"x":260,"y":120,"height":150,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"San Francisco","temperature":23.59250194,"x":265,"y":120,"height":150,"rt":134,"gt":121,"bt":121},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"San Francisco","temperature":26.08763438,"x":270,"y":120,"height":150,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"San Francisco","temperature":28.63961746,"x":275,"y":120,"height":150,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"San Francisco","temperature":29.75661218,"x":280,"y":120,"height":150,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"San Francisco","temperature":29.03732618,"x":285,"y":120,"height":150,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"San Francisco","temperature":28.56305759,"x":290,"y":120,"height":150,"rt":162,"gt":93,"bt":93},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"San Francisco","temperature":24.80422724,"x":295,"y":120,"height":150,"rt":141,"gt":114,"bt":114},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"San Francisco","temperature":22.35451586,"x":300,"y":120,"height":150,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"San Francisco","temperature":22.65752957,"x":305,"y":120,"height":150,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"San Francisco","temperature":22.62442631,"x":310,"y":120,"height":150,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"San Francisco","temperature":22.17017592,"x":315,"y":120,"height":150,"rt":126,"gt":129,"bt":129},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"San Francisco","temperature":22.55604689,"x":320,"y":120,"height":150,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"San Francisco","temperature":21.9634798,"x":325,"y":120,"height":150,"rt":124,"gt":131,"bt":131},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"San Francisco","temperature":21.34835453,"x":330,"y":120,"height":150,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"San Francisco","temperature":20.89928559,"x":335,"y":120,"height":150,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"San Francisco","temperature":20.58931401,"x":340,"y":120,"height":150,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"San Francisco","temperature":20.08663837,"x":345,"y":120,"height":150,"rt":114,"gt":141,"bt":141},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"San Francisco","temperature":19.94900584,"x":350,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"San Francisco","temperature":19.73143914,"x":355,"y":120,"height":150,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"San Francisco","temperature":19.64044993,"x":360,"y":120,"height":150,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"San Francisco","temperature":19.34306404,"x":365,"y":120,"height":150,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"San Francisco","temperature":20.74486643,"x":370,"y":120,"height":150,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"San Francisco","temperature":22.5176676,"x":375,"y":120,"height":150,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"San Francisco","temperature":23.49436732,"x":380,"y":120,"height":150,"rt":133,"gt":122,"bt":122},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"San Francisco","temperature":25.27925352,"x":385,"y":120,"height":150,"rt":143,"gt":112,"bt":112},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"San Francisco","temperature":26.96076682,"x":390,"y":120,"height":150,"rt":153,"gt":102,"bt":102},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"San Francisco","temperature":29.04538883,"x":395,"y":120,"height":150,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"San Francisco","temperature":31.98178318,"x":400,"y":120,"height":150,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"San Francisco","temperature":33.24127903,"x":405,"y":120,"height":150,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"San Francisco","temperature":33.2359122,"x":410,"y":120,"height":150,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"San Francisco","temperature":31.22932866,"x":415,"y":120,"height":150,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"San Francisco","temperature":28.83817684,"x":420,"y":120,"height":150,"rt":163,"gt":92,"bt":92},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"San Francisco","temperature":26.97732364,"x":425,"y":120,"height":150,"rt":153,"gt":102,"bt":102},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"San Francisco","temperature":26.18654809,"x":430,"y":120,"height":150,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"San Francisco","temperature":25.43967648,"x":435,"y":120,"height":150,"rt":144,"gt":111,"bt":111},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"San Francisco","temperature":24.68597787,"x":440,"y":120,"height":150,"rt":140,"gt":115,"bt":115},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"San Francisco","temperature":24.15709991,"x":445,"y":120,"height":150,"rt":137,"gt":118,"bt":118},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"San Francisco","temperature":23.86672109,"x":450,"y":120,"height":150,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"San Francisco","temperature":23.16206821,"x":455,"y":120,"height":150,"rt":131,"gt":124,"bt":124},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"San Francisco","temperature":22.87102101,"x":460,"y":120,"height":150,"rt":130,"gt":125,"bt":125},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"San Francisco","temperature":22.3690921,"x":465,"y":120,"height":150,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"San Francisco","temperature":22.10924086,"x":470,"y":120,"height":150,"rt":125,"gt":130,"bt":130},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"San Francisco","temperature":21.86652647,"x":475,"y":120,"height":150,"rt":124,"gt":131,"bt":131},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"San Francisco","temperature":21.5857868,"x":480,"y":120,"height":150,"rt":122,"gt":133,"bt":133},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"San Francisco","temperature":20.37315122,"x":485,"y":120,"height":150,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"San Francisco","temperature":20.02737133,"x":490,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"San Francisco","temperature":20.23487724,"x":495,"y":120,"height":150,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"San Francisco","temperature":21.21812202,"x":500,"y":120,"height":150,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"San Francisco","temperature":23.69665426,"x":505,"y":120,"height":150,"rt":134,"gt":121,"bt":121},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"San Francisco","temperature":24.69090771,"x":510,"y":120,"height":150,"rt":140,"gt":115,"bt":115},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"San Francisco","temperature":25.12613898,"x":515,"y":120,"height":150,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"San Francisco","temperature":25.31068933,"x":520,"y":120,"height":150,"rt":143,"gt":112,"bt":112},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"San Francisco","temperature":25.41406499,"x":525,"y":120,"height":150,"rt":144,"gt":111,"bt":111},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"San Francisco","temperature":26.0987396,"x":530,"y":120,"height":150,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"San Francisco","temperature":24.54143843,"x":535,"y":120,"height":150,"rt":139,"gt":116,"bt":116},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"San Francisco","temperature":22.1549845,"x":540,"y":120,"height":150,"rt":126,"gt":129,"bt":129},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"San Francisco","temperature":21.14013358,"x":545,"y":120,"height":150,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"San Francisco","temperature":20.27444329,"x":550,"y":120,"height":150,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"San Francisco","temperature":19.79702451,"x":555,"y":120,"height":150,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"San Francisco","temperature":20.39457853,"x":560,"y":120,"height":150,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"San Francisco","temperature":19.74527336,"x":565,"y":120,"height":150,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"San Francisco","temperature":19.92602964,"x":570,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"San Francisco","temperature":19.83402132,"x":575,"y":120,"height":150,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"San Francisco","temperature":19.98811306,"x":580,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"San Francisco","temperature":19.94216816,"x":585,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"San Francisco","temperature":19.55642752,"x":590,"y":120,"height":150,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"San Francisco","temperature":19.60017167,"x":595,"y":120,"height":150,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"San Francisco","temperature":19.67344874,"x":600,"y":120,"height":150,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"San Francisco","temperature":19.83723008,"x":605,"y":120,"height":150,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"San Francisco","temperature":20.22614916,"x":610,"y":120,"height":150,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"San Francisco","temperature":20.98158583,"x":615,"y":120,"height":150,"rt":119,"gt":136,"bt":136},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"San Francisco","temperature":22.11977891,"x":620,"y":120,"height":150,"rt":125,"gt":130,"bt":130},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"San Francisco","temperature":23.16286148,"x":625,"y":120,"height":150,"rt":131,"gt":124,"bt":124},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"San Francisco","temperature":24.30693061,"x":630,"y":120,"height":150,"rt":138,"gt":117,"bt":117},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"San Francisco","temperature":24.97403341,"x":635,"y":120,"height":150,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"San Francisco","temperature":25.83782721,"x":640,"y":120,"height":150,"rt":146,"gt":109,"bt":109},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"San Francisco","temperature":23.79775315,"x":645,"y":120,"height":150,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"San Francisco","temperature":23.96126839,"x":650,"y":120,"height":150,"rt":136,"gt":119,"bt":119},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"San Francisco","temperature":23.28032424,"x":655,"y":120,"height":150,"rt":132,"gt":123,"bt":123},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"San Francisco","temperature":22.83474077,"x":660,"y":120,"height":150,"rt":129,"gt":126,"bt":126},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"San Francisco","temperature":21.84376751,"x":665,"y":120,"height":150,"rt":124,"gt":131,"bt":131},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"San Francisco","temperature":21.58493164,"x":670,"y":120,"height":150,"rt":122,"gt":133,"bt":133},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"San Francisco","temperature":20.9045856,"x":675,"y":120,"height":150,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"San Francisco","temperature":19.89844775,"x":680,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"San Francisco","temperature":19.40377121,"x":685,"y":120,"height":150,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"San Francisco","temperature":19.64456265,"x":690,"y":120,"height":150,"rt":111,"gt":144,"bt":144},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"San Francisco","temperature":19.28576071,"x":695,"y":120,"height":150,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"San Francisco","temperature":18.53105205,"x":700,"y":120,"height":150,"rt":105,"gt":150,"bt":150},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"San Francisco","temperature":17.0064066,"x":705,"y":120,"height":150,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"San Francisco","temperature":16.05550358,"x":710,"y":120,"height":150,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"San Francisco","temperature":15.94302702,"x":715,"y":120,"height":150,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"San Francisco","temperature":15.40973318,"x":720,"y":120,"height":150,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"San Francisco","temperature":15.28743053,"x":725,"y":120,"height":150,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"San Francisco","temperature":15.80920953,"x":730,"y":120,"height":150,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"San Francisco","temperature":17.41103978,"x":735,"y":120,"height":150,"rt":99,"gt":156,"bt":156},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"San Francisco","temperature":18.66710734,"x":740,"y":120,"height":150,"rt":106,"gt":149,"bt":149},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"San Francisco","temperature":20.3946402,"x":745,"y":120,"height":150,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"San Francisco","temperature":21.69746202,"x":750,"y":120,"height":150,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"San Francisco","temperature":22.72331306,"x":755,"y":120,"height":150,"rt":129,"gt":126,"bt":126},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"San Francisco","temperature":23.86861785,"x":760,"y":120,"height":150,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"San Francisco","temperature":23.54456563,"x":765,"y":120,"height":150,"rt":133,"gt":122,"bt":122},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"San Francisco","temperature":23.02260379,"x":770,"y":120,"height":150,"rt":130,"gt":125,"bt":125},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"San Francisco","temperature":20.82105276,"x":775,"y":120,"height":150,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"San Francisco","temperature":18.17259797,"x":780,"y":120,"height":150,"rt":103,"gt":152,"bt":152},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"San Francisco","temperature":17.69197672,"x":785,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"San Francisco","temperature":17.0717586,"x":790,"y":120,"height":150,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"San Francisco","temperature":17.22316427,"x":795,"y":120,"height":150,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"San Francisco","temperature":17.72854008,"x":800,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"San Francisco","temperature":17.51920874,"x":805,"y":120,"height":150,"rt":99,"gt":156,"bt":156},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"San Francisco","temperature":17.32221923,"x":810,"y":120,"height":150,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"San Francisco","temperature":17.03558493,"x":815,"y":120,"height":150,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"San Francisco","temperature":16.92827913,"x":820,"y":120,"height":150,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"San Francisco","temperature":16.5001215,"x":825,"y":120,"height":150,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"San Francisco","temperature":16.41552709,"x":830,"y":120,"height":150,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"San Francisco","temperature":16.34984738,"x":835,"y":120,"height":150,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"San Francisco","temperature":16.51614171,"x":840,"y":120,"height":150,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"San Francisco","temperature":16.457057,"x":845,"y":120,"height":150,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"San Francisco","temperature":18.35866768,"x":850,"y":120,"height":150,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"San Francisco","temperature":20.08859798,"x":855,"y":120,"height":150,"rt":114,"gt":141,"bt":141},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"San Francisco","temperature":21.32960901,"x":860,"y":120,"height":150,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"San Francisco","temperature":22.84079909,"x":865,"y":120,"height":150,"rt":129,"gt":126,"bt":126},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"San Francisco","temperature":23.79582768,"x":870,"y":120,"height":150,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"San Francisco","temperature":25.02209543,"x":875,"y":120,"height":150,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"San Francisco","temperature":25.64093096,"x":880,"y":120,"height":150,"rt":145,"gt":110,"bt":110},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"San Francisco","temperature":24.97310984,"x":885,"y":120,"height":150,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"San Francisco","temperature":24.45362312,"x":890,"y":120,"height":150,"rt":139,"gt":116,"bt":116},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"San Francisco","temperature":21.78562498,"x":895,"y":120,"height":150,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"San Francisco","temperature":19.35328771,"x":900,"y":120,"height":150,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"San Francisco","temperature":18.38532007,"x":905,"y":120,"height":150,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"San Francisco","temperature":17.59644826,"x":910,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"San Francisco","temperature":17.67717821,"x":915,"y":120,"height":150,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"San Francisco","temperature":17.35774037,"x":920,"y":120,"height":150,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"San Francisco","temperature":17.36606217,"x":925,"y":120,"height":150,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"San Francisco","temperature":16.76381793,"x":930,"y":120,"height":150,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"San Francisco","temperature":16.77789719,"x":935,"y":120,"height":150,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"San Francisco","temperature":16.69501206,"x":940,"y":120,"height":150,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"San Francisco","temperature":16.28663857,"x":945,"y":120,"height":150,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"San Francisco","temperature":16.34615418,"x":950,"y":120,"height":150,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"San Francisco","temperature":16.21864859,"x":955,"y":120,"height":150,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"San Francisco","temperature":16.41533134,"x":960,"y":120,"height":150,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"San Francisco","temperature":16.68821473,"x":965,"y":120,"height":150,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"San Francisco","temperature":18.9016987,"x":970,"y":120,"height":150,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"San Francisco","temperature":20.39653047,"x":975,"y":120,"height":150,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"San Francisco","temperature":21.72499598,"x":980,"y":120,"height":150,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"San Francisco","temperature":23.7619604,"x":985,"y":120,"height":150,"rt":135,"gt":120,"bt":120},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"San Francisco","temperature":26.22859651,"x":990,"y":120,"height":150,"rt":149,"gt":106,"bt":106},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"San Francisco","temperature":28.09310514,"x":995,"y":120,"height":150,"rt":159,"gt":96,"bt":96},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"San Francisco","temperature":27.75559971,"x":1000,"y":120,"height":150,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"San Francisco","temperature":28.47500104,"x":1005,"y":120,"height":150,"rt":161,"gt":94,"bt":94},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"San Francisco","temperature":27.67857995,"x":1010,"y":120,"height":150,"rt":157,"gt":98,"bt":98},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"San Francisco","temperature":24.86944237,"x":1015,"y":120,"height":150,"rt":141,"gt":114,"bt":114},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"San Francisco","temperature":21.52045576,"x":1020,"y":120,"height":150,"rt":122,"gt":133,"bt":133},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"San Francisco","temperature":19.87640423,"x":1025,"y":120,"height":150,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Shanghai","temperature":26.91125671,"x":200,"y":150,"height":180,"rt":152,"gt":103,"bt":103},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Shanghai","temperature":25.94886029,"x":205,"y":150,"height":180,"rt":147,"gt":108,"bt":108},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Shanghai","temperature":25.00648727,"x":210,"y":150,"height":180,"rt":142,"gt":113,"bt":113},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Shanghai","temperature":23.93251588,"x":215,"y":150,"height":180,"rt":136,"gt":119,"bt":119},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Shanghai","temperature":22.82807964,"x":220,"y":150,"height":180,"rt":129,"gt":126,"bt":126},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Shanghai","temperature":21.2953621,"x":225,"y":150,"height":180,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Shanghai","temperature":20.45451251,"x":230,"y":150,"height":180,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Shanghai","temperature":19.7075636,"x":235,"y":150,"height":180,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Shanghai","temperature":19.30654697,"x":240,"y":150,"height":180,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Shanghai","temperature":18.89888013,"x":245,"y":150,"height":180,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Shanghai","temperature":18.58082322,"x":250,"y":150,"height":180,"rt":105,"gt":150,"bt":150},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Shanghai","temperature":18.48098647,"x":255,"y":150,"height":180,"rt":105,"gt":150,"bt":150},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Shanghai","temperature":18.24868251,"x":260,"y":150,"height":180,"rt":103,"gt":152,"bt":152},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Shanghai","temperature":17.69353808,"x":265,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Shanghai","temperature":17.01030701,"x":270,"y":150,"height":180,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Shanghai","temperature":16.41847458,"x":275,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Shanghai","temperature":15.94524876,"x":280,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Shanghai","temperature":15.84355308,"x":285,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Shanghai","temperature":16.33289967,"x":290,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Shanghai","temperature":16.98178378,"x":295,"y":150,"height":180,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Shanghai","temperature":17.66390117,"x":300,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Shanghai","temperature":17.80146143,"x":305,"y":150,"height":180,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Shanghai","temperature":17.70750559,"x":310,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Shanghai","temperature":17.23564164,"x":315,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Shanghai","temperature":16.92331121,"x":320,"y":150,"height":180,"rt":96,"gt":159,"bt":159},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Shanghai","temperature":16.67671352,"x":325,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Shanghai","temperature":16.4366755,"x":330,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Shanghai","temperature":15.92807673,"x":335,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Shanghai","temperature":15.90468449,"x":340,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Shanghai","temperature":15.51843917,"x":345,"y":150,"height":180,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Shanghai","temperature":14.97137292,"x":350,"y":150,"height":180,"rt":85,"gt":170,"bt":170},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Shanghai","temperature":14.38875449,"x":355,"y":150,"height":180,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Shanghai","temperature":14.3152882,"x":360,"y":150,"height":180,"rt":81,"gt":174,"bt":174},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Shanghai","temperature":14.58136297,"x":365,"y":150,"height":180,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Shanghai","temperature":14.53409349,"x":370,"y":150,"height":180,"rt":82,"gt":173,"bt":173},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Shanghai","temperature":14.61926786,"x":375,"y":150,"height":180,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Shanghai","temperature":14.72458583,"x":380,"y":150,"height":180,"rt":83,"gt":172,"bt":172},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Shanghai","temperature":15.06240555,"x":385,"y":150,"height":180,"rt":85,"gt":170,"bt":170},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Shanghai","temperature":15.26731244,"x":390,"y":150,"height":180,"rt":87,"gt":168,"bt":168},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Shanghai","temperature":15.62924661,"x":395,"y":150,"height":180,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Shanghai","temperature":15.74196948,"x":400,"y":150,"height":180,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Shanghai","temperature":15.76577434,"x":405,"y":150,"height":180,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Shanghai","temperature":15.92463651,"x":410,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Shanghai","temperature":15.84419388,"x":415,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Shanghai","temperature":15.97125062,"x":420,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Shanghai","temperature":16.26879673,"x":425,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Shanghai","temperature":16.68471444,"x":430,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Shanghai","temperature":16.60162128,"x":435,"y":150,"height":180,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Shanghai","temperature":16.7171678,"x":440,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Shanghai","temperature":16.83136065,"x":445,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Shanghai","temperature":16.59421891,"x":450,"y":150,"height":180,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Shanghai","temperature":16.59995976,"x":455,"y":150,"height":180,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Shanghai","temperature":16.42748968,"x":460,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Shanghai","temperature":16.19566877,"x":465,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Shanghai","temperature":16.18062337,"x":470,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Shanghai","temperature":16.21255369,"x":475,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Shanghai","temperature":16.06270815,"x":480,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Shanghai","temperature":15.76834829,"x":485,"y":150,"height":180,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Shanghai","temperature":15.85742423,"x":490,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Shanghai","temperature":15.97270117,"x":495,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Shanghai","temperature":15.88775287,"x":500,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Shanghai","temperature":16.12088639,"x":505,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Shanghai","temperature":15.98726944,"x":510,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Shanghai","temperature":15.73752504,"x":515,"y":150,"height":180,"rt":89,"gt":166,"bt":166},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Shanghai","temperature":15.80031869,"x":520,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Shanghai","temperature":16.02525427,"x":525,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Shanghai","temperature":15.93024197,"x":530,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Shanghai","temperature":16.12810911,"x":535,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Shanghai","temperature":16.49119396,"x":540,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Shanghai","temperature":17.06522484,"x":545,"y":150,"height":180,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Shanghai","temperature":18.01501863,"x":550,"y":150,"height":180,"rt":102,"gt":153,"bt":153},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Shanghai","temperature":18.53765236,"x":555,"y":150,"height":180,"rt":105,"gt":150,"bt":150},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Shanghai","temperature":18.8782908,"x":560,"y":150,"height":180,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Shanghai","temperature":19.34703127,"x":565,"y":150,"height":180,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Shanghai","temperature":19.35802693,"x":570,"y":150,"height":180,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Shanghai","temperature":18.8247065,"x":575,"y":150,"height":180,"rt":107,"gt":148,"bt":148},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Shanghai","temperature":18.07691534,"x":580,"y":150,"height":180,"rt":102,"gt":153,"bt":153},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Shanghai","temperature":17.57877036,"x":585,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Shanghai","temperature":17.55047858,"x":590,"y":150,"height":180,"rt":99,"gt":156,"bt":156},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Shanghai","temperature":17.04668298,"x":595,"y":150,"height":180,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Shanghai","temperature":16.80843159,"x":600,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Shanghai","temperature":17.29716635,"x":605,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Shanghai","temperature":17.21912266,"x":610,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Shanghai","temperature":17.05570621,"x":615,"y":150,"height":180,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Shanghai","temperature":17.23867944,"x":620,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Shanghai","temperature":17.27989715,"x":625,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Shanghai","temperature":17.3691706,"x":630,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Shanghai","temperature":17.63944641,"x":635,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Shanghai","temperature":17.54143223,"x":640,"y":150,"height":180,"rt":99,"gt":156,"bt":156},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Shanghai","temperature":17.58179539,"x":645,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Shanghai","temperature":17.65828326,"x":650,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Shanghai","temperature":18.40889687,"x":655,"y":150,"height":180,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Shanghai","temperature":19.72713644,"x":660,"y":150,"height":180,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Shanghai","temperature":21.61665862,"x":665,"y":150,"height":180,"rt":122,"gt":133,"bt":133},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Shanghai","temperature":24.53313432,"x":670,"y":150,"height":180,"rt":139,"gt":116,"bt":116},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Shanghai","temperature":26.16676861,"x":675,"y":150,"height":180,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Shanghai","temperature":26.18606905,"x":680,"y":150,"height":180,"rt":148,"gt":107,"bt":107},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Shanghai","temperature":26.33501077,"x":685,"y":150,"height":180,"rt":149,"gt":106,"bt":106},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Shanghai","temperature":25.91558374,"x":690,"y":150,"height":180,"rt":147,"gt":108,"bt":108},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Shanghai","temperature":24.65043103,"x":695,"y":150,"height":180,"rt":140,"gt":115,"bt":115},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Shanghai","temperature":23.42670796,"x":700,"y":150,"height":180,"rt":133,"gt":122,"bt":122},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Shanghai","temperature":22.38923537,"x":705,"y":150,"height":180,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Shanghai","temperature":22.32674075,"x":710,"y":150,"height":180,"rt":127,"gt":128,"bt":128},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Shanghai","temperature":21.75000207,"x":715,"y":150,"height":180,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Shanghai","temperature":21.31043413,"x":720,"y":150,"height":180,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Shanghai","temperature":21.16559906,"x":725,"y":150,"height":180,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Shanghai","temperature":21.10445168,"x":730,"y":150,"height":180,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Shanghai","temperature":20.70065662,"x":735,"y":150,"height":180,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Shanghai","temperature":20.3051555,"x":740,"y":150,"height":180,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Shanghai","temperature":19.90488717,"x":745,"y":150,"height":180,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Shanghai","temperature":20.50149431,"x":750,"y":150,"height":180,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Shanghai","temperature":20.64677626,"x":755,"y":150,"height":180,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Shanghai","temperature":21.02721176,"x":760,"y":150,"height":180,"rt":119,"gt":136,"bt":136},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Shanghai","temperature":21.33512411,"x":765,"y":150,"height":180,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Shanghai","temperature":21.15759958,"x":770,"y":150,"height":180,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Shanghai","temperature":20.8260748,"x":775,"y":150,"height":180,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Shanghai","temperature":20.70322339,"x":780,"y":150,"height":180,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Shanghai","temperature":20.96434605,"x":785,"y":150,"height":180,"rt":119,"gt":136,"bt":136},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Shanghai","temperature":21.40388325,"x":790,"y":150,"height":180,"rt":121,"gt":134,"bt":134},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Shanghai","temperature":22.08623586,"x":795,"y":150,"height":180,"rt":125,"gt":130,"bt":130},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Shanghai","temperature":22.29808364,"x":800,"y":150,"height":180,"rt":126,"gt":129,"bt":129},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Shanghai","temperature":21.7175829,"x":805,"y":150,"height":180,"rt":123,"gt":132,"bt":132},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Shanghai","temperature":21.18394382,"x":810,"y":150,"height":180,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Shanghai","temperature":20.54127159,"x":815,"y":150,"height":180,"rt":116,"gt":139,"bt":139},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Shanghai","temperature":19.73816025,"x":820,"y":150,"height":180,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Shanghai","temperature":19.23019462,"x":825,"y":150,"height":180,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Shanghai","temperature":18.57584423,"x":830,"y":150,"height":180,"rt":105,"gt":150,"bt":150},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Shanghai","temperature":17.74185108,"x":835,"y":150,"height":180,"rt":101,"gt":154,"bt":154},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Shanghai","temperature":17.12965538,"x":840,"y":150,"height":180,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Shanghai","temperature":16.8466381,"x":845,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Shanghai","temperature":16.50186103,"x":850,"y":150,"height":180,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Shanghai","temperature":16.19904596,"x":855,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Shanghai","temperature":16.25469912,"x":860,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Shanghai","temperature":16.11504082,"x":865,"y":150,"height":180,"rt":91,"gt":164,"bt":164},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Shanghai","temperature":16.25978098,"x":870,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Shanghai","temperature":16.26949401,"x":875,"y":150,"height":180,"rt":92,"gt":163,"bt":163},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Shanghai","temperature":16.44111583,"x":880,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Shanghai","temperature":16.60419007,"x":885,"y":150,"height":180,"rt":94,"gt":161,"bt":161},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Shanghai","temperature":16.77806161,"x":890,"y":150,"height":180,"rt":95,"gt":160,"bt":160},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Shanghai","temperature":17.26093119,"x":895,"y":150,"height":180,"rt":98,"gt":157,"bt":157},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Shanghai","temperature":18.41427379,"x":900,"y":150,"height":180,"rt":104,"gt":151,"bt":151},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Shanghai","temperature":19.92114497,"x":905,"y":150,"height":180,"rt":113,"gt":142,"bt":142},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Shanghai","temperature":21.19787453,"x":910,"y":150,"height":180,"rt":120,"gt":135,"bt":135},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Shanghai","temperature":22.92035307,"x":915,"y":150,"height":180,"rt":130,"gt":125,"bt":125},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Shanghai","temperature":23.47952556,"x":920,"y":150,"height":180,"rt":133,"gt":122,"bt":122},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Shanghai","temperature":23.19099588,"x":925,"y":150,"height":180,"rt":131,"gt":124,"bt":124},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Shanghai","temperature":22.53424262,"x":930,"y":150,"height":180,"rt":128,"gt":127,"bt":127},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Shanghai","temperature":21.8027382,"x":935,"y":150,"height":180,"rt":124,"gt":131,"bt":131},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Shanghai","temperature":20.82104606,"x":940,"y":150,"height":180,"rt":118,"gt":137,"bt":137},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Shanghai","temperature":20.67159026,"x":945,"y":150,"height":180,"rt":117,"gt":138,"bt":138},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Shanghai","temperature":20.31841924,"x":950,"y":150,"height":180,"rt":115,"gt":140,"bt":140},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Shanghai","temperature":19.67937137,"x":955,"y":150,"height":180,"rt":112,"gt":143,"bt":143},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Shanghai","temperature":19.3236277,"x":960,"y":150,"height":180,"rt":110,"gt":145,"bt":145},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Shanghai","temperature":19.25373146,"x":965,"y":150,"height":180,"rt":109,"gt":146,"bt":146},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Shanghai","temperature":19.08903419,"x":970,"y":150,"height":180,"rt":108,"gt":147,"bt":147},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Shanghai","temperature":18.7181965,"x":975,"y":150,"height":180,"rt":106,"gt":149,"bt":149},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Shanghai","temperature":18.26184732,"x":980,"y":150,"height":180,"rt":103,"gt":152,"bt":152},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Shanghai","temperature":17.59198739,"x":985,"y":150,"height":180,"rt":100,"gt":155,"bt":155},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Shanghai","temperature":17.11852648,"x":990,"y":150,"height":180,"rt":97,"gt":158,"bt":158},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Shanghai","temperature":16.45405589,"x":995,"y":150,"height":180,"rt":93,"gt":162,"bt":162},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Shanghai","temperature":15.8608408,"x":1000,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Shanghai","temperature":15.45484903,"x":1005,"y":150,"height":180,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Shanghai","temperature":15.81656056,"x":1010,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Shanghai","temperature":15.52473085,"x":1015,"y":150,"height":180,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Shanghai","temperature":15.55871048,"x":1020,"y":150,"height":180,"rt":88,"gt":167,"bt":167},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Shanghai","temperature":15.84714443,"x":1025,"y":150,"height":180,"rt":90,"gt":165,"bt":165},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Singapore","temperature":33.53648955,"x":200,"y":180,"height":210,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Singapore","temperature":34.25502628,"x":205,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Singapore","temperature":34.1892722,"x":210,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Singapore","temperature":33.98877953,"x":215,"y":180,"height":210,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Singapore","temperature":33.11224198,"x":220,"y":180,"height":210,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Singapore","temperature":32.46100714,"x":225,"y":180,"height":210,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Singapore","temperature":31.40731027,"x":230,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Singapore","temperature":30.74323696,"x":235,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Singapore","temperature":30.22383312,"x":240,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Singapore","temperature":29.88259832,"x":245,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Singapore","temperature":29.6602588,"x":250,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Singapore","temperature":29.56186757,"x":255,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Singapore","temperature":29.34761234,"x":260,"y":180,"height":210,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Singapore","temperature":29.17772727,"x":265,"y":180,"height":210,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Singapore","temperature":28.99481886,"x":270,"y":180,"height":210,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Singapore","temperature":28.9148174,"x":275,"y":180,"height":210,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Singapore","temperature":28.87092113,"x":280,"y":180,"height":210,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Singapore","temperature":28.8078533,"x":285,"y":180,"height":210,"rt":163,"gt":92,"bt":92},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Singapore","temperature":28.92338073,"x":290,"y":180,"height":210,"rt":164,"gt":91,"bt":91},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Singapore","temperature":29.82206811,"x":295,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Singapore","temperature":30.57608939,"x":300,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Singapore","temperature":31.60270171,"x":305,"y":180,"height":210,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Singapore","temperature":32.77894193,"x":310,"y":180,"height":210,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Singapore","temperature":33.54670951,"x":315,"y":180,"height":210,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Singapore","temperature":34.20702953,"x":320,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Singapore","temperature":34.63303156,"x":325,"y":180,"height":210,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Singapore","temperature":34.14093726,"x":330,"y":180,"height":210,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Singapore","temperature":33.42975432,"x":335,"y":180,"height":210,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Singapore","temperature":32.35799507,"x":340,"y":180,"height":210,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Singapore","temperature":31.21008225,"x":345,"y":180,"height":210,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Singapore","temperature":30.25654507,"x":350,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Singapore","temperature":30.13226287,"x":355,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Singapore","temperature":30.14198614,"x":360,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Singapore","temperature":30.02971064,"x":365,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Singapore","temperature":29.95735203,"x":370,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Singapore","temperature":29.90682364,"x":375,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Singapore","temperature":29.69896469,"x":380,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Singapore","temperature":29.47708857,"x":385,"y":180,"height":210,"rt":167,"gt":88,"bt":88},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Singapore","temperature":29.37144358,"x":390,"y":180,"height":210,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Singapore","temperature":29.21453464,"x":395,"y":180,"height":210,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Singapore","temperature":29.15672515,"x":400,"y":180,"height":210,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Singapore","temperature":29.14431033,"x":405,"y":180,"height":210,"rt":165,"gt":90,"bt":90},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Singapore","temperature":29.30016695,"x":410,"y":180,"height":210,"rt":166,"gt":89,"bt":89},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Singapore","temperature":29.67699412,"x":415,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Singapore","temperature":30.52904316,"x":420,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Singapore","temperature":31.29146117,"x":425,"y":180,"height":210,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Singapore","temperature":32.18913842,"x":430,"y":180,"height":210,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Singapore","temperature":33.06205631,"x":435,"y":180,"height":210,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Singapore","temperature":33.56103889,"x":440,"y":180,"height":210,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Singapore","temperature":34.26114675,"x":445,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Singapore","temperature":33.38312131,"x":450,"y":180,"height":210,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Singapore","temperature":33.28282851,"x":455,"y":180,"height":210,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Singapore","temperature":32.5435523,"x":460,"y":180,"height":210,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Singapore","temperature":31.13425014,"x":465,"y":180,"height":210,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Singapore","temperature":30.90430586,"x":470,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Singapore","temperature":30.78065354,"x":475,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Singapore","temperature":30.67362704,"x":480,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Singapore","temperature":30.5971683,"x":485,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Singapore","temperature":30.51063534,"x":490,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Singapore","temperature":30.49852043,"x":495,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Singapore","temperature":30.31149068,"x":500,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Singapore","temperature":30.31480974,"x":505,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Singapore","temperature":30.04040473,"x":510,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Singapore","temperature":29.88354447,"x":515,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Singapore","temperature":29.75102371,"x":520,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Singapore","temperature":29.78059597,"x":525,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Singapore","temperature":29.72834169,"x":530,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Singapore","temperature":30.33264337,"x":535,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Singapore","temperature":31.2314698,"x":540,"y":180,"height":210,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Singapore","temperature":32.10970121,"x":545,"y":180,"height":210,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Singapore","temperature":32.98712483,"x":550,"y":180,"height":210,"rt":187,"gt":68,"bt":68},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Singapore","temperature":33.89411599,"x":555,"y":180,"height":210,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Singapore","temperature":34.16605078,"x":560,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Singapore","temperature":34.04542726,"x":565,"y":180,"height":210,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Singapore","temperature":32.90649637,"x":570,"y":180,"height":210,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Singapore","temperature":31.70252319,"x":575,"y":180,"height":210,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Singapore","temperature":31.93388869,"x":580,"y":180,"height":210,"rt":181,"gt":74,"bt":74},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Singapore","temperature":31.56705434,"x":585,"y":180,"height":210,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Singapore","temperature":30.86090561,"x":590,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Singapore","temperature":30.75773374,"x":595,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Singapore","temperature":30.59044605,"x":600,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Singapore","temperature":30.58781029,"x":605,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Singapore","temperature":30.52442032,"x":610,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Singapore","temperature":30.43398463,"x":615,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Singapore","temperature":30.28214609,"x":620,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Singapore","temperature":30.20539773,"x":625,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Singapore","temperature":30.11135281,"x":630,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Singapore","temperature":30.04864835,"x":635,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Singapore","temperature":29.87945831,"x":640,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Singapore","temperature":29.78345311,"x":645,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Singapore","temperature":29.75848364,"x":650,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Singapore","temperature":30.32100782,"x":655,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Singapore","temperature":31.1942946,"x":660,"y":180,"height":210,"rt":177,"gt":78,"bt":78},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Singapore","temperature":32.20477148,"x":665,"y":180,"height":210,"rt":182,"gt":73,"bt":73},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Singapore","temperature":33.20238412,"x":670,"y":180,"height":210,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Singapore","temperature":34.01316158,"x":675,"y":180,"height":210,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Singapore","temperature":34.27826666,"x":680,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Singapore","temperature":34.39119248,"x":685,"y":180,"height":210,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Singapore","temperature":34.19410056,"x":690,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Singapore","temperature":33.90405374,"x":695,"y":180,"height":210,"rt":192,"gt":63,"bt":63},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Singapore","temperature":33.33708418,"x":700,"y":180,"height":210,"rt":189,"gt":66,"bt":66},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Singapore","temperature":32.329489,"x":705,"y":180,"height":210,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Singapore","temperature":31.45937163,"x":710,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Singapore","temperature":31.05778098,"x":715,"y":180,"height":210,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Singapore","temperature":30.71714902,"x":720,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Singapore","temperature":30.43200464,"x":725,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Singapore","temperature":30.21057279,"x":730,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Singapore","temperature":30.02660774,"x":735,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Singapore","temperature":29.95802811,"x":740,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Singapore","temperature":29.84577694,"x":745,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Singapore","temperature":29.77220143,"x":750,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Singapore","temperature":29.78350521,"x":755,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Singapore","temperature":29.67097531,"x":760,"y":180,"height":210,"rt":168,"gt":87,"bt":87},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Singapore","temperature":29.75211362,"x":765,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Singapore","temperature":29.86560303,"x":770,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Singapore","temperature":30.51223301,"x":775,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Singapore","temperature":31.38606468,"x":780,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Singapore","temperature":32.5270223,"x":785,"y":180,"height":210,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Singapore","temperature":33.52709222,"x":790,"y":180,"height":210,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Singapore","temperature":34.37269875,"x":795,"y":180,"height":210,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Singapore","temperature":34.46214704,"x":800,"y":180,"height":210,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Singapore","temperature":34.51465462,"x":805,"y":180,"height":210,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Singapore","temperature":34.21241334,"x":810,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Singapore","temperature":33.49383161,"x":815,"y":180,"height":210,"rt":190,"gt":65,"bt":65},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Singapore","temperature":33.18202782,"x":820,"y":180,"height":210,"rt":188,"gt":67,"bt":67},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Singapore","temperature":32.44993362,"x":825,"y":180,"height":210,"rt":184,"gt":71,"bt":71},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Singapore","temperature":31.80763694,"x":830,"y":180,"height":210,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Singapore","temperature":31.35460081,"x":835,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Singapore","temperature":30.96282179,"x":840,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Singapore","temperature":30.91295411,"x":845,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Singapore","temperature":30.74387723,"x":850,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Singapore","temperature":30.63943821,"x":855,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Singapore","temperature":30.47824456,"x":860,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Singapore","temperature":30.40079539,"x":865,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Singapore","temperature":30.23419004,"x":870,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Singapore","temperature":30.12274608,"x":875,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Singapore","temperature":30.04810334,"x":880,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Singapore","temperature":30.10077019,"x":885,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Singapore","temperature":30.15369209,"x":890,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Singapore","temperature":30.80296191,"x":895,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Singapore","temperature":31.83414126,"x":900,"y":180,"height":210,"rt":180,"gt":75,"bt":75},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Singapore","temperature":32.87309265,"x":905,"y":180,"height":210,"rt":186,"gt":69,"bt":69},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Singapore","temperature":33.68253012,"x":910,"y":180,"height":210,"rt":191,"gt":64,"bt":64},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Singapore","temperature":34.18878766,"x":915,"y":180,"height":210,"rt":194,"gt":61,"bt":61},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Singapore","temperature":34.48758399,"x":920,"y":180,"height":210,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Singapore","temperature":34.51166868,"x":925,"y":180,"height":210,"rt":196,"gt":59,"bt":59},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Singapore","temperature":34.42826489,"x":930,"y":180,"height":210,"rt":195,"gt":60,"bt":60},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Singapore","temperature":33.98365474,"x":935,"y":180,"height":210,"rt":193,"gt":62,"bt":62},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Singapore","temperature":32.33105704,"x":940,"y":180,"height":210,"rt":183,"gt":72,"bt":72},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Singapore","temperature":31.47017838,"x":945,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Singapore","temperature":31.33880673,"x":950,"y":180,"height":210,"rt":178,"gt":77,"bt":77},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Singapore","temperature":31.13875154,"x":955,"y":180,"height":210,"rt":176,"gt":79,"bt":79},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Singapore","temperature":30.96213341,"x":960,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Singapore","temperature":30.90044526,"x":965,"y":180,"height":210,"rt":175,"gt":80,"bt":80},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Singapore","temperature":30.69971083,"x":970,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Singapore","temperature":30.56071302,"x":975,"y":180,"height":210,"rt":173,"gt":82,"bt":82},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Singapore","temperature":30.351911,"x":980,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Singapore","temperature":30.27098687,"x":985,"y":180,"height":210,"rt":172,"gt":83,"bt":83},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Singapore","temperature":30.15227316,"x":990,"y":180,"height":210,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Singapore","temperature":30.05933651,"x":995,"y":180,"height":210,"rt":170,"gt":85,"bt":85},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Singapore","temperature":29.86058077,"x":1000,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Singapore","temperature":29.73788665,"x":1005,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Singapore","temperature":29.86717759,"x":1010,"y":180,"height":210,"rt":169,"gt":86,"bt":86},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Singapore","temperature":30.63801467,"x":1015,"y":180,"height":210,"rt":174,"gt":81,"bt":81},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Singapore","temperature":31.58583166,"x":1020,"y":180,"height":210,"rt":179,"gt":76,"bt":76},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Singapore","temperature":32.23906107,"x":1025,"y":180,"height":210,"rt":183,"gt":72,"bt":72}
];
var lig = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","light":2895.861097,"x":200,"y":0,"height":30,"rt":150,"gt":73,"bt":105},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","light":2522.858181,"x":205,"y":0,"height":30,"rt":163,"gt":80,"bt":92},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","light":2848.917588,"x":210,"y":0,"height":30,"rt":151,"gt":74,"bt":104},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","light":3495.80631,"x":215,"y":0,"height":30,"rt":128,"gt":63,"bt":127},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","light":4465.655359,"x":220,"y":0,"height":30,"rt":92,"gt":45,"bt":163},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","light":2420.9691,"x":225,"y":0,"height":30,"rt":167,"gt":82,"bt":88},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","light":1566.216541,"x":230,"y":0,"height":30,"rt":198,"gt":97,"bt":57},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","light":293.4382246,"x":235,"y":0,"height":30,"rt":244,"gt":120,"bt":11},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","light":5.112911829,"x":240,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","light":2.564885496,"x":245,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","light":2.545454545,"x":250,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","light":2.369230769,"x":255,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","light":0.817340067,"x":260,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","light":1.4,"x":265,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","light":1.294117647,"x":270,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","light":1.335185185,"x":275,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","light":1.370833333,"x":280,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","light":1.4,"x":285,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","light":1.4,"x":290,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","light":4.816554666,"x":295,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","light":249.20478,"x":300,"y":0,"height":30,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","light":783.7727096,"x":305,"y":0,"height":30,"rt":226,"gt":111,"bt":29},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","light":1448.798041,"x":310,"y":0,"height":30,"rt":202,"gt":99,"bt":53},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","light":2370.838155,"x":315,"y":0,"height":30,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","light":2970.56729,"x":320,"y":0,"height":30,"rt":147,"gt":72,"bt":108},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","light":2460.047514,"x":325,"y":0,"height":30,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","light":2612.241105,"x":330,"y":0,"height":30,"rt":160,"gt":78,"bt":95},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","light":3532.49889,"x":335,"y":0,"height":30,"rt":126,"gt":62,"bt":129},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","light":4110.22961,"x":340,"y":0,"height":30,"rt":105,"gt":52,"bt":150},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","light":2827.610032,"x":345,"y":0,"height":30,"rt":152,"gt":75,"bt":103},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","light":2347.264949,"x":350,"y":0,"height":30,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","light":331.9102971,"x":355,"y":0,"height":30,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","light":2.530664631,"x":360,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","light":4.057648544,"x":365,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","light":9.733088164,"x":370,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","light":9.900613799,"x":375,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","light":9.857910763,"x":380,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","light":7.64608315,"x":385,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","light":0,"x":390,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","light":0,"x":395,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","light":0,"x":400,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","light":0,"x":405,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","light":0,"x":410,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","light":3.166366544,"x":415,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","light":234.3012948,"x":420,"y":0,"height":30,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","light":775.9897141,"x":425,"y":0,"height":30,"rt":227,"gt":111,"bt":28},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","light":1401.360569,"x":430,"y":0,"height":30,"rt":204,"gt":100,"bt":51},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","light":2372.368066,"x":435,"y":0,"height":30,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","light":2801.591836,"x":440,"y":0,"height":30,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","light":2520.067292,"x":445,"y":0,"height":30,"rt":163,"gt":80,"bt":92},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","light":2816.922013,"x":450,"y":0,"height":30,"rt":152,"gt":75,"bt":103},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","light":3569.852499,"x":455,"y":0,"height":30,"rt":125,"gt":61,"bt":130},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","light":2952.002293,"x":460,"y":0,"height":30,"rt":147,"gt":72,"bt":108},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","light":2337.759659,"x":465,"y":0,"height":30,"rt":170,"gt":83,"bt":85},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","light":1720.066536,"x":470,"y":0,"height":30,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","light":195.3443231,"x":475,"y":0,"height":30,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","light":5.424436914,"x":480,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","light":3.997394672,"x":485,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","light":4.222796426,"x":490,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","light":1.233695652,"x":495,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","light":2.552083333,"x":500,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","light":1.143333333,"x":505,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","light":0,"x":510,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","light":0,"x":515,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","light":0,"x":520,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","light":0,"x":525,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","light":0,"x":530,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","light":4.466651776,"x":535,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","light":258.2033768,"x":540,"y":0,"height":30,"rt":246,"gt":120,"bt":9},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","light":730.2220267,"x":545,"y":0,"height":30,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","light":1289.742532,"x":550,"y":0,"height":30,"rt":208,"gt":102,"bt":47},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","light":2052.829758,"x":555,"y":0,"height":30,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","light":2648.12404,"x":560,"y":0,"height":30,"rt":159,"gt":78,"bt":96},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","light":2440.307988,"x":565,"y":0,"height":30,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","light":2565.473708,"x":570,"y":0,"height":30,"rt":162,"gt":79,"bt":93},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","light":3395.007726,"x":575,"y":0,"height":30,"rt":131,"gt":64,"bt":124},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","light":4112.326756,"x":580,"y":0,"height":30,"rt":105,"gt":52,"bt":150},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","light":2791.103232,"x":585,"y":0,"height":30,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","light":1211.892127,"x":590,"y":0,"height":30,"rt":211,"gt":103,"bt":44},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","light":420.0137601,"x":595,"y":0,"height":30,"rt":240,"gt":117,"bt":15},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","light":3.33690643,"x":600,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","light":0.007911877,"x":605,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","light":1.025862069,"x":610,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","light":1.5,"x":615,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","light":1.49053604,"x":620,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","light":1.025423922,"x":625,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","light":0,"x":630,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","light":0,"x":635,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","light":0,"x":640,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","light":0,"x":645,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","light":0,"x":650,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","light":5.369006398,"x":655,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","light":269.6223371,"x":660,"y":0,"height":30,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","light":710.2790078,"x":665,"y":0,"height":30,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","light":1326.272914,"x":670,"y":0,"height":30,"rt":207,"gt":101,"bt":48},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","light":2264.22387,"x":675,"y":0,"height":30,"rt":173,"gt":85,"bt":82},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","light":2798.624979,"x":680,"y":0,"height":30,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","light":2464.654056,"x":685,"y":0,"height":30,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","light":3027.42801,"x":690,"y":0,"height":30,"rt":145,"gt":71,"bt":110},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","light":3771.848287,"x":695,"y":0,"height":30,"rt":118,"gt":58,"bt":137},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","light":5138.224359,"x":700,"y":0,"height":30,"rt":68,"gt":33,"bt":187},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","light":3183.521335,"x":705,"y":0,"height":30,"rt":139,"gt":68,"bt":116},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","light":2455.077844,"x":710,"y":0,"height":30,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","light":424.7084605,"x":715,"y":0,"height":30,"rt":240,"gt":117,"bt":15},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","light":4.711111698,"x":720,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","light":2.162098438,"x":725,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","light":2.413793103,"x":730,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","light":2.153846154,"x":735,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","light":1.674357736,"x":740,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","light":0,"x":745,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","light":0,"x":750,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","light":0,"x":755,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","light":0,"x":760,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","light":0,"x":765,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","light":0,"x":770,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","light":5.654752639,"x":775,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","light":282.8511001,"x":780,"y":0,"height":30,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","light":763.301919,"x":785,"y":0,"height":30,"rt":227,"gt":111,"bt":28},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","light":1339.788703,"x":790,"y":0,"height":30,"rt":206,"gt":101,"bt":49},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","light":2190.991111,"x":795,"y":0,"height":30,"rt":175,"gt":86,"bt":80},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","light":2546.631015,"x":800,"y":0,"height":30,"rt":162,"gt":80,"bt":93},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","light":2352.970306,"x":805,"y":0,"height":30,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","light":2898.806328,"x":810,"y":0,"height":30,"rt":149,"gt":73,"bt":106},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","light":4163.201213,"x":815,"y":0,"height":30,"rt":103,"gt":51,"bt":152},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","light":5468.53028,"x":820,"y":0,"height":30,"rt":56,"gt":27,"bt":199},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","light":3194.389732,"x":825,"y":0,"height":30,"rt":139,"gt":68,"bt":116},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","light":1653.795973,"x":830,"y":0,"height":30,"rt":195,"gt":95,"bt":60},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","light":438.0480636,"x":835,"y":0,"height":30,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","light":5.520233843,"x":840,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","light":2.871794872,"x":845,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","light":2.340625,"x":850,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","light":0.674074074,"x":855,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","light":0,"x":860,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","light":0,"x":865,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","light":0,"x":870,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","light":0,"x":875,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","light":0,"x":880,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","light":0,"x":885,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","light":0,"x":890,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","light":5.159319706,"x":895,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","light":262.5451605,"x":900,"y":0,"height":30,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","light":752.2664229,"x":905,"y":0,"height":30,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","light":1322.789694,"x":910,"y":0,"height":30,"rt":207,"gt":101,"bt":48},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","light":2162.176781,"x":915,"y":0,"height":30,"rt":176,"gt":86,"bt":79},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","light":2524.163565,"x":920,"y":0,"height":30,"rt":163,"gt":80,"bt":92},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","light":2386.665629,"x":925,"y":0,"height":30,"rt":168,"gt":82,"bt":87},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","light":2926.545339,"x":930,"y":0,"height":30,"rt":148,"gt":73,"bt":107},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","light":3668.500322,"x":935,"y":0,"height":30,"rt":121,"gt":59,"bt":134},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","light":3572.329224,"x":940,"y":0,"height":30,"rt":125,"gt":61,"bt":130},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","light":2239.314474,"x":945,"y":0,"height":30,"rt":173,"gt":85,"bt":82},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","light":1688.025504,"x":950,"y":0,"height":30,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","light":412.3780672,"x":955,"y":0,"height":30,"rt":240,"gt":118,"bt":15},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","light":5.882042894,"x":960,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","light":2.525358852,"x":965,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","light":1.802446483,"x":970,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","light":2.153846154,"x":975,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","light":0.973913043,"x":980,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","light":0,"x":985,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","light":0,"x":990,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","light":0,"x":995,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","light":0,"x":1000,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","light":0,"x":1005,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","light":0,"x":1010,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","light":6.175992584,"x":1015,"y":0,"height":30,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","light":259.2612896,"x":1020,"y":0,"height":30,"rt":246,"gt":120,"bt":9},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","light":558.8622913,"x":1025,"y":0,"height":30,"rt":235,"gt":115,"bt":20},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","light":0,"x":200,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","light":0,"x":205,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","light":0,"x":210,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","light":0,"x":215,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","light":0,"x":220,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","light":4.510217236,"x":225,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","light":258.0794452,"x":230,"y":30,"height":60,"rt":246,"gt":120,"bt":9},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","light":983.5751787,"x":235,"y":30,"height":60,"rt":219,"gt":107,"bt":36},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","light":1421.752392,"x":240,"y":30,"height":60,"rt":203,"gt":100,"bt":52},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","light":1839.723585,"x":245,"y":30,"height":60,"rt":188,"gt":92,"bt":67},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","light":2683.266934,"x":250,"y":30,"height":60,"rt":157,"gt":77,"bt":98},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","light":1943.647429,"x":255,"y":30,"height":60,"rt":184,"gt":90,"bt":71},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","light":1711.406502,"x":260,"y":30,"height":60,"rt":193,"gt":94,"bt":62},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","light":1940.554821,"x":265,"y":30,"height":60,"rt":184,"gt":90,"bt":71},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","light":1893.167956,"x":270,"y":30,"height":60,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","light":1888.394984,"x":275,"y":30,"height":60,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","light":733.8900151,"x":280,"y":30,"height":60,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","light":95.5620994,"x":285,"y":30,"height":60,"rt":252,"gt":123,"bt":3},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","light":0.219157088,"x":290,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","light":0.051851852,"x":295,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","light":0,"x":300,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","light":0,"x":305,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","light":0,"x":310,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","light":0,"x":315,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","light":0,"x":320,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","light":0,"x":325,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","light":0,"x":330,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","light":0,"x":335,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","light":0,"x":340,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","light":1.572653257,"x":345,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","light":29.08545355,"x":350,"y":30,"height":60,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","light":120.4017978,"x":355,"y":30,"height":60,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","light":285.7408196,"x":360,"y":30,"height":60,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","light":339.9149344,"x":365,"y":30,"height":60,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","light":330.472254,"x":370,"y":30,"height":60,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","light":440.6311003,"x":375,"y":30,"height":60,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","light":458.3424742,"x":380,"y":30,"height":60,"rt":238,"gt":117,"bt":17},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","light":310.060535,"x":385,"y":30,"height":60,"rt":244,"gt":119,"bt":11},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","light":220.2229436,"x":390,"y":30,"height":60,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","light":147.6051927,"x":395,"y":30,"height":60,"rt":250,"gt":122,"bt":5},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","light":72.4289638,"x":400,"y":30,"height":60,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","light":21.71493598,"x":405,"y":30,"height":60,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","light":0.842890592,"x":410,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","light":1.103341848,"x":415,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","light":0,"x":420,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","light":0,"x":425,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","light":0,"x":430,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","light":0,"x":435,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","light":0,"x":440,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","light":0,"x":445,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","light":0,"x":450,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","light":0,"x":455,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","light":0,"x":460,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","light":2.257904009,"x":465,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","light":82.28932179,"x":470,"y":30,"height":60,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","light":172.0732192,"x":475,"y":30,"height":60,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","light":309.5768678,"x":480,"y":30,"height":60,"rt":244,"gt":119,"bt":11},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","light":491.7913754,"x":485,"y":30,"height":60,"rt":237,"gt":116,"bt":18},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","light":1077.997468,"x":490,"y":30,"height":60,"rt":216,"gt":106,"bt":39},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","light":893.2890853,"x":495,"y":30,"height":60,"rt":222,"gt":109,"bt":33},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","light":1583.202987,"x":500,"y":30,"height":60,"rt":197,"gt":97,"bt":58},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","light":1236.263283,"x":505,"y":30,"height":60,"rt":210,"gt":103,"bt":45},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","light":509.8174,"x":510,"y":30,"height":60,"rt":236,"gt":116,"bt":19},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","light":299.3382505,"x":515,"y":30,"height":60,"rt":244,"gt":120,"bt":11},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","light":97.08635915,"x":520,"y":30,"height":60,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","light":39.62488993,"x":525,"y":30,"height":60,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","light":0.816581524,"x":530,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","light":0.124675046,"x":535,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","light":0,"x":540,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","light":0.008722741,"x":545,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","light":0,"x":550,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","light":0,"x":555,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","light":0,"x":560,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","light":0,"x":565,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","light":0,"x":570,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","light":0,"x":575,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","light":0,"x":580,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","light":9.437076897,"x":585,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","light":395.574055,"x":590,"y":30,"height":60,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","light":1244.502187,"x":595,"y":30,"height":60,"rt":210,"gt":103,"bt":45},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","light":1529.330743,"x":600,"y":30,"height":60,"rt":199,"gt":98,"bt":56},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","light":2029.152474,"x":605,"y":30,"height":60,"rt":181,"gt":89,"bt":74},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","light":2893.180361,"x":610,"y":30,"height":60,"rt":150,"gt":73,"bt":105},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","light":1827.338677,"x":615,"y":30,"height":60,"rt":188,"gt":92,"bt":67},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","light":2124.340537,"x":620,"y":30,"height":60,"rt":178,"gt":87,"bt":77},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","light":1740.427858,"x":625,"y":30,"height":60,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","light":1603.669497,"x":630,"y":30,"height":60,"rt":197,"gt":96,"bt":58},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","light":1892.437439,"x":635,"y":30,"height":60,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","light":913.9011183,"x":640,"y":30,"height":60,"rt":222,"gt":109,"bt":33},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","light":132.4422328,"x":645,"y":30,"height":60,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","light":0.665676065,"x":650,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","light":0.004469987,"x":655,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","light":0,"x":660,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","light":0,"x":665,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","light":0,"x":670,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","light":0,"x":675,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","light":0,"x":680,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","light":0,"x":685,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","light":0,"x":690,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","light":0,"x":695,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","light":0,"x":700,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","light":1.721633319,"x":705,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","light":49.29026672,"x":710,"y":30,"height":60,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","light":118.7349667,"x":715,"y":30,"height":60,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","light":292.3471787,"x":720,"y":30,"height":60,"rt":244,"gt":120,"bt":11},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","light":319.6314433,"x":725,"y":30,"height":60,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","light":585.2437605,"x":730,"y":30,"height":60,"rt":234,"gt":115,"bt":21},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","light":1484.635702,"x":735,"y":30,"height":60,"rt":201,"gt":98,"bt":54},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","light":1753.499082,"x":740,"y":30,"height":60,"rt":191,"gt":94,"bt":64},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","light":1269.061692,"x":745,"y":30,"height":60,"rt":209,"gt":102,"bt":46},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","light":1753.506421,"x":750,"y":30,"height":60,"rt":191,"gt":94,"bt":64},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","light":739.6819028,"x":755,"y":30,"height":60,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","light":203.7412231,"x":760,"y":30,"height":60,"rt":248,"gt":121,"bt":7},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","light":128.2302972,"x":765,"y":30,"height":60,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","light":1.782444716,"x":770,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","light":0,"x":775,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","light":0.004320988,"x":780,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","light":0,"x":785,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","light":0.004320988,"x":790,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","light":0,"x":795,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","light":0,"x":800,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","light":0,"x":805,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","light":0,"x":810,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","light":0,"x":815,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","light":0,"x":820,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","light":10.69964001,"x":825,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","light":361.3357218,"x":830,"y":30,"height":60,"rt":242,"gt":119,"bt":13},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","light":1188.538687,"x":835,"y":30,"height":60,"rt":212,"gt":104,"bt":43},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","light":1443.725901,"x":840,"y":30,"height":60,"rt":202,"gt":99,"bt":53},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","light":1860.990443,"x":845,"y":30,"height":60,"rt":187,"gt":92,"bt":68},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","light":2310.176687,"x":850,"y":30,"height":60,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","light":1682.73154,"x":855,"y":30,"height":60,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","light":1965.286031,"x":860,"y":30,"height":60,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","light":2048.176797,"x":865,"y":30,"height":60,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","light":1706.129118,"x":870,"y":30,"height":60,"rt":193,"gt":95,"bt":62},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","light":1892.931658,"x":875,"y":30,"height":60,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","light":850.3611323,"x":880,"y":30,"height":60,"rt":224,"gt":110,"bt":31},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","light":160.227323,"x":885,"y":30,"height":60,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","light":1.724577562,"x":890,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","light":0,"x":895,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","light":0,"x":900,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","light":0,"x":905,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","light":0,"x":910,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","light":0,"x":915,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","light":0,"x":920,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","light":0,"x":925,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","light":0,"x":930,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","light":0,"x":935,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","light":0,"x":940,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","light":12.11405883,"x":945,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","light":412.1618083,"x":950,"y":30,"height":60,"rt":240,"gt":118,"bt":15},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","light":1207.50727,"x":955,"y":30,"height":60,"rt":211,"gt":103,"bt":44},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","light":1441.951595,"x":960,"y":30,"height":60,"rt":202,"gt":99,"bt":53},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","light":1813.099663,"x":965,"y":30,"height":60,"rt":189,"gt":93,"bt":66},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","light":2153.919641,"x":970,"y":30,"height":60,"rt":177,"gt":87,"bt":78},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","light":1628.040391,"x":975,"y":30,"height":60,"rt":196,"gt":96,"bt":59},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","light":1945.537194,"x":980,"y":30,"height":60,"rt":184,"gt":90,"bt":71},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","light":2086.006515,"x":985,"y":30,"height":60,"rt":179,"gt":88,"bt":76},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","light":1769.733674,"x":990,"y":30,"height":60,"rt":191,"gt":93,"bt":64},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","light":2599.969257,"x":995,"y":30,"height":60,"rt":160,"gt":79,"bt":95},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","light":1062.478774,"x":1000,"y":30,"height":60,"rt":216,"gt":106,"bt":39},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","light":181.3265422,"x":1005,"y":30,"height":60,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","light":1.700652115,"x":1010,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","light":0.259125577,"x":1015,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","light":0,"x":1020,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","light":0,"x":1025,"y":30,"height":60,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","light":7.58472188,"x":200,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","light":339.1236977,"x":205,"y":60,"height":90,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","light":1066.248039,"x":210,"y":60,"height":90,"rt":216,"gt":106,"bt":39},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","light":1490.655041,"x":215,"y":60,"height":90,"rt":201,"gt":98,"bt":54},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","light":1979.622732,"x":220,"y":60,"height":90,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","light":2262.950013,"x":225,"y":60,"height":90,"rt":173,"gt":85,"bt":82},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","light":2844.61962,"x":230,"y":60,"height":90,"rt":151,"gt":74,"bt":104},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","light":2293.889678,"x":235,"y":60,"height":90,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","light":1611.269448,"x":240,"y":60,"height":90,"rt":196,"gt":96,"bt":59},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","light":1321.939623,"x":245,"y":60,"height":90,"rt":207,"gt":101,"bt":48},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","light":705.5949867,"x":250,"y":60,"height":90,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","light":308.9124896,"x":255,"y":60,"height":90,"rt":244,"gt":119,"bt":11},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","light":40.06514176,"x":260,"y":60,"height":90,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","light":0.708533612,"x":265,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","light":0.20651341,"x":270,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","light":0.095852074,"x":275,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","light":0.08934387,"x":280,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","light":0.044755747,"x":285,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","light":0.026556513,"x":290,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","light":0.01443299,"x":295,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","light":0,"x":300,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","light":0.010057471,"x":305,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","light":0.033676976,"x":310,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","light":0,"x":315,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","light":9.9161159,"x":320,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","light":214.4851054,"x":325,"y":60,"height":90,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","light":639.2899367,"x":330,"y":60,"height":90,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","light":1246.949227,"x":335,"y":60,"height":90,"rt":210,"gt":103,"bt":45},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","light":1926.085788,"x":340,"y":60,"height":90,"rt":185,"gt":91,"bt":70},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","light":2084.981322,"x":345,"y":60,"height":90,"rt":179,"gt":88,"bt":76},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","light":2136.925886,"x":350,"y":60,"height":90,"rt":177,"gt":87,"bt":78},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","light":1854.785849,"x":355,"y":60,"height":90,"rt":187,"gt":92,"bt":68},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","light":1732.024823,"x":360,"y":60,"height":90,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","light":800.9919808,"x":365,"y":60,"height":90,"rt":226,"gt":111,"bt":29},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","light":726.3860105,"x":370,"y":60,"height":90,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","light":403.4812604,"x":375,"y":60,"height":90,"rt":240,"gt":118,"bt":15},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","light":53.43212729,"x":380,"y":60,"height":90,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","light":0.561896829,"x":385,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","light":0.153130219,"x":390,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","light":0.079669677,"x":395,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","light":0.081396339,"x":400,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","light":0.057335948,"x":405,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","light":0.749866801,"x":410,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","light":0.510416667,"x":415,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","light":0.005208333,"x":420,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","light":0.004861111,"x":425,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","light":0.060448232,"x":430,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","light":0.004861111,"x":435,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","light":8.766654693,"x":440,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","light":152.3623335,"x":445,"y":60,"height":90,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","light":358.9592952,"x":450,"y":60,"height":90,"rt":242,"gt":119,"bt":13},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","light":591.4873144,"x":455,"y":60,"height":90,"rt":233,"gt":114,"bt":22},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","light":977.2181357,"x":460,"y":60,"height":90,"rt":219,"gt":108,"bt":36},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","light":1987.593394,"x":465,"y":60,"height":90,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","light":2601.044414,"x":470,"y":60,"height":90,"rt":160,"gt":79,"bt":95},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","light":2152.174645,"x":475,"y":60,"height":90,"rt":177,"gt":87,"bt":78},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","light":1052.479972,"x":480,"y":60,"height":90,"rt":217,"gt":106,"bt":38},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","light":624.6171505,"x":485,"y":60,"height":90,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","light":375.0377673,"x":490,"y":60,"height":90,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","light":180.5723323,"x":495,"y":60,"height":90,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","light":25.3576083,"x":500,"y":60,"height":90,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","light":0.939418432,"x":505,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","light":0.35913455,"x":510,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","light":0.042629784,"x":515,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","light":0.057551086,"x":520,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","light":0.045126916,"x":525,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","light":0.004861111,"x":530,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","light":0.010069444,"x":535,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","light":0,"x":540,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","light":0.005833333,"x":545,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","light":0,"x":550,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","light":0.034363027,"x":555,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","light":7.828018952,"x":560,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","light":128.8705065,"x":565,"y":60,"height":90,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","light":481.7349211,"x":570,"y":60,"height":90,"rt":237,"gt":116,"bt":18},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","light":1420.756357,"x":575,"y":60,"height":90,"rt":203,"gt":100,"bt":52},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","light":2222.380158,"x":580,"y":60,"height":90,"rt":174,"gt":85,"bt":81},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","light":3086.731865,"x":585,"y":60,"height":90,"rt":143,"gt":70,"bt":112},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","light":2460.089233,"x":590,"y":60,"height":90,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","light":1984.809418,"x":595,"y":60,"height":90,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","light":2154.327057,"x":600,"y":60,"height":90,"rt":177,"gt":87,"bt":78},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","light":1695.908198,"x":605,"y":60,"height":90,"rt":193,"gt":95,"bt":62},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","light":1165.744681,"x":610,"y":60,"height":90,"rt":213,"gt":104,"bt":42},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","light":540.5848763,"x":615,"y":60,"height":90,"rt":235,"gt":115,"bt":20},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","light":65.88749933,"x":620,"y":60,"height":90,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","light":0.707641601,"x":625,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","light":0.153430715,"x":630,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","light":0.135420658,"x":635,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","light":0.046207163,"x":640,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","light":0.015236467,"x":645,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","light":0.004597701,"x":650,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","light":0,"x":655,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","light":0.004511763,"x":660,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","light":0.039423727,"x":665,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","light":0.004732928,"x":670,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","light":0.02225803,"x":675,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","light":9.056557301,"x":680,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","light":145.513911,"x":685,"y":60,"height":90,"rt":250,"gt":122,"bt":5},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","light":475.0806632,"x":690,"y":60,"height":90,"rt":238,"gt":117,"bt":17},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","light":1037.443026,"x":695,"y":60,"height":90,"rt":217,"gt":106,"bt":38},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","light":1728.619574,"x":700,"y":60,"height":90,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","light":2202.181905,"x":705,"y":60,"height":90,"rt":175,"gt":86,"bt":80},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","light":4047.204354,"x":710,"y":60,"height":90,"rt":108,"gt":53,"bt":147},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","light":2696.942878,"x":715,"y":60,"height":90,"rt":157,"gt":77,"bt":98},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","light":2440.361045,"x":720,"y":60,"height":90,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","light":2094.110814,"x":725,"y":60,"height":90,"rt":179,"gt":88,"bt":76},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","light":1431.161236,"x":730,"y":60,"height":90,"rt":203,"gt":99,"bt":52},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","light":521.8019201,"x":735,"y":60,"height":90,"rt":236,"gt":116,"bt":19},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","light":72.18801627,"x":740,"y":60,"height":90,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","light":1.195824737,"x":745,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","light":0.275890623,"x":750,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","light":0.09872417,"x":755,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","light":0.070955726,"x":760,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","light":0.019801097,"x":765,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","light":0.008939974,"x":770,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","light":0,"x":775,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","light":0.008950617,"x":780,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","light":0.006378601,"x":785,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","light":0,"x":790,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","light":0.017746267,"x":795,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","light":20.24625858,"x":800,"y":60,"height":90,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","light":360.2839594,"x":805,"y":60,"height":90,"rt":242,"gt":119,"bt":13},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","light":943.0861012,"x":810,"y":60,"height":90,"rt":221,"gt":108,"bt":34},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","light":1392.186979,"x":815,"y":60,"height":90,"rt":204,"gt":100,"bt":51},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","light":2066.952214,"x":820,"y":60,"height":90,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","light":2835.57027,"x":825,"y":60,"height":90,"rt":152,"gt":74,"bt":103},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","light":4455.347162,"x":830,"y":60,"height":90,"rt":93,"gt":45,"bt":162},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","light":3113.869522,"x":835,"y":60,"height":90,"rt":142,"gt":69,"bt":113},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","light":2583.713229,"x":840,"y":60,"height":90,"rt":161,"gt":79,"bt":94},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","light":2020.953807,"x":845,"y":60,"height":90,"rt":181,"gt":89,"bt":74},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","light":1238.982075,"x":850,"y":60,"height":90,"rt":210,"gt":103,"bt":45},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","light":438.5454045,"x":855,"y":60,"height":90,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","light":72.15006858,"x":860,"y":60,"height":90,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","light":1.638405455,"x":865,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","light":0.285583626,"x":870,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","light":0.051736111,"x":875,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","light":0.055699234,"x":880,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","light":0.030028736,"x":885,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","light":0.010069444,"x":890,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","light":0.009722222,"x":895,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","light":0.004861111,"x":900,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","light":0.005208333,"x":905,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","light":0.006944444,"x":910,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","light":0.009722222,"x":915,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","light":22.38392293,"x":920,"y":60,"height":90,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","light":275.1322008,"x":925,"y":60,"height":90,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","light":821.8499418,"x":930,"y":60,"height":90,"rt":225,"gt":110,"bt":30},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","light":1389.185126,"x":935,"y":60,"height":90,"rt":204,"gt":100,"bt":51},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","light":1962.810413,"x":940,"y":60,"height":90,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","light":2728.393811,"x":945,"y":60,"height":90,"rt":156,"gt":76,"bt":99},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","light":3771.27606,"x":950,"y":60,"height":90,"rt":118,"gt":58,"bt":137},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","light":2824.185659,"x":955,"y":60,"height":90,"rt":152,"gt":75,"bt":103},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","light":2340.461177,"x":960,"y":60,"height":90,"rt":170,"gt":83,"bt":85},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","light":1822.385809,"x":965,"y":60,"height":90,"rt":189,"gt":92,"bt":66},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","light":1347.897945,"x":970,"y":60,"height":90,"rt":206,"gt":101,"bt":49},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","light":448.8888767,"x":975,"y":60,"height":90,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","light":71.75004573,"x":980,"y":60,"height":90,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","light":1.425712606,"x":985,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","light":0.998084291,"x":990,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","light":0.94286724,"x":995,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","light":0.217336177,"x":1000,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","light":0.027412881,"x":1005,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","light":0,"x":1010,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","light":0.004827586,"x":1015,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","light":0.01049505,"x":1020,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","light":0,"x":1025,"y":60,"height":90,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","light":0,"x":200,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","light":0,"x":205,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":210,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","light":11.67030903,"x":215,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","light":1340.565119,"x":220,"y":90,"height":120,"rt":206,"gt":101,"bt":49},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","light":4084.561542,"x":225,"y":90,"height":120,"rt":106,"gt":52,"bt":149},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","light":6300.699538,"x":230,"y":90,"height":120,"rt":25,"gt":12,"bt":230},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","light":7589.56764,"x":235,"y":90,"height":120,"rt":-21,"gt":-11,"bt":276},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","light":5213.704486,"x":240,"y":90,"height":120,"rt":65,"gt":32,"bt":190},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","light":3839.552514,"x":245,"y":90,"height":120,"rt":115,"gt":56,"bt":140},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","light":3076.001478,"x":250,"y":90,"height":120,"rt":143,"gt":70,"bt":112},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","light":2631.164023,"x":255,"y":90,"height":120,"rt":159,"gt":78,"bt":96},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","light":3086.193317,"x":260,"y":90,"height":120,"rt":143,"gt":70,"bt":112},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","light":1661.844298,"x":265,"y":90,"height":120,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","light":427.2750022,"x":270,"y":90,"height":120,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","light":48.86768871,"x":275,"y":90,"height":120,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","light":17.5643953,"x":280,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","light":16.09626993,"x":285,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","light":6.09496758,"x":290,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","light":1.089209811,"x":295,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","light":0.927899687,"x":300,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","light":0,"x":305,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","light":0,"x":310,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","light":0,"x":315,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","light":0,"x":320,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","light":0,"x":325,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":330,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","light":8.415614368,"x":335,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","light":658.4598726,"x":340,"y":90,"height":120,"rt":231,"gt":113,"bt":24},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","light":4220.142078,"x":345,"y":90,"height":120,"rt":101,"gt":50,"bt":154},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","light":6903.88786,"x":350,"y":90,"height":120,"rt":4,"gt":2,"bt":251},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","light":5751.176504,"x":355,"y":90,"height":120,"rt":45,"gt":22,"bt":210},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","light":5458.050045,"x":360,"y":90,"height":120,"rt":56,"gt":28,"bt":199},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","light":3822.87926,"x":365,"y":90,"height":120,"rt":116,"gt":57,"bt":139},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","light":2848.900441,"x":370,"y":90,"height":120,"rt":151,"gt":74,"bt":104},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","light":2480.006728,"x":375,"y":90,"height":120,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","light":1806.037967,"x":380,"y":90,"height":120,"rt":189,"gt":93,"bt":66},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","light":1370.567044,"x":385,"y":90,"height":120,"rt":205,"gt":101,"bt":50},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","light":1000.778919,"x":390,"y":90,"height":120,"rt":219,"gt":107,"bt":36},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","light":229.0054376,"x":395,"y":90,"height":120,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","light":4.029860639,"x":400,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","light":2.107483321,"x":405,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","light":1.885644075,"x":410,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","light":1.23908046,"x":415,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","light":1.286152162,"x":420,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","light":1.6,"x":425,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","light":1.634701697,"x":430,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","light":1.174825175,"x":435,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","light":1.174825175,"x":440,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","light":0.51816092,"x":445,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":450,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","light":5.906666667,"x":455,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","light":509.1715573,"x":460,"y":90,"height":120,"rt":236,"gt":116,"bt":19},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","light":1684.960219,"x":465,"y":90,"height":120,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","light":3790.406701,"x":470,"y":90,"height":120,"rt":117,"gt":57,"bt":138},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","light":5169.185469,"x":475,"y":90,"height":120,"rt":67,"gt":33,"bt":188},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","light":3473.38245,"x":480,"y":90,"height":120,"rt":128,"gt":63,"bt":127},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","light":5013.708596,"x":485,"y":90,"height":120,"rt":72,"gt":35,"bt":183},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","light":3120.993396,"x":490,"y":90,"height":120,"rt":141,"gt":69,"bt":114},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","light":2733.788642,"x":495,"y":90,"height":120,"rt":155,"gt":76,"bt":100},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","light":2821.711558,"x":500,"y":90,"height":120,"rt":152,"gt":75,"bt":103},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","light":2299.880018,"x":505,"y":90,"height":120,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","light":1192.773947,"x":510,"y":90,"height":120,"rt":212,"gt":104,"bt":43},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","light":317.2621811,"x":515,"y":90,"height":120,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","light":7.285306795,"x":520,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","light":2.587203601,"x":525,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","light":2.376095169,"x":530,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","light":1.012715022,"x":535,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","light":0.103448276,"x":540,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","light":0.463403263,"x":545,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","light":0,"x":550,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","light":0.774855331,"x":555,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","light":0.178343242,"x":560,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","light":0,"x":565,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":570,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","light":8.685243646,"x":575,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","light":706.4507904,"x":580,"y":90,"height":120,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","light":3878.796174,"x":585,"y":90,"height":120,"rt":114,"gt":56,"bt":141},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","light":5159.633124,"x":590,"y":90,"height":120,"rt":67,"gt":33,"bt":188},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","light":3880.599024,"x":595,"y":90,"height":120,"rt":114,"gt":56,"bt":141},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","light":4586.661849,"x":600,"y":90,"height":120,"rt":88,"gt":43,"bt":167},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","light":3407.629714,"x":605,"y":90,"height":120,"rt":131,"gt":64,"bt":124},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","light":3315.345277,"x":610,"y":90,"height":120,"rt":134,"gt":66,"bt":121},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","light":2998.671535,"x":615,"y":90,"height":120,"rt":146,"gt":71,"bt":109},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","light":2371.006412,"x":620,"y":90,"height":120,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","light":2663.831209,"x":625,"y":90,"height":120,"rt":158,"gt":77,"bt":97},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","light":1721.04685,"x":630,"y":90,"height":120,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","light":366.5794773,"x":635,"y":90,"height":120,"rt":242,"gt":118,"bt":13},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","light":15.30260047,"x":640,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","light":2.536091954,"x":645,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","light":2.03837963,"x":650,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","light":2.302083333,"x":655,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","light":2.449195402,"x":660,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","light":0.091375291,"x":665,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","light":0.003375934,"x":670,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","light":0.033997086,"x":675,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","light":0.038596491,"x":680,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","light":0.080701754,"x":685,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":690,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","light":1.737344431,"x":695,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","light":118.4966519,"x":700,"y":90,"height":120,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","light":424.6724134,"x":705,"y":90,"height":120,"rt":240,"gt":117,"bt":15},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","light":1103.500409,"x":710,"y":90,"height":120,"rt":215,"gt":105,"bt":40},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","light":1376.076841,"x":715,"y":90,"height":120,"rt":205,"gt":100,"bt":50},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","light":1514.763129,"x":720,"y":90,"height":120,"rt":200,"gt":98,"bt":55},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","light":1666.801281,"x":725,"y":90,"height":120,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","light":1550.497966,"x":730,"y":90,"height":120,"rt":199,"gt":97,"bt":56},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","light":1669.636999,"x":735,"y":90,"height":120,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","light":1313.525656,"x":740,"y":90,"height":120,"rt":207,"gt":102,"bt":48},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","light":899.4076646,"x":745,"y":90,"height":120,"rt":222,"gt":109,"bt":33},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","light":435.9298459,"x":750,"y":90,"height":120,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","light":145.00573,"x":755,"y":90,"height":120,"rt":250,"gt":122,"bt":5},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","light":18.60658183,"x":760,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","light":17.82808746,"x":765,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","light":15.90685692,"x":770,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","light":16.24676972,"x":775,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","light":8.636813317,"x":780,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","light":0.811478399,"x":785,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","light":0,"x":790,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","light":0.006704981,"x":795,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","light":0,"x":800,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","light":0,"x":805,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":810,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","light":5.177514994,"x":815,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","light":744.7450872,"x":820,"y":90,"height":120,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","light":2010.755039,"x":825,"y":90,"height":120,"rt":182,"gt":89,"bt":73},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","light":5968.047288,"x":830,"y":90,"height":120,"rt":38,"gt":18,"bt":217},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","light":6341.710574,"x":835,"y":90,"height":120,"rt":24,"gt":12,"bt":231},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","light":4345.093823,"x":840,"y":90,"height":120,"rt":97,"gt":47,"bt":158},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","light":3961.919883,"x":845,"y":90,"height":120,"rt":111,"gt":54,"bt":144},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","light":3332.668801,"x":850,"y":90,"height":120,"rt":134,"gt":65,"bt":121},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","light":2923.758822,"x":855,"y":90,"height":120,"rt":148,"gt":73,"bt":107},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","light":2150.795283,"x":860,"y":90,"height":120,"rt":177,"gt":87,"bt":78},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","light":1887.697147,"x":865,"y":90,"height":120,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","light":1599.342824,"x":870,"y":90,"height":120,"rt":197,"gt":96,"bt":58},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","light":353.5960366,"x":875,"y":90,"height":120,"rt":242,"gt":119,"bt":13},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","light":13.81211547,"x":880,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","light":5.826760563,"x":885,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Rio de Janeiro","light":5.77037037,"x":890,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Rio de Janeiro","light":2.912783473,"x":895,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Rio de Janeiro","light":1.033103448,"x":900,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Rio de Janeiro","light":0,"x":905,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Rio de Janeiro","light":0,"x":910,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Rio de Janeiro","light":0.433797995,"x":915,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Rio de Janeiro","light":0.277003567,"x":920,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Rio de Janeiro","light":0,"x":925,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Rio de Janeiro","light":0,"x":930,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Rio de Janeiro","light":9.841854219,"x":935,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Rio de Janeiro","light":1364.225945,"x":940,"y":90,"height":120,"rt":205,"gt":101,"bt":50},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Rio de Janeiro","light":3657.633059,"x":945,"y":90,"height":120,"rt":122,"gt":60,"bt":133},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Rio de Janeiro","light":3988.664909,"x":950,"y":90,"height":120,"rt":110,"gt":54,"bt":145},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Rio de Janeiro","light":5664.326447,"x":955,"y":90,"height":120,"rt":49,"gt":24,"bt":206},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Rio de Janeiro","light":5333.296113,"x":960,"y":90,"height":120,"rt":61,"gt":30,"bt":194},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Rio de Janeiro","light":4414.0108,"x":965,"y":90,"height":120,"rt":94,"gt":46,"bt":161},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Rio de Janeiro","light":3271.812726,"x":970,"y":90,"height":120,"rt":136,"gt":67,"bt":119},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Rio de Janeiro","light":2830.163927,"x":975,"y":90,"height":120,"rt":152,"gt":74,"bt":103},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Rio de Janeiro","light":2564.766941,"x":980,"y":90,"height":120,"rt":162,"gt":79,"bt":93},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Rio de Janeiro","light":1974.121541,"x":985,"y":90,"height":120,"rt":183,"gt":90,"bt":72},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Rio de Janeiro","light":929.3193476,"x":990,"y":90,"height":120,"rt":221,"gt":108,"bt":34},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Rio de Janeiro","light":308.3773272,"x":995,"y":90,"height":120,"rt":244,"gt":119,"bt":11},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Rio de Janeiro","light":18.8914163,"x":1000,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Rio de Janeiro","light":17.04364578,"x":1005,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Rio de Janeiro","light":17.0838357,"x":1010,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Rio de Janeiro","light":15.87940547,"x":1015,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Rio de Janeiro","light":15.33725723,"x":1020,"y":90,"height":120,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Rio de Janeiro","light":5.65625,"x":1025,"y":90,"height":120,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"San Francisco","light":1.325921522,"x":200,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"San Francisco","light":1.142829154,"x":205,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"San Francisco","light":0.744565437,"x":210,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"San Francisco","light":0.552765498,"x":215,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"San Francisco","light":0.483868411,"x":220,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"San Francisco","light":0.371264368,"x":225,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"San Francisco","light":0.461107628,"x":230,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"San Francisco","light":0.451694153,"x":235,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"San Francisco","light":0.945799631,"x":240,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"San Francisco","light":219.6764542,"x":245,"y":120,"height":150,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"San Francisco","light":1324.78301,"x":250,"y":120,"height":150,"rt":207,"gt":101,"bt":48},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"San Francisco","light":2382.520386,"x":255,"y":120,"height":150,"rt":168,"gt":82,"bt":87},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"San Francisco","light":2651.867735,"x":260,"y":120,"height":150,"rt":158,"gt":78,"bt":97},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"San Francisco","light":3375.515557,"x":265,"y":120,"height":150,"rt":132,"gt":65,"bt":123},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"San Francisco","light":3893.368039,"x":270,"y":120,"height":150,"rt":113,"gt":55,"bt":142},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"San Francisco","light":6017.669151,"x":275,"y":120,"height":150,"rt":36,"gt":18,"bt":219},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"San Francisco","light":4108.602565,"x":280,"y":120,"height":150,"rt":105,"gt":52,"bt":150},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"San Francisco","light":3373.874979,"x":285,"y":120,"height":150,"rt":132,"gt":65,"bt":123},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"San Francisco","light":2309.76802,"x":290,"y":120,"height":150,"rt":171,"gt":84,"bt":84},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"San Francisco","light":950.0901141,"x":295,"y":120,"height":150,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"San Francisco","light":250.8111059,"x":300,"y":120,"height":150,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"San Francisco","light":17.89776082,"x":305,"y":120,"height":150,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"San Francisco","light":1.46835249,"x":310,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"San Francisco","light":1.351867816,"x":315,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"San Francisco","light":1.265411921,"x":320,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"San Francisco","light":1.362466298,"x":325,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"San Francisco","light":0.622601973,"x":330,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"San Francisco","light":0.165320758,"x":335,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"San Francisco","light":0.120758424,"x":340,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"San Francisco","light":0.028825587,"x":345,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"San Francisco","light":0.016231884,"x":350,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"San Francisco","light":0.021165994,"x":355,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"San Francisco","light":0.032098765,"x":360,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"San Francisco","light":212.7551031,"x":365,"y":120,"height":150,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"San Francisco","light":1378.236419,"x":370,"y":120,"height":150,"rt":205,"gt":100,"bt":50},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"San Francisco","light":2600.535408,"x":375,"y":120,"height":150,"rt":160,"gt":79,"bt":95},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"San Francisco","light":3016.477413,"x":380,"y":120,"height":150,"rt":145,"gt":71,"bt":110},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"San Francisco","light":3623.283749,"x":385,"y":120,"height":150,"rt":123,"gt":60,"bt":132},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"San Francisco","light":3945.333895,"x":390,"y":120,"height":150,"rt":111,"gt":55,"bt":144},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"San Francisco","light":5523.637164,"x":395,"y":120,"height":150,"rt":54,"gt":26,"bt":201},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"San Francisco","light":7014.970719,"x":400,"y":120,"height":150,"rt":-1,"gt":0,"bt":256},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"San Francisco","light":5728.466471,"x":405,"y":120,"height":150,"rt":46,"gt":23,"bt":209},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"San Francisco","light":3427.805714,"x":410,"y":120,"height":150,"rt":130,"gt":64,"bt":125},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"San Francisco","light":1736.494864,"x":415,"y":120,"height":150,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"San Francisco","light":591.4795702,"x":420,"y":120,"height":150,"rt":233,"gt":114,"bt":22},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"San Francisco","light":22.29279378,"x":425,"y":120,"height":150,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"San Francisco","light":1.68,"x":430,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"San Francisco","light":1.3846671,"x":435,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"San Francisco","light":0.98019762,"x":440,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"San Francisco","light":1.080009564,"x":445,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"San Francisco","light":0.734453286,"x":450,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"San Francisco","light":0.722458771,"x":455,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"San Francisco","light":0.758213813,"x":460,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"San Francisco","light":0.422203305,"x":465,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"San Francisco","light":0.317241379,"x":470,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"San Francisco","light":0.329565484,"x":475,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"San Francisco","light":0.337231384,"x":480,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"San Francisco","light":155.2686302,"x":485,"y":120,"height":150,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"San Francisco","light":1136.798063,"x":490,"y":120,"height":150,"rt":214,"gt":105,"bt":41},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"San Francisco","light":1452.054321,"x":495,"y":120,"height":150,"rt":202,"gt":99,"bt":53},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"San Francisco","light":2553.497953,"x":500,"y":120,"height":150,"rt":162,"gt":79,"bt":93},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"San Francisco","light":3297.091357,"x":505,"y":120,"height":150,"rt":135,"gt":66,"bt":120},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"San Francisco","light":3870.330523,"x":510,"y":120,"height":150,"rt":114,"gt":56,"bt":141},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"San Francisco","light":5622.093041,"x":515,"y":120,"height":150,"rt":50,"gt":25,"bt":205},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"San Francisco","light":5028.789367,"x":520,"y":120,"height":150,"rt":72,"gt":35,"bt":183},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"San Francisco","light":5425.752614,"x":525,"y":120,"height":150,"rt":57,"gt":28,"bt":198},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"San Francisco","light":4439.213434,"x":530,"y":120,"height":150,"rt":93,"gt":46,"bt":162},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"San Francisco","light":2060.019873,"x":535,"y":120,"height":150,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"San Francisco","light":634.4866435,"x":540,"y":120,"height":150,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"San Francisco","light":26.4618933,"x":545,"y":120,"height":150,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"San Francisco","light":1.070035279,"x":550,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"San Francisco","light":0.2889811,"x":555,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"San Francisco","light":0.261653579,"x":560,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"San Francisco","light":0.137547893,"x":565,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"San Francisco","light":0.008184701,"x":570,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"San Francisco","light":0.020151515,"x":575,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"San Francisco","light":0.008328292,"x":580,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"San Francisco","light":0,"x":585,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"San Francisco","light":0.03561874,"x":590,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"San Francisco","light":0.012346413,"x":595,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"San Francisco","light":0.118995765,"x":600,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"San Francisco","light":95.06057989,"x":605,"y":120,"height":150,"rt":252,"gt":123,"bt":3},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"San Francisco","light":634.423354,"x":610,"y":120,"height":150,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"San Francisco","light":1395.289493,"x":615,"y":120,"height":150,"rt":204,"gt":100,"bt":51},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"San Francisco","light":2127.172606,"x":620,"y":120,"height":150,"rt":178,"gt":87,"bt":77},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"San Francisco","light":2682.645274,"x":625,"y":120,"height":150,"rt":157,"gt":77,"bt":98},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"San Francisco","light":2759.0224,"x":630,"y":120,"height":150,"rt":154,"gt":76,"bt":101},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"San Francisco","light":3098.205037,"x":635,"y":120,"height":150,"rt":142,"gt":70,"bt":113},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"San Francisco","light":2651.039929,"x":640,"y":120,"height":150,"rt":158,"gt":78,"bt":97},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"San Francisco","light":1552.860483,"x":645,"y":120,"height":150,"rt":198,"gt":97,"bt":57},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"San Francisco","light":1076.255112,"x":650,"y":120,"height":150,"rt":216,"gt":106,"bt":39},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"San Francisco","light":637.2748074,"x":655,"y":120,"height":150,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"San Francisco","light":182.4001838,"x":660,"y":120,"height":150,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"San Francisco","light":9.510825271,"x":665,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"San Francisco","light":1.658605953,"x":670,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"San Francisco","light":1.09531555,"x":675,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"San Francisco","light":0.911671088,"x":680,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"San Francisco","light":0.899119809,"x":685,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"San Francisco","light":0.246634566,"x":690,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"San Francisco","light":0.176502899,"x":695,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"San Francisco","light":0.040436192,"x":700,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"San Francisco","light":0.031264368,"x":705,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"San Francisco","light":0.098016484,"x":710,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"San Francisco","light":0.082007073,"x":715,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"San Francisco","light":0.445065755,"x":720,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"San Francisco","light":192.6962019,"x":725,"y":120,"height":150,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"San Francisco","light":1137.798959,"x":730,"y":120,"height":150,"rt":214,"gt":105,"bt":41},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"San Francisco","light":2548.259511,"x":735,"y":120,"height":150,"rt":162,"gt":79,"bt":93},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"San Francisco","light":2658.740466,"x":740,"y":120,"height":150,"rt":158,"gt":78,"bt":97},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"San Francisco","light":3209.049608,"x":745,"y":120,"height":150,"rt":138,"gt":68,"bt":117},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"San Francisco","light":3918.38907,"x":750,"y":120,"height":150,"rt":112,"gt":55,"bt":143},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"San Francisco","light":6269.895248,"x":755,"y":120,"height":150,"rt":27,"gt":13,"bt":228},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"San Francisco","light":6549.980291,"x":760,"y":120,"height":150,"rt":16,"gt":8,"bt":239},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"San Francisco","light":5991.497017,"x":765,"y":120,"height":150,"rt":37,"gt":18,"bt":218},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"San Francisco","light":4465.063891,"x":770,"y":120,"height":150,"rt":92,"gt":45,"bt":163},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"San Francisco","light":2067.0914,"x":775,"y":120,"height":150,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"San Francisco","light":645.6057597,"x":780,"y":120,"height":150,"rt":231,"gt":113,"bt":24},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"San Francisco","light":58.92733094,"x":785,"y":120,"height":150,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"San Francisco","light":1.60282567,"x":790,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"San Francisco","light":1.519376026,"x":795,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"San Francisco","light":0.831095785,"x":800,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"San Francisco","light":0.783993984,"x":805,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"San Francisco","light":0.10003396,"x":810,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"San Francisco","light":0.050431034,"x":815,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"San Francisco","light":0.070918523,"x":820,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"San Francisco","light":0.009108653,"x":825,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"San Francisco","light":0.033163418,"x":830,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"San Francisco","light":0.045735027,"x":835,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"San Francisco","light":0.590971181,"x":840,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"San Francisco","light":290.9537586,"x":845,"y":120,"height":150,"rt":244,"gt":120,"bt":11},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"San Francisco","light":1616.755815,"x":850,"y":120,"height":150,"rt":196,"gt":96,"bt":59},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"San Francisco","light":2481.694798,"x":855,"y":120,"height":150,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"San Francisco","light":2974.249459,"x":860,"y":120,"height":150,"rt":147,"gt":72,"bt":108},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"San Francisco","light":3389.613535,"x":865,"y":120,"height":150,"rt":132,"gt":64,"bt":123},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"San Francisco","light":4204.559903,"x":870,"y":120,"height":150,"rt":102,"gt":50,"bt":153},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"San Francisco","light":5986.912383,"x":875,"y":120,"height":150,"rt":37,"gt":18,"bt":218},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"San Francisco","light":5859.547874,"x":880,"y":120,"height":150,"rt":42,"gt":20,"bt":213},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"San Francisco","light":4462.533945,"x":885,"y":120,"height":150,"rt":92,"gt":45,"bt":163},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"San Francisco","light":4199.916274,"x":890,"y":120,"height":150,"rt":102,"gt":50,"bt":153},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"San Francisco","light":2046.104709,"x":895,"y":120,"height":150,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"San Francisco","light":739.9127631,"x":900,"y":120,"height":150,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"San Francisco","light":61.34946546,"x":905,"y":120,"height":150,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"San Francisco","light":0.955244705,"x":910,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"San Francisco","light":0.613180077,"x":915,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"San Francisco","light":0.462179487,"x":920,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"San Francisco","light":0.344492802,"x":925,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"San Francisco","light":0.129905956,"x":930,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"San Francisco","light":0.026168402,"x":935,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"San Francisco","light":0.053030303,"x":940,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"San Francisco","light":0,"x":945,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"San Francisco","light":0.136629798,"x":950,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"San Francisco","light":0.065420561,"x":955,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"San Francisco","light":0.630119612,"x":960,"y":120,"height":150,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"San Francisco","light":344.041978,"x":965,"y":120,"height":150,"rt":242,"gt":119,"bt":13},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"San Francisco","light":1712.016103,"x":970,"y":120,"height":150,"rt":193,"gt":94,"bt":62},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"San Francisco","light":2555.745217,"x":975,"y":120,"height":150,"rt":162,"gt":79,"bt":93},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"San Francisco","light":3033.148595,"x":980,"y":120,"height":150,"rt":145,"gt":71,"bt":110},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"San Francisco","light":3640.533652,"x":985,"y":120,"height":150,"rt":122,"gt":60,"bt":133},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"San Francisco","light":4143.88532,"x":990,"y":120,"height":150,"rt":104,"gt":51,"bt":151},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"San Francisco","light":5189.856995,"x":995,"y":120,"height":150,"rt":66,"gt":32,"bt":189},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"San Francisco","light":6077.551147,"x":1000,"y":120,"height":150,"rt":34,"gt":16,"bt":221},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"San Francisco","light":6357.838791,"x":1005,"y":120,"height":150,"rt":23,"gt":11,"bt":232},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"San Francisco","light":5016.833691,"x":1010,"y":120,"height":150,"rt":72,"gt":35,"bt":183},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"San Francisco","light":2120.495321,"x":1015,"y":120,"height":150,"rt":178,"gt":87,"bt":77},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"San Francisco","light":755.5613802,"x":1020,"y":120,"height":150,"rt":227,"gt":112,"bt":28},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"San Francisco","light":149.2263748,"x":1025,"y":120,"height":150,"rt":250,"gt":122,"bt":5},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Shanghai","light":2799.797982,"x":200,"y":150,"height":180,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Shanghai","light":1725.708311,"x":205,"y":150,"height":180,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Shanghai","light":949.4451704,"x":210,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Shanghai","light":494.9880201,"x":215,"y":150,"height":180,"rt":237,"gt":116,"bt":18},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Shanghai","light":129.0786008,"x":220,"y":150,"height":180,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Shanghai","light":2.804301318,"x":225,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Shanghai","light":0.791177959,"x":230,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Shanghai","light":0.701288088,"x":235,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Shanghai","light":0.861671271,"x":240,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Shanghai","light":0,"x":245,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Shanghai","light":0,"x":250,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Shanghai","light":0,"x":255,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Shanghai","light":0,"x":260,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Shanghai","light":0,"x":265,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Shanghai","light":0,"x":270,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Shanghai","light":0,"x":275,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Shanghai","light":0.640762299,"x":280,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Shanghai","light":123.5571651,"x":285,"y":150,"height":180,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Shanghai","light":557.6066758,"x":290,"y":150,"height":180,"rt":235,"gt":115,"bt":20},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Shanghai","light":976.2512368,"x":295,"y":150,"height":180,"rt":219,"gt":108,"bt":36},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Shanghai","light":1095.824367,"x":300,"y":150,"height":180,"rt":215,"gt":105,"bt":40},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Shanghai","light":941.6935481,"x":305,"y":150,"height":180,"rt":221,"gt":108,"bt":34},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Shanghai","light":895.7434562,"x":310,"y":150,"height":180,"rt":222,"gt":109,"bt":33},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Shanghai","light":748.4790276,"x":315,"y":150,"height":180,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Shanghai","light":697.5959057,"x":320,"y":150,"height":180,"rt":230,"gt":113,"bt":25},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Shanghai","light":334.9555383,"x":325,"y":150,"height":180,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Shanghai","light":241.8617306,"x":330,"y":150,"height":180,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Shanghai","light":113.0704443,"x":335,"y":150,"height":180,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Shanghai","light":25.62588011,"x":340,"y":150,"height":180,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Shanghai","light":2.082742046,"x":345,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Shanghai","light":2.017167862,"x":350,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Shanghai","light":1.236376112,"x":355,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Shanghai","light":0.809450041,"x":360,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Shanghai","light":0.808060845,"x":365,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Shanghai","light":0.330180594,"x":370,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Shanghai","light":0,"x":375,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Shanghai","light":0,"x":380,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Shanghai","light":0,"x":385,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Shanghai","light":0,"x":390,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Shanghai","light":0,"x":395,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Shanghai","light":0.37890175,"x":400,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Shanghai","light":34.51753145,"x":405,"y":150,"height":180,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Shanghai","light":126.1922038,"x":410,"y":150,"height":180,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Shanghai","light":279.9955403,"x":415,"y":150,"height":180,"rt":245,"gt":120,"bt":10},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Shanghai","light":341.1072073,"x":420,"y":150,"height":180,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Shanghai","light":646.6691547,"x":425,"y":150,"height":180,"rt":231,"gt":113,"bt":24},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Shanghai","light":617.660216,"x":430,"y":150,"height":180,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Shanghai","light":617.7224554,"x":435,"y":150,"height":180,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Shanghai","light":689.2373332,"x":440,"y":150,"height":180,"rt":230,"gt":113,"bt":25},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Shanghai","light":380.6860812,"x":445,"y":150,"height":180,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Shanghai","light":378.0330542,"x":450,"y":150,"height":180,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Shanghai","light":184.7306745,"x":455,"y":150,"height":180,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Shanghai","light":36.92997469,"x":460,"y":150,"height":180,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Shanghai","light":1.354055483,"x":465,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Shanghai","light":0.813479798,"x":470,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Shanghai","light":0.745186202,"x":475,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Shanghai","light":0.660055276,"x":480,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Shanghai","light":0,"x":485,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Shanghai","light":0,"x":490,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Shanghai","light":0,"x":495,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Shanghai","light":0,"x":500,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Shanghai","light":0,"x":505,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Shanghai","light":0,"x":510,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Shanghai","light":0,"x":515,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Shanghai","light":0.004022989,"x":520,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Shanghai","light":20.68325497,"x":525,"y":150,"height":180,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Shanghai","light":242.7697903,"x":530,"y":150,"height":180,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Shanghai","light":565.2461069,"x":535,"y":150,"height":180,"rt":234,"gt":115,"bt":21},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Shanghai","light":642.6495574,"x":540,"y":150,"height":180,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Shanghai","light":966.4331424,"x":545,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Shanghai","light":978.4919441,"x":550,"y":150,"height":180,"rt":219,"gt":108,"bt":36},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Shanghai","light":1150.603173,"x":555,"y":150,"height":180,"rt":213,"gt":104,"bt":42},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Shanghai","light":1177.286504,"x":560,"y":150,"height":180,"rt":212,"gt":104,"bt":43},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Shanghai","light":1076.770528,"x":565,"y":150,"height":180,"rt":216,"gt":106,"bt":39},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Shanghai","light":887.1116291,"x":570,"y":150,"height":180,"rt":223,"gt":109,"bt":32},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Shanghai","light":428.4127906,"x":575,"y":150,"height":180,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Shanghai","light":89.06996864,"x":580,"y":150,"height":180,"rt":252,"gt":123,"bt":3},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Shanghai","light":2.9767156,"x":585,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Shanghai","light":1.213370003,"x":590,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Shanghai","light":1.168165188,"x":595,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Shanghai","light":1.01003758,"x":600,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Shanghai","light":0.723772225,"x":605,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Shanghai","light":0.585983666,"x":610,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Shanghai","light":0.592918531,"x":615,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Shanghai","light":0.384506781,"x":620,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Shanghai","light":0,"x":625,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Shanghai","light":0,"x":630,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Shanghai","light":0,"x":635,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Shanghai","light":0.70896254,"x":640,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Shanghai","light":76.1327816,"x":645,"y":150,"height":180,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Shanghai","light":380.2583573,"x":650,"y":150,"height":180,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Shanghai","light":960.9890572,"x":655,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Shanghai","light":1488.155516,"x":660,"y":150,"height":180,"rt":201,"gt":98,"bt":54},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Shanghai","light":3102.808658,"x":665,"y":150,"height":180,"rt":142,"gt":70,"bt":113},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Shanghai","light":3747.786764,"x":670,"y":150,"height":180,"rt":118,"gt":58,"bt":137},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Shanghai","light":3570.326938,"x":675,"y":150,"height":180,"rt":125,"gt":61,"bt":130},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Shanghai","light":3183.19597,"x":680,"y":150,"height":180,"rt":139,"gt":68,"bt":116},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Shanghai","light":2523.240737,"x":685,"y":150,"height":180,"rt":163,"gt":80,"bt":92},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Shanghai","light":1529.082757,"x":690,"y":150,"height":180,"rt":199,"gt":98,"bt":56},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Shanghai","light":563.1821988,"x":695,"y":150,"height":180,"rt":234,"gt":115,"bt":21},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Shanghai","light":103.7291198,"x":700,"y":150,"height":180,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Shanghai","light":2.153119293,"x":705,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Shanghai","light":0.842037528,"x":710,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Shanghai","light":0.70293656,"x":715,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Shanghai","light":0.615536015,"x":720,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Shanghai","light":0.274457216,"x":725,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Shanghai","light":0.211989144,"x":730,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Shanghai","light":0.033317144,"x":735,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Shanghai","light":0.351872127,"x":740,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Shanghai","light":0.136081959,"x":745,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Shanghai","light":0,"x":750,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Shanghai","light":0,"x":755,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Shanghai","light":0.510883621,"x":760,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Shanghai","light":27.28354626,"x":765,"y":150,"height":180,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Shanghai","light":131.3425165,"x":770,"y":150,"height":180,"rt":250,"gt":123,"bt":5},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Shanghai","light":325.7136877,"x":775,"y":150,"height":180,"rt":243,"gt":119,"bt":12},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Shanghai","light":604.5075404,"x":780,"y":150,"height":180,"rt":233,"gt":114,"bt":22},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Shanghai","light":952.3184274,"x":785,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Shanghai","light":1658.120318,"x":790,"y":150,"height":180,"rt":195,"gt":95,"bt":60},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Shanghai","light":1628.18435,"x":795,"y":150,"height":180,"rt":196,"gt":96,"bt":59},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Shanghai","light":1646.876399,"x":800,"y":150,"height":180,"rt":195,"gt":96,"bt":60},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Shanghai","light":989.5433225,"x":805,"y":150,"height":180,"rt":219,"gt":107,"bt":36},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Shanghai","light":569.3008409,"x":810,"y":150,"height":180,"rt":234,"gt":115,"bt":21},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Shanghai","light":184.5454478,"x":815,"y":150,"height":180,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Shanghai","light":61.01821625,"x":820,"y":150,"height":180,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Shanghai","light":1.090095785,"x":825,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Shanghai","light":0,"x":830,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Shanghai","light":1.024701159,"x":835,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Shanghai","light":0.398368298,"x":840,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Shanghai","light":0,"x":845,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Shanghai","light":0,"x":850,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Shanghai","light":0,"x":855,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Shanghai","light":0,"x":860,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Shanghai","light":0,"x":865,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Shanghai","light":0,"x":870,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Shanghai","light":0,"x":875,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Shanghai","light":0.794937307,"x":880,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Shanghai","light":76.75059466,"x":885,"y":150,"height":180,"rt":252,"gt":124,"bt":3},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Shanghai","light":436.3768234,"x":890,"y":150,"height":180,"rt":239,"gt":117,"bt":16},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Shanghai","light":947.8035361,"x":895,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Shanghai","light":1642.41268,"x":900,"y":150,"height":180,"rt":195,"gt":96,"bt":60},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Shanghai","light":2799.334448,"x":905,"y":150,"height":180,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Shanghai","light":4159.505975,"x":910,"y":150,"height":180,"rt":103,"gt":51,"bt":152},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Shanghai","light":5257.736795,"x":915,"y":150,"height":180,"rt":63,"gt":31,"bt":192},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Shanghai","light":3605.93206,"x":920,"y":150,"height":180,"rt":124,"gt":61,"bt":131},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Shanghai","light":2219.296875,"x":925,"y":150,"height":180,"rt":174,"gt":85,"bt":81},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Shanghai","light":2193.748151,"x":930,"y":150,"height":180,"rt":175,"gt":86,"bt":80},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Shanghai","light":948.0330628,"x":935,"y":150,"height":180,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Shanghai","light":172.9036944,"x":940,"y":150,"height":180,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Shanghai","light":3.133142106,"x":945,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Shanghai","light":0.038916167,"x":950,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Shanghai","light":0,"x":955,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Shanghai","light":0.096551724,"x":960,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Shanghai","light":0,"x":965,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Shanghai","light":0,"x":970,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Shanghai","light":0,"x":975,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Shanghai","light":0,"x":980,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Shanghai","light":0,"x":985,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Shanghai","light":0,"x":990,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Shanghai","light":0,"x":995,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Shanghai","light":0.245732955,"x":1000,"y":150,"height":180,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Shanghai","light":54.07899335,"x":1005,"y":150,"height":180,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Shanghai","light":145.4460304,"x":1010,"y":150,"height":180,"rt":250,"gt":122,"bt":5},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Shanghai","light":165.1258451,"x":1015,"y":150,"height":180,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Shanghai","light":374.3689816,"x":1020,"y":150,"height":180,"rt":241,"gt":118,"bt":14},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Shanghai","light":653.7198529,"x":1025,"y":150,"height":180,"rt":231,"gt":113,"bt":24},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Singapore","light":2473.958818,"x":200,"y":180,"height":210,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Singapore","light":2786.806996,"x":205,"y":180,"height":210,"rt":153,"gt":75,"bt":102},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Singapore","light":2113.803798,"x":210,"y":180,"height":210,"rt":178,"gt":87,"bt":77},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Singapore","light":1504.77619,"x":215,"y":180,"height":210,"rt":200,"gt":98,"bt":55},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Singapore","light":828.3142865,"x":220,"y":180,"height":210,"rt":225,"gt":110,"bt":30},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Singapore","light":472.4498963,"x":225,"y":180,"height":210,"rt":238,"gt":117,"bt":17},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Singapore","light":22.02852043,"x":230,"y":180,"height":210,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Singapore","light":0,"x":235,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Singapore","light":0.474666667,"x":240,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Singapore","light":0.599847667,"x":245,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Singapore","light":0.002651515,"x":250,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Singapore","light":0.080555556,"x":255,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Singapore","light":0,"x":260,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Singapore","light":0,"x":265,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Singapore","light":0,"x":270,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Singapore","light":0,"x":275,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Singapore","light":0,"x":280,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Singapore","light":0.139750446,"x":285,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Singapore","light":236.1585458,"x":290,"y":180,"height":210,"rt":246,"gt":121,"bt":9},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Singapore","light":1202.024676,"x":295,"y":180,"height":210,"rt":211,"gt":104,"bt":44},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Singapore","light":1685.795906,"x":300,"y":180,"height":210,"rt":194,"gt":95,"bt":61},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Singapore","light":2614.792506,"x":305,"y":180,"height":210,"rt":160,"gt":78,"bt":95},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Singapore","light":2696.179277,"x":310,"y":180,"height":210,"rt":157,"gt":77,"bt":98},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Singapore","light":2456.151969,"x":315,"y":180,"height":210,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Singapore","light":2404.46469,"x":320,"y":180,"height":210,"rt":167,"gt":82,"bt":88},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Singapore","light":2443.762032,"x":325,"y":180,"height":210,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Singapore","light":1582.743964,"x":330,"y":180,"height":210,"rt":197,"gt":97,"bt":58},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Singapore","light":933.6393602,"x":335,"y":180,"height":210,"rt":221,"gt":108,"bt":34},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Singapore","light":402.9698234,"x":340,"y":180,"height":210,"rt":240,"gt":118,"bt":15},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Singapore","light":43.38824903,"x":345,"y":180,"height":210,"rt":253,"gt":124,"bt":2},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Singapore","light":3.417663291,"x":350,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Singapore","light":0.005907173,"x":355,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Singapore","light":0.002794411,"x":360,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Singapore","light":0,"x":365,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Singapore","light":0.039121756,"x":370,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Singapore","light":0.544946237,"x":375,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Singapore","light":0.005555556,"x":380,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Singapore","light":0,"x":385,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Singapore","light":0,"x":390,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Singapore","light":0,"x":395,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Singapore","light":0,"x":400,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Singapore","light":0.028113332,"x":405,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Singapore","light":99.12098053,"x":410,"y":180,"height":210,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Singapore","light":561.7320376,"x":415,"y":180,"height":210,"rt":235,"gt":115,"bt":20},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Singapore","light":1053.095632,"x":420,"y":180,"height":210,"rt":217,"gt":106,"bt":38},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Singapore","light":1566.423537,"x":425,"y":180,"height":210,"rt":198,"gt":97,"bt":57},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Singapore","light":1904.287584,"x":430,"y":180,"height":210,"rt":186,"gt":91,"bt":69},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Singapore","light":2181.741207,"x":435,"y":180,"height":210,"rt":176,"gt":86,"bt":79},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Singapore","light":2089.362603,"x":440,"y":180,"height":210,"rt":179,"gt":88,"bt":76},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Singapore","light":2727.933364,"x":445,"y":180,"height":210,"rt":156,"gt":76,"bt":99},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Singapore","light":1538.63538,"x":450,"y":180,"height":210,"rt":199,"gt":98,"bt":56},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Singapore","light":2336.237969,"x":455,"y":180,"height":210,"rt":170,"gt":83,"bt":85},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Singapore","light":620.2023426,"x":460,"y":180,"height":210,"rt":232,"gt":114,"bt":23},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Singapore","light":189.4885525,"x":465,"y":180,"height":210,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Singapore","light":10.32681856,"x":470,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Singapore","light":1.070063694,"x":475,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Singapore","light":1.027333894,"x":480,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Singapore","light":1.070063694,"x":485,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Singapore","light":1,"x":490,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Singapore","light":1.070063694,"x":495,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Singapore","light":1.005988024,"x":500,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Singapore","light":1.076923077,"x":505,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Singapore","light":1.005988024,"x":510,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Singapore","light":1.076923077,"x":515,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Singapore","light":1.018181818,"x":520,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Singapore","light":1.066983122,"x":525,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Singapore","light":121.0247294,"x":530,"y":180,"height":210,"rt":251,"gt":123,"bt":4},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Singapore","light":705.6833641,"x":535,"y":180,"height":210,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Singapore","light":1110.580253,"x":540,"y":180,"height":210,"rt":215,"gt":105,"bt":40},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Singapore","light":1341.172304,"x":545,"y":180,"height":210,"rt":206,"gt":101,"bt":49},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Singapore","light":1702.245942,"x":550,"y":180,"height":210,"rt":193,"gt":95,"bt":62},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Singapore","light":1961.580201,"x":555,"y":180,"height":210,"rt":184,"gt":90,"bt":71},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Singapore","light":1870.306937,"x":560,"y":180,"height":210,"rt":187,"gt":92,"bt":68},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Singapore","light":2290.775466,"x":565,"y":180,"height":210,"rt":172,"gt":84,"bt":83},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Singapore","light":1259.16756,"x":570,"y":180,"height":210,"rt":209,"gt":103,"bt":46},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Singapore","light":1003.393268,"x":575,"y":180,"height":210,"rt":218,"gt":107,"bt":37},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Singapore","light":724.2833967,"x":580,"y":180,"height":210,"rt":229,"gt":112,"bt":26},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Singapore","light":291.2846679,"x":585,"y":180,"height":210,"rt":244,"gt":120,"bt":11},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Singapore","light":28.15217742,"x":590,"y":180,"height":210,"rt":254,"gt":124,"bt":1},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Singapore","light":1.083870968,"x":595,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Singapore","light":1.005988024,"x":600,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Singapore","light":1.090909091,"x":605,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Singapore","light":1.005988024,"x":610,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Singapore","light":1.070063694,"x":615,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Singapore","light":1,"x":620,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Singapore","light":0.082700422,"x":625,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Singapore","light":0.936144578,"x":630,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Singapore","light":1.076923077,"x":635,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Singapore","light":1.018181818,"x":640,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Singapore","light":1.489112388,"x":645,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Singapore","light":164.321412,"x":650,"y":180,"height":210,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Singapore","light":676.7150387,"x":655,"y":180,"height":210,"rt":230,"gt":113,"bt":25},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Singapore","light":1105.992647,"x":660,"y":180,"height":210,"rt":215,"gt":105,"bt":40},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Singapore","light":1552.396681,"x":665,"y":180,"height":210,"rt":198,"gt":97,"bt":57},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Singapore","light":1820.860531,"x":670,"y":180,"height":210,"rt":189,"gt":92,"bt":66},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Singapore","light":1869.026114,"x":675,"y":180,"height":210,"rt":187,"gt":92,"bt":68},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Singapore","light":2020.332412,"x":680,"y":180,"height":210,"rt":181,"gt":89,"bt":74},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Singapore","light":2064.222917,"x":685,"y":180,"height":210,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Singapore","light":2198.837925,"x":690,"y":180,"height":210,"rt":175,"gt":86,"bt":80},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Singapore","light":1199.166733,"x":695,"y":180,"height":210,"rt":211,"gt":104,"bt":44},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Singapore","light":1206.001325,"x":700,"y":180,"height":210,"rt":211,"gt":103,"bt":44},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Singapore","light":195.6589152,"x":705,"y":180,"height":210,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Singapore","light":19.06297941,"x":710,"y":180,"height":210,"rt":254,"gt":125,"bt":1},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Singapore","light":8.1625302,"x":715,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Singapore","light":7.938015655,"x":720,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Singapore","light":8.646373365,"x":725,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Singapore","light":8.671712394,"x":730,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Singapore","light":7.949721913,"x":735,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Singapore","light":6.609746803,"x":740,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Singapore","light":7.059171598,"x":745,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Singapore","light":3.879021383,"x":750,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Singapore","light":0,"x":755,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Singapore","light":0,"x":760,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Singapore","light":0.400851806,"x":765,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Singapore","light":183.4959189,"x":770,"y":180,"height":210,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Singapore","light":980.2300559,"x":775,"y":180,"height":210,"rt":219,"gt":107,"bt":36},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Singapore","light":1715.991128,"x":780,"y":180,"height":210,"rt":192,"gt":94,"bt":63},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Singapore","light":2429.588027,"x":785,"y":180,"height":210,"rt":166,"gt":82,"bt":89},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Singapore","light":2569.643141,"x":790,"y":180,"height":210,"rt":161,"gt":79,"bt":94},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Singapore","light":2441.964131,"x":795,"y":180,"height":210,"rt":166,"gt":81,"bt":89},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Singapore","light":2351.441764,"x":800,"y":180,"height":210,"rt":169,"gt":83,"bt":86},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Singapore","light":2692.793344,"x":805,"y":180,"height":210,"rt":157,"gt":77,"bt":98},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Singapore","light":2494.031739,"x":810,"y":180,"height":210,"rt":164,"gt":80,"bt":91},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Singapore","light":958.367461,"x":815,"y":180,"height":210,"rt":220,"gt":108,"bt":35},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Singapore","light":741.4051568,"x":820,"y":180,"height":210,"rt":228,"gt":112,"bt":27},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Singapore","light":228.5671838,"x":825,"y":180,"height":210,"rt":247,"gt":121,"bt":8},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Singapore","light":10.90967282,"x":830,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Singapore","light":0.056232895,"x":835,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Singapore","light":0,"x":840,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Singapore","light":0.455421687,"x":845,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Singapore","light":0.850873433,"x":850,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Singapore","light":0.988235294,"x":855,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Singapore","light":0.349348231,"x":860,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Singapore","light":0,"x":865,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Singapore","light":0,"x":870,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Singapore","light":0,"x":875,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Singapore","light":0,"x":880,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Singapore","light":0.208683958,"x":885,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Singapore","light":152.3365806,"x":890,"y":180,"height":210,"rt":249,"gt":122,"bt":6},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Singapore","light":806.0356042,"x":895,"y":180,"height":210,"rt":226,"gt":111,"bt":29},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Singapore","light":1480.034508,"x":900,"y":180,"height":210,"rt":201,"gt":99,"bt":54},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Singapore","light":2176.292034,"x":905,"y":180,"height":210,"rt":176,"gt":86,"bt":79},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Singapore","light":2336.447736,"x":910,"y":180,"height":210,"rt":170,"gt":83,"bt":85},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Singapore","light":2432.509681,"x":915,"y":180,"height":210,"rt":166,"gt":82,"bt":89},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Singapore","light":2189.769328,"x":920,"y":180,"height":210,"rt":175,"gt":86,"bt":80},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Singapore","light":2481.798848,"x":925,"y":180,"height":210,"rt":165,"gt":81,"bt":90},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Singapore","light":2070.696068,"x":930,"y":180,"height":210,"rt":180,"gt":88,"bt":75},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Singapore","light":1590.949331,"x":935,"y":180,"height":210,"rt":197,"gt":97,"bt":58},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Singapore","light":511.7591659,"x":940,"y":180,"height":210,"rt":236,"gt":116,"bt":19},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Singapore","light":398.1896302,"x":945,"y":180,"height":210,"rt":240,"gt":118,"bt":15},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Singapore","light":13.50356466,"x":950,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Singapore","light":1,"x":955,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Singapore","light":0.309363296,"x":960,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Singapore","light":0,"x":965,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Singapore","light":0,"x":970,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Singapore","light":0,"x":975,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Singapore","light":0,"x":980,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Singapore","light":0.715618661,"x":985,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Singapore","light":0.595131086,"x":990,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Singapore","light":0,"x":995,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Singapore","light":0.201872659,"x":1000,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Singapore","light":1.415926362,"x":1005,"y":180,"height":210,"rt":255,"gt":125,"bt":0},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Singapore","light":184.4350959,"x":1010,"y":180,"height":210,"rt":248,"gt":122,"bt":7},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Singapore","light":780.4862619,"x":1015,"y":180,"height":210,"rt":227,"gt":111,"bt":28},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Singapore","light":1235.267357,"x":1020,"y":180,"height":210,"rt":210,"gt":103,"bt":45},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Singapore","light":1963.183397,"x":1025,"y":180,"height":210,"rt":183,"gt":90,"bt":72}
];
var air = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","airquality_raw":25.48363203,"x":200,"y":0,"height":30,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","airquality_raw":24.09048313,"x":205,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","airquality_raw":23.57158092,"x":210,"y":0,"height":30,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","airquality_raw":24.3050628,"x":215,"y":0,"height":30,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","airquality_raw":25.06431491,"x":220,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","airquality_raw":25.00181256,"x":225,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","airquality_raw":25.2571079,"x":230,"y":0,"height":30,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","airquality_raw":26.41794178,"x":235,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","airquality_raw":27.85395856,"x":240,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","airquality_raw":29.38633435,"x":245,"y":0,"height":30,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","airquality_raw":30.69215317,"x":250,"y":0,"height":30,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","airquality_raw":28.03007553,"x":255,"y":0,"height":30,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","airquality_raw":24.77904831,"x":260,"y":0,"height":30,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","airquality_raw":22.44661108,"x":265,"y":0,"height":30,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","airquality_raw":21.89855866,"x":270,"y":0,"height":30,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","airquality_raw":21.79973008,"x":275,"y":0,"height":30,"rt":144,"gt":144,"bt":111},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","airquality_raw":21.96631797,"x":280,"y":0,"height":30,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","airquality_raw":22.20532331,"x":285,"y":0,"height":30,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","airquality_raw":22.79130785,"x":290,"y":0,"height":30,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","airquality_raw":23.92386059,"x":295,"y":0,"height":30,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","airquality_raw":25.18143657,"x":300,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","airquality_raw":24.56493785,"x":305,"y":0,"height":30,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","airquality_raw":24.128365,"x":310,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","airquality_raw":23.78230851,"x":315,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","airquality_raw":22.86241122,"x":320,"y":0,"height":30,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","airquality_raw":24.68090298,"x":325,"y":0,"height":30,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","airquality_raw":23.92713402,"x":330,"y":0,"height":30,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","airquality_raw":24.75038923,"x":335,"y":0,"height":30,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","airquality_raw":25.2914972,"x":340,"y":0,"height":30,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","airquality_raw":23.84608694,"x":345,"y":0,"height":30,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","airquality_raw":24.24687442,"x":350,"y":0,"height":30,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","airquality_raw":25.45043231,"x":355,"y":0,"height":30,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","airquality_raw":27.6816211,"x":360,"y":0,"height":30,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","airquality_raw":31.26126434,"x":365,"y":0,"height":30,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","airquality_raw":30.25329392,"x":370,"y":0,"height":30,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","airquality_raw":28.79449718,"x":375,"y":0,"height":30,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","airquality_raw":28.41344013,"x":380,"y":0,"height":30,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","airquality_raw":27.87316873,"x":385,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","airquality_raw":27.026263,"x":390,"y":0,"height":30,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","airquality_raw":26.98499713,"x":395,"y":0,"height":30,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","airquality_raw":26.90019748,"x":400,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","airquality_raw":27.04360018,"x":405,"y":0,"height":30,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","airquality_raw":27.20882679,"x":410,"y":0,"height":30,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","airquality_raw":27.46163399,"x":415,"y":0,"height":30,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","airquality_raw":28.27026131,"x":420,"y":0,"height":30,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","airquality_raw":28.96129469,"x":425,"y":0,"height":30,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","airquality_raw":28.7593016,"x":430,"y":0,"height":30,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","airquality_raw":28.36990007,"x":435,"y":0,"height":30,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","airquality_raw":26.46349885,"x":440,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","airquality_raw":25.56034453,"x":445,"y":0,"height":30,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","airquality_raw":25.15242992,"x":450,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","airquality_raw":24.70502617,"x":455,"y":0,"height":30,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","airquality_raw":24.34605402,"x":460,"y":0,"height":30,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","airquality_raw":24.54937737,"x":465,"y":0,"height":30,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","airquality_raw":24.64391795,"x":470,"y":0,"height":30,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","airquality_raw":26.71203125,"x":475,"y":0,"height":30,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","airquality_raw":27.28492606,"x":480,"y":0,"height":30,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","airquality_raw":27.89700711,"x":485,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","airquality_raw":27.10135681,"x":490,"y":0,"height":30,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","airquality_raw":25.78040486,"x":495,"y":0,"height":30,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","airquality_raw":26.06188085,"x":500,"y":0,"height":30,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","airquality_raw":26.87643597,"x":505,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","airquality_raw":26.43009604,"x":510,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","airquality_raw":26.41532268,"x":515,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","airquality_raw":25.97886176,"x":520,"y":0,"height":30,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","airquality_raw":25.96901889,"x":525,"y":0,"height":30,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","airquality_raw":26.60153937,"x":530,"y":0,"height":30,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","airquality_raw":27.80854974,"x":535,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","airquality_raw":28.92284839,"x":540,"y":0,"height":30,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","airquality_raw":30.58232955,"x":545,"y":0,"height":30,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","airquality_raw":31.50318752,"x":550,"y":0,"height":30,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","airquality_raw":29.60242801,"x":555,"y":0,"height":30,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","airquality_raw":26.83806538,"x":560,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","airquality_raw":24.99378429,"x":565,"y":0,"height":30,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","airquality_raw":24.51607277,"x":570,"y":0,"height":30,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","airquality_raw":23.35731525,"x":575,"y":0,"height":30,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","airquality_raw":23.28330916,"x":580,"y":0,"height":30,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","airquality_raw":24.0158031,"x":585,"y":0,"height":30,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","airquality_raw":25.13544627,"x":590,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","airquality_raw":26.58857339,"x":595,"y":0,"height":30,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","airquality_raw":30.19542985,"x":600,"y":0,"height":30,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","airquality_raw":31.20227859,"x":605,"y":0,"height":30,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","airquality_raw":28.11138997,"x":610,"y":0,"height":30,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","airquality_raw":26.87771231,"x":615,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","airquality_raw":25.44335906,"x":620,"y":0,"height":30,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","airquality_raw":25.03977685,"x":625,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","airquality_raw":25.0329294,"x":630,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","airquality_raw":25.06229192,"x":635,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","airquality_raw":25.77823771,"x":640,"y":0,"height":30,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","airquality_raw":26.03745728,"x":645,"y":0,"height":30,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","airquality_raw":26.39856819,"x":650,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","airquality_raw":27.62088273,"x":655,"y":0,"height":30,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","airquality_raw":29.3597774,"x":660,"y":0,"height":30,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","airquality_raw":29.15980524,"x":665,"y":0,"height":30,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","airquality_raw":26.31868782,"x":670,"y":0,"height":30,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","airquality_raw":24.06691087,"x":675,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","airquality_raw":20.35426,"x":680,"y":0,"height":30,"rt":151,"gt":151,"bt":104},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","airquality_raw":20.04240186,"x":685,"y":0,"height":30,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","airquality_raw":20.39271894,"x":690,"y":0,"height":30,"rt":151,"gt":151,"bt":104},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","airquality_raw":20.90751012,"x":695,"y":0,"height":30,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","airquality_raw":21.02853085,"x":700,"y":0,"height":30,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","airquality_raw":20.60771836,"x":705,"y":0,"height":30,"rt":150,"gt":150,"bt":105},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","airquality_raw":20.63144906,"x":710,"y":0,"height":30,"rt":150,"gt":150,"bt":105},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","airquality_raw":21.91371061,"x":715,"y":0,"height":30,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","airquality_raw":25.81281942,"x":720,"y":0,"height":30,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","airquality_raw":26.91971649,"x":725,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","airquality_raw":27.61296504,"x":730,"y":0,"height":30,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","airquality_raw":26.40161734,"x":735,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","airquality_raw":25.85255246,"x":740,"y":0,"height":30,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","airquality_raw":23.99228641,"x":745,"y":0,"height":30,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","airquality_raw":21.99517229,"x":750,"y":0,"height":30,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","airquality_raw":22.1296268,"x":755,"y":0,"height":30,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","airquality_raw":22.86328936,"x":760,"y":0,"height":30,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","airquality_raw":23.42482315,"x":765,"y":0,"height":30,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","airquality_raw":22.00978599,"x":770,"y":0,"height":30,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","airquality_raw":22.58433028,"x":775,"y":0,"height":30,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","airquality_raw":27.85377394,"x":780,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","airquality_raw":32.41845527,"x":785,"y":0,"height":30,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","airquality_raw":31.5661474,"x":790,"y":0,"height":30,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","airquality_raw":28.56835362,"x":795,"y":0,"height":30,"rt":109,"gt":109,"bt":146},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","airquality_raw":24.95702729,"x":800,"y":0,"height":30,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","airquality_raw":23.7772392,"x":805,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","airquality_raw":22.6269138,"x":810,"y":0,"height":30,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","airquality_raw":22.51724555,"x":815,"y":0,"height":30,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","airquality_raw":23.78118812,"x":820,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","airquality_raw":23.77172957,"x":825,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","airquality_raw":24.20663078,"x":830,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","airquality_raw":26.24003555,"x":835,"y":0,"height":30,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","airquality_raw":29.8638698,"x":840,"y":0,"height":30,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","airquality_raw":31.37065458,"x":845,"y":0,"height":30,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","airquality_raw":29.81146553,"x":850,"y":0,"height":30,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","airquality_raw":24.95291638,"x":855,"y":0,"height":30,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","airquality_raw":22.85874994,"x":860,"y":0,"height":30,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","airquality_raw":23.25006875,"x":865,"y":0,"height":30,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","airquality_raw":22.30982543,"x":870,"y":0,"height":30,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","airquality_raw":24.19388186,"x":875,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","airquality_raw":24.27951188,"x":880,"y":0,"height":30,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","airquality_raw":24.98950715,"x":885,"y":0,"height":30,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","airquality_raw":25.09821573,"x":890,"y":0,"height":30,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","airquality_raw":26.8555718,"x":895,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","airquality_raw":31.86629476,"x":900,"y":0,"height":30,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","airquality_raw":32.72142523,"x":905,"y":0,"height":30,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","airquality_raw":32.18921561,"x":910,"y":0,"height":30,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","airquality_raw":31.31729993,"x":915,"y":0,"height":30,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","airquality_raw":29.365831,"x":920,"y":0,"height":30,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","airquality_raw":26.43750183,"x":925,"y":0,"height":30,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","airquality_raw":24.55288719,"x":930,"y":0,"height":30,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","airquality_raw":24.1047079,"x":935,"y":0,"height":30,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","airquality_raw":23.50633646,"x":940,"y":0,"height":30,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","airquality_raw":23.6679701,"x":945,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","airquality_raw":23.78604591,"x":950,"y":0,"height":30,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","airquality_raw":24.25203961,"x":955,"y":0,"height":30,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","airquality_raw":28.40382811,"x":960,"y":0,"height":30,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","airquality_raw":31.57162302,"x":965,"y":0,"height":30,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","airquality_raw":27.84440368,"x":970,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","airquality_raw":26.32610174,"x":975,"y":0,"height":30,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","airquality_raw":25.34865881,"x":980,"y":0,"height":30,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","airquality_raw":22.95331416,"x":985,"y":0,"height":30,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","airquality_raw":23.17758206,"x":990,"y":0,"height":30,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","airquality_raw":22.8342114,"x":995,"y":0,"height":30,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","airquality_raw":22.36817157,"x":1000,"y":0,"height":30,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","airquality_raw":23.13632971,"x":1005,"y":0,"height":30,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","airquality_raw":23.36409803,"x":1010,"y":0,"height":30,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","airquality_raw":22.86987776,"x":1015,"y":0,"height":30,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","airquality_raw":26.86491286,"x":1020,"y":0,"height":30,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","airquality_raw":27.88396992,"x":1025,"y":0,"height":30,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","airquality_raw":21.09021477,"x":200,"y":30,"height":60,"rt":147,"gt":147,"bt":108},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","airquality_raw":21.15133512,"x":205,"y":30,"height":60,"rt":147,"gt":147,"bt":108},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","airquality_raw":20.55598274,"x":210,"y":30,"height":60,"rt":150,"gt":150,"bt":105},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","airquality_raw":20.27932531,"x":215,"y":30,"height":60,"rt":152,"gt":152,"bt":103},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","airquality_raw":20.41385725,"x":220,"y":30,"height":60,"rt":151,"gt":151,"bt":104},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","airquality_raw":20.9422389,"x":225,"y":30,"height":60,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","airquality_raw":20.84869328,"x":230,"y":30,"height":60,"rt":149,"gt":149,"bt":106},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","airquality_raw":22.12086409,"x":235,"y":30,"height":60,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","airquality_raw":19.81890166,"x":240,"y":30,"height":60,"rt":154,"gt":154,"bt":101},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","airquality_raw":19.0075412,"x":245,"y":30,"height":60,"rt":158,"gt":158,"bt":97},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","airquality_raw":18.68569004,"x":250,"y":30,"height":60,"rt":160,"gt":160,"bt":95},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","airquality_raw":18.48838453,"x":255,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","airquality_raw":18.36894472,"x":260,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","airquality_raw":18.41014024,"x":265,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","airquality_raw":18.17823339,"x":270,"y":30,"height":60,"rt":162,"gt":162,"bt":93},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","airquality_raw":18.40804119,"x":275,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","airquality_raw":18.49094869,"x":280,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","airquality_raw":19.36357468,"x":285,"y":30,"height":60,"rt":156,"gt":156,"bt":99},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","airquality_raw":20.42904215,"x":290,"y":30,"height":60,"rt":151,"gt":151,"bt":104},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","airquality_raw":22.13405383,"x":295,"y":30,"height":60,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","airquality_raw":22.58923744,"x":300,"y":30,"height":60,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","airquality_raw":22.61265776,"x":305,"y":30,"height":60,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","airquality_raw":23.6601007,"x":310,"y":30,"height":60,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","airquality_raw":24.41693014,"x":315,"y":30,"height":60,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","airquality_raw":25.97254919,"x":320,"y":30,"height":60,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","airquality_raw":26.17563157,"x":325,"y":30,"height":60,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","airquality_raw":26.71608077,"x":330,"y":30,"height":60,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","airquality_raw":27.48779603,"x":335,"y":30,"height":60,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","airquality_raw":28.11455237,"x":340,"y":30,"height":60,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","airquality_raw":29.20315592,"x":345,"y":30,"height":60,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","airquality_raw":29.50204268,"x":350,"y":30,"height":60,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","airquality_raw":30.66938985,"x":355,"y":30,"height":60,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","airquality_raw":30.66482779,"x":360,"y":30,"height":60,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","airquality_raw":35.83154797,"x":365,"y":30,"height":60,"rt":72,"gt":72,"bt":183},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","airquality_raw":38.37892876,"x":370,"y":30,"height":60,"rt":59,"gt":59,"bt":196},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","airquality_raw":35.24403474,"x":375,"y":30,"height":60,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","airquality_raw":32.09189049,"x":380,"y":30,"height":60,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","airquality_raw":30.84433395,"x":385,"y":30,"height":60,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","airquality_raw":30.49820274,"x":390,"y":30,"height":60,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","airquality_raw":30.20778371,"x":395,"y":30,"height":60,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","airquality_raw":30.39004083,"x":400,"y":30,"height":60,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","airquality_raw":31.9798997,"x":405,"y":30,"height":60,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","airquality_raw":32.47846573,"x":410,"y":30,"height":60,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","airquality_raw":30.23377773,"x":415,"y":30,"height":60,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","airquality_raw":29.30515973,"x":420,"y":30,"height":60,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","airquality_raw":29.42010073,"x":425,"y":30,"height":60,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","airquality_raw":30.74697744,"x":430,"y":30,"height":60,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","airquality_raw":31.0285141,"x":435,"y":30,"height":60,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","airquality_raw":30.65593438,"x":440,"y":30,"height":60,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","airquality_raw":31.22769949,"x":445,"y":30,"height":60,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","airquality_raw":30.79342442,"x":450,"y":30,"height":60,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","airquality_raw":30.25217863,"x":455,"y":30,"height":60,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","airquality_raw":30.98608619,"x":460,"y":30,"height":60,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","airquality_raw":31.09365065,"x":465,"y":30,"height":60,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","airquality_raw":30.77696794,"x":470,"y":30,"height":60,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","airquality_raw":30.41665259,"x":475,"y":30,"height":60,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","airquality_raw":30.34090401,"x":480,"y":30,"height":60,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","airquality_raw":30.9058679,"x":485,"y":30,"height":60,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","airquality_raw":32.55024829,"x":490,"y":30,"height":60,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","airquality_raw":29.87885788,"x":495,"y":30,"height":60,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","airquality_raw":28.51346998,"x":500,"y":30,"height":60,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","airquality_raw":27.59336947,"x":505,"y":30,"height":60,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","airquality_raw":27.23903863,"x":510,"y":30,"height":60,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","airquality_raw":26.83921604,"x":515,"y":30,"height":60,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","airquality_raw":27.40654622,"x":520,"y":30,"height":60,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","airquality_raw":26.18173006,"x":525,"y":30,"height":60,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","airquality_raw":25.26847627,"x":530,"y":30,"height":60,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","airquality_raw":26.53811651,"x":535,"y":30,"height":60,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","airquality_raw":26.19162538,"x":540,"y":30,"height":60,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","airquality_raw":25.09163075,"x":545,"y":30,"height":60,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","airquality_raw":25.90447207,"x":550,"y":30,"height":60,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","airquality_raw":25.51362088,"x":555,"y":30,"height":60,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","airquality_raw":24.46604397,"x":560,"y":30,"height":60,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","airquality_raw":22.47861682,"x":565,"y":30,"height":60,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","airquality_raw":21.67339019,"x":570,"y":30,"height":60,"rt":144,"gt":144,"bt":111},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","airquality_raw":21.46815642,"x":575,"y":30,"height":60,"rt":146,"gt":146,"bt":109},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","airquality_raw":21.47047041,"x":580,"y":30,"height":60,"rt":146,"gt":146,"bt":109},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","airquality_raw":22.53308752,"x":585,"y":30,"height":60,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","airquality_raw":23.07173136,"x":590,"y":30,"height":60,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","airquality_raw":22.95030365,"x":595,"y":30,"height":60,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","airquality_raw":24.77348036,"x":600,"y":30,"height":60,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","airquality_raw":24.09511396,"x":605,"y":30,"height":60,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","airquality_raw":22.66837297,"x":610,"y":30,"height":60,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","airquality_raw":20.93080911,"x":615,"y":30,"height":60,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","airquality_raw":20.55729134,"x":620,"y":30,"height":60,"rt":150,"gt":150,"bt":105},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","airquality_raw":19.98538467,"x":625,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","airquality_raw":19.8032435,"x":630,"y":30,"height":60,"rt":154,"gt":154,"bt":101},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","airquality_raw":20.12116159,"x":635,"y":30,"height":60,"rt":152,"gt":152,"bt":103},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","airquality_raw":21.01567994,"x":640,"y":30,"height":60,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","airquality_raw":22.44168241,"x":645,"y":30,"height":60,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","airquality_raw":24.13267338,"x":650,"y":30,"height":60,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","airquality_raw":25.53881697,"x":655,"y":30,"height":60,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","airquality_raw":25.78822311,"x":660,"y":30,"height":60,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","airquality_raw":25.78136387,"x":665,"y":30,"height":60,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","airquality_raw":27.52997107,"x":670,"y":30,"height":60,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","airquality_raw":28.3079996,"x":675,"y":30,"height":60,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","airquality_raw":27.66732305,"x":680,"y":30,"height":60,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","airquality_raw":27.68153354,"x":685,"y":30,"height":60,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","airquality_raw":27.79727004,"x":690,"y":30,"height":60,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","airquality_raw":27.54155943,"x":695,"y":30,"height":60,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","airquality_raw":27.86516414,"x":700,"y":30,"height":60,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","airquality_raw":29.78158016,"x":705,"y":30,"height":60,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","airquality_raw":32.79650454,"x":710,"y":30,"height":60,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","airquality_raw":36.29904706,"x":715,"y":30,"height":60,"rt":70,"gt":70,"bt":185},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","airquality_raw":36.15240045,"x":720,"y":30,"height":60,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","airquality_raw":34.68431216,"x":725,"y":30,"height":60,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","airquality_raw":33.60684139,"x":730,"y":30,"height":60,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","airquality_raw":32.69078699,"x":735,"y":30,"height":60,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","airquality_raw":31.91722052,"x":740,"y":30,"height":60,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","airquality_raw":30.69454826,"x":745,"y":30,"height":60,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","airquality_raw":29.79369117,"x":750,"y":30,"height":60,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","airquality_raw":28.47655914,"x":755,"y":30,"height":60,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","airquality_raw":26.3545844,"x":760,"y":30,"height":60,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","airquality_raw":22.52751073,"x":765,"y":30,"height":60,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","airquality_raw":20.07158593,"x":770,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","airquality_raw":19.34394079,"x":775,"y":30,"height":60,"rt":156,"gt":156,"bt":99},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","airquality_raw":18.57074737,"x":780,"y":30,"height":60,"rt":160,"gt":160,"bt":95},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","airquality_raw":18.95061013,"x":785,"y":30,"height":60,"rt":158,"gt":158,"bt":97},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","airquality_raw":19.02903423,"x":790,"y":30,"height":60,"rt":158,"gt":158,"bt":97},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","airquality_raw":19.91086595,"x":795,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","airquality_raw":20.20932079,"x":800,"y":30,"height":60,"rt":152,"gt":152,"bt":103},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","airquality_raw":19.9274558,"x":805,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","airquality_raw":19.54684568,"x":810,"y":30,"height":60,"rt":155,"gt":155,"bt":100},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","airquality_raw":19.44919638,"x":815,"y":30,"height":60,"rt":156,"gt":156,"bt":99},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","airquality_raw":18.24756653,"x":820,"y":30,"height":60,"rt":162,"gt":162,"bt":93},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","airquality_raw":18.63887823,"x":825,"y":30,"height":60,"rt":160,"gt":160,"bt":95},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","airquality_raw":18.62918734,"x":830,"y":30,"height":60,"rt":160,"gt":160,"bt":95},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","airquality_raw":18.33667941,"x":835,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","airquality_raw":18.31943945,"x":840,"y":30,"height":60,"rt":162,"gt":162,"bt":93},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","airquality_raw":18.40074024,"x":845,"y":30,"height":60,"rt":161,"gt":161,"bt":94},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","airquality_raw":18.02554321,"x":850,"y":30,"height":60,"rt":163,"gt":163,"bt":92},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","airquality_raw":17.31621472,"x":855,"y":30,"height":60,"rt":167,"gt":167,"bt":88},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","airquality_raw":16.42463903,"x":860,"y":30,"height":60,"rt":171,"gt":171,"bt":84},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","airquality_raw":15.84403482,"x":865,"y":30,"height":60,"rt":174,"gt":174,"bt":81},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","airquality_raw":15.698762,"x":870,"y":30,"height":60,"rt":175,"gt":175,"bt":80},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","airquality_raw":15.37915619,"x":875,"y":30,"height":60,"rt":177,"gt":177,"bt":78},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","airquality_raw":15.26731274,"x":880,"y":30,"height":60,"rt":177,"gt":177,"bt":78},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","airquality_raw":15.20703936,"x":885,"y":30,"height":60,"rt":177,"gt":177,"bt":78},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","airquality_raw":15.81660915,"x":890,"y":30,"height":60,"rt":174,"gt":174,"bt":81},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","airquality_raw":15.52464651,"x":895,"y":30,"height":60,"rt":176,"gt":176,"bt":79},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","airquality_raw":16.68735679,"x":900,"y":30,"height":60,"rt":170,"gt":170,"bt":85},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","airquality_raw":18.75457527,"x":905,"y":30,"height":60,"rt":159,"gt":159,"bt":96},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","airquality_raw":20.01104548,"x":910,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","airquality_raw":20.90304395,"x":915,"y":30,"height":60,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","airquality_raw":21.16436555,"x":920,"y":30,"height":60,"rt":147,"gt":147,"bt":108},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","airquality_raw":21.10064068,"x":925,"y":30,"height":60,"rt":147,"gt":147,"bt":108},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","airquality_raw":21.62154604,"x":930,"y":30,"height":60,"rt":145,"gt":145,"bt":110},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","airquality_raw":22.09143364,"x":935,"y":30,"height":60,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","airquality_raw":22.38743599,"x":940,"y":30,"height":60,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","airquality_raw":22.25133396,"x":945,"y":30,"height":60,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","airquality_raw":20.96484571,"x":950,"y":30,"height":60,"rt":148,"gt":148,"bt":107},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","airquality_raw":20.75962848,"x":955,"y":30,"height":60,"rt":149,"gt":149,"bt":106},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","airquality_raw":20.43816307,"x":960,"y":30,"height":60,"rt":151,"gt":151,"bt":104},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","airquality_raw":19.91648284,"x":965,"y":30,"height":60,"rt":153,"gt":153,"bt":102},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","airquality_raw":19.26466758,"x":970,"y":30,"height":60,"rt":157,"gt":157,"bt":98},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","airquality_raw":18.01309336,"x":975,"y":30,"height":60,"rt":163,"gt":163,"bt":92},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","airquality_raw":17.56683255,"x":980,"y":30,"height":60,"rt":165,"gt":165,"bt":90},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","airquality_raw":17.80488007,"x":985,"y":30,"height":60,"rt":164,"gt":164,"bt":91},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","airquality_raw":17.32970755,"x":990,"y":30,"height":60,"rt":167,"gt":167,"bt":88},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","airquality_raw":17.06021245,"x":995,"y":30,"height":60,"rt":168,"gt":168,"bt":87},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","airquality_raw":16.96162294,"x":1000,"y":30,"height":60,"rt":168,"gt":168,"bt":87},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","airquality_raw":17.43336768,"x":1005,"y":30,"height":60,"rt":166,"gt":166,"bt":89},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","airquality_raw":18.27787557,"x":1010,"y":30,"height":60,"rt":162,"gt":162,"bt":93},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","airquality_raw":18.70701664,"x":1015,"y":30,"height":60,"rt":160,"gt":160,"bt":95},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","airquality_raw":19.54302361,"x":1020,"y":30,"height":60,"rt":155,"gt":155,"bt":100},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","airquality_raw":20.11449028,"x":1025,"y":30,"height":60,"rt":152,"gt":152,"bt":103},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","airquality_raw":40.29186562,"x":200,"y":60,"height":90,"rt":50,"gt":50,"bt":205},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","airquality_raw":42.15660459,"x":205,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","airquality_raw":44.52785875,"x":210,"y":60,"height":90,"rt":28,"gt":28,"bt":227},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","airquality_raw":44.93219558,"x":215,"y":60,"height":90,"rt":26,"gt":26,"bt":229},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","airquality_raw":43.83471264,"x":220,"y":60,"height":90,"rt":31,"gt":31,"bt":224},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","airquality_raw":41.31956696,"x":225,"y":60,"height":90,"rt":44,"gt":44,"bt":211},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","airquality_raw":41.61275404,"x":230,"y":60,"height":90,"rt":43,"gt":43,"bt":212},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","airquality_raw":41.23018749,"x":235,"y":60,"height":90,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","airquality_raw":41.50142771,"x":240,"y":60,"height":90,"rt":43,"gt":43,"bt":212},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","airquality_raw":41.50774357,"x":245,"y":60,"height":90,"rt":43,"gt":43,"bt":212},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","airquality_raw":40.5464309,"x":250,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","airquality_raw":39.67801872,"x":255,"y":60,"height":90,"rt":53,"gt":53,"bt":202},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","airquality_raw":39.28776117,"x":260,"y":60,"height":90,"rt":55,"gt":55,"bt":200},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","airquality_raw":39.75461014,"x":265,"y":60,"height":90,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","airquality_raw":40.80499698,"x":270,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","airquality_raw":40.55392876,"x":275,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","airquality_raw":41.76148228,"x":280,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","airquality_raw":41.72751437,"x":285,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","airquality_raw":41.67134476,"x":290,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","airquality_raw":41.81367847,"x":295,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","airquality_raw":41.112783,"x":300,"y":60,"height":90,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","airquality_raw":41.73344964,"x":305,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","airquality_raw":40.53915071,"x":310,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","airquality_raw":40.9916382,"x":315,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","airquality_raw":41.45942289,"x":320,"y":60,"height":90,"rt":44,"gt":44,"bt":211},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","airquality_raw":42.03091475,"x":325,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","airquality_raw":42.46878958,"x":330,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","airquality_raw":41.68550903,"x":335,"y":60,"height":90,"rt":42,"gt":42,"bt":213},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","airquality_raw":41.02678296,"x":340,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","airquality_raw":40.60779446,"x":345,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","airquality_raw":41.13503144,"x":350,"y":60,"height":90,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","airquality_raw":40.74100814,"x":355,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","airquality_raw":40.25906573,"x":360,"y":60,"height":90,"rt":50,"gt":50,"bt":205},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","airquality_raw":40.0669867,"x":365,"y":60,"height":90,"rt":51,"gt":51,"bt":204},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","airquality_raw":30.81192116,"x":370,"y":60,"height":90,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","airquality_raw":26.40741775,"x":375,"y":60,"height":90,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","airquality_raw":26.51966803,"x":380,"y":60,"height":90,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","airquality_raw":26.81220415,"x":385,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","airquality_raw":26.84036653,"x":390,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","airquality_raw":26.74271132,"x":395,"y":60,"height":90,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","airquality_raw":26.32095265,"x":400,"y":60,"height":90,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","airquality_raw":26.62925355,"x":405,"y":60,"height":90,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","airquality_raw":36.7782454,"x":410,"y":60,"height":90,"rt":67,"gt":67,"bt":188},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","airquality_raw":33.88356438,"x":415,"y":60,"height":90,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","airquality_raw":26.79097846,"x":420,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","airquality_raw":29.48740309,"x":425,"y":60,"height":90,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","airquality_raw":26.20670329,"x":430,"y":60,"height":90,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","airquality_raw":26.37179195,"x":435,"y":60,"height":90,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","airquality_raw":27.36757663,"x":440,"y":60,"height":90,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","airquality_raw":27.38820936,"x":445,"y":60,"height":90,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","airquality_raw":26.3985191,"x":450,"y":60,"height":90,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","airquality_raw":27.68496951,"x":455,"y":60,"height":90,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","airquality_raw":28.56117612,"x":460,"y":60,"height":90,"rt":109,"gt":109,"bt":146},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","airquality_raw":26.07096122,"x":465,"y":60,"height":90,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","airquality_raw":26.53466667,"x":470,"y":60,"height":90,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","airquality_raw":26.94079181,"x":475,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","airquality_raw":25.80108949,"x":480,"y":60,"height":90,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","airquality_raw":26.88153589,"x":485,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","airquality_raw":26.9065045,"x":490,"y":60,"height":90,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","airquality_raw":27.23962923,"x":495,"y":60,"height":90,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","airquality_raw":28.19633804,"x":500,"y":60,"height":90,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","airquality_raw":28.01419495,"x":505,"y":60,"height":90,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","airquality_raw":27.97125085,"x":510,"y":60,"height":90,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","airquality_raw":35.33494449,"x":515,"y":60,"height":90,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","airquality_raw":42.28126463,"x":520,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","airquality_raw":42.47475385,"x":525,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","airquality_raw":42.68787079,"x":530,"y":60,"height":90,"rt":37,"gt":37,"bt":218},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","airquality_raw":43.06989019,"x":535,"y":60,"height":90,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","airquality_raw":42.94384236,"x":540,"y":60,"height":90,"rt":36,"gt":36,"bt":219},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","airquality_raw":43.41427544,"x":545,"y":60,"height":90,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","airquality_raw":43.06249755,"x":550,"y":60,"height":90,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","airquality_raw":43.38307209,"x":555,"y":60,"height":90,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","airquality_raw":44.07523319,"x":560,"y":60,"height":90,"rt":30,"gt":30,"bt":225},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","airquality_raw":45.32659506,"x":565,"y":60,"height":90,"rt":24,"gt":24,"bt":231},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","airquality_raw":45.7366928,"x":570,"y":60,"height":90,"rt":22,"gt":22,"bt":233},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","airquality_raw":44.73543279,"x":575,"y":60,"height":90,"rt":27,"gt":27,"bt":228},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","airquality_raw":44.21733194,"x":580,"y":60,"height":90,"rt":29,"gt":29,"bt":226},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","airquality_raw":43.20577399,"x":585,"y":60,"height":90,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","airquality_raw":42.81874737,"x":590,"y":60,"height":90,"rt":37,"gt":37,"bt":218},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","airquality_raw":41.36819075,"x":595,"y":60,"height":90,"rt":44,"gt":44,"bt":211},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","airquality_raw":41.95326928,"x":600,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","airquality_raw":41.37059515,"x":605,"y":60,"height":90,"rt":44,"gt":44,"bt":211},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","airquality_raw":42.1235778,"x":610,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","airquality_raw":42.83344004,"x":615,"y":60,"height":90,"rt":37,"gt":37,"bt":218},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","airquality_raw":42.27790771,"x":620,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","airquality_raw":42.0888255,"x":625,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","airquality_raw":42.5364251,"x":630,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","airquality_raw":43.52323994,"x":635,"y":60,"height":90,"rt":33,"gt":33,"bt":222},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","airquality_raw":43.63720732,"x":640,"y":60,"height":90,"rt":32,"gt":32,"bt":223},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","airquality_raw":42.40352222,"x":645,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","airquality_raw":39.79164739,"x":650,"y":60,"height":90,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","airquality_raw":40.11439088,"x":655,"y":60,"height":90,"rt":50,"gt":50,"bt":205},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","airquality_raw":39.30162022,"x":660,"y":60,"height":90,"rt":55,"gt":55,"bt":200},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","airquality_raw":40.69603616,"x":665,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","airquality_raw":40.73873676,"x":670,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","airquality_raw":40.03341867,"x":675,"y":60,"height":90,"rt":51,"gt":51,"bt":204},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","airquality_raw":41.63118629,"x":680,"y":60,"height":90,"rt":43,"gt":43,"bt":212},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","airquality_raw":42.36375505,"x":685,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","airquality_raw":44.14756709,"x":690,"y":60,"height":90,"rt":30,"gt":30,"bt":225},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","airquality_raw":42.00567816,"x":695,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","airquality_raw":42.26104481,"x":700,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","airquality_raw":41.07220612,"x":705,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","airquality_raw":40.92656157,"x":710,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","airquality_raw":40.77137682,"x":715,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","airquality_raw":39.64130011,"x":720,"y":60,"height":90,"rt":53,"gt":53,"bt":202},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","airquality_raw":39.63017987,"x":725,"y":60,"height":90,"rt":53,"gt":53,"bt":202},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","airquality_raw":39.85364608,"x":730,"y":60,"height":90,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","airquality_raw":40.85567509,"x":735,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","airquality_raw":41.52414523,"x":740,"y":60,"height":90,"rt":43,"gt":43,"bt":212},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","airquality_raw":41.9173075,"x":745,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","airquality_raw":43.13659217,"x":750,"y":60,"height":90,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","airquality_raw":42.02972775,"x":755,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","airquality_raw":40.96315102,"x":760,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","airquality_raw":40.77274001,"x":765,"y":60,"height":90,"rt":47,"gt":47,"bt":208},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","airquality_raw":40.60882471,"x":770,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","airquality_raw":40.00379356,"x":775,"y":60,"height":90,"rt":51,"gt":51,"bt":204},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","airquality_raw":39.7143604,"x":780,"y":60,"height":90,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","airquality_raw":39.4736251,"x":785,"y":60,"height":90,"rt":54,"gt":54,"bt":201},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","airquality_raw":39.90720762,"x":790,"y":60,"height":90,"rt":51,"gt":51,"bt":204},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","airquality_raw":40.07487647,"x":795,"y":60,"height":90,"rt":51,"gt":51,"bt":204},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","airquality_raw":42.18930211,"x":800,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","airquality_raw":43.5902815,"x":805,"y":60,"height":90,"rt":33,"gt":33,"bt":222},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","airquality_raw":45.02101514,"x":810,"y":60,"height":90,"rt":25,"gt":25,"bt":230},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","airquality_raw":43.30276757,"x":815,"y":60,"height":90,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","airquality_raw":42.42663723,"x":820,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","airquality_raw":42.42442759,"x":825,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","airquality_raw":43.21749048,"x":830,"y":60,"height":90,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","airquality_raw":43.31044422,"x":835,"y":60,"height":90,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","airquality_raw":39.4342845,"x":840,"y":60,"height":90,"rt":54,"gt":54,"bt":201},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","airquality_raw":37.87748983,"x":845,"y":60,"height":90,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","airquality_raw":39.02544738,"x":850,"y":60,"height":90,"rt":56,"gt":56,"bt":199},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","airquality_raw":40.67233884,"x":855,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","airquality_raw":41.08269528,"x":860,"y":60,"height":90,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","airquality_raw":41.97696993,"x":865,"y":60,"height":90,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","airquality_raw":45.64819093,"x":870,"y":60,"height":90,"rt":22,"gt":22,"bt":233},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","airquality_raw":45.66733821,"x":875,"y":60,"height":90,"rt":22,"gt":22,"bt":233},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","airquality_raw":44.98537386,"x":880,"y":60,"height":90,"rt":26,"gt":26,"bt":229},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","airquality_raw":43.67202622,"x":885,"y":60,"height":90,"rt":32,"gt":32,"bt":223},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","airquality_raw":42.59588095,"x":890,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","airquality_raw":43.43506431,"x":895,"y":60,"height":90,"rt":33,"gt":33,"bt":222},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","airquality_raw":42.55332784,"x":900,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","airquality_raw":42.17740148,"x":905,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","airquality_raw":42.5710606,"x":910,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","airquality_raw":44.33974409,"x":915,"y":60,"height":90,"rt":29,"gt":29,"bt":226},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","airquality_raw":46.31431612,"x":920,"y":60,"height":90,"rt":19,"gt":19,"bt":236},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","airquality_raw":47.3442822,"x":925,"y":60,"height":90,"rt":14,"gt":14,"bt":241},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","airquality_raw":45.8638804,"x":930,"y":60,"height":90,"rt":21,"gt":21,"bt":234},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","airquality_raw":44.85039213,"x":935,"y":60,"height":90,"rt":26,"gt":26,"bt":229},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","airquality_raw":40.61080352,"x":940,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","airquality_raw":42.12074395,"x":945,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","airquality_raw":40.63923878,"x":950,"y":60,"height":90,"rt":48,"gt":48,"bt":207},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","airquality_raw":39.74409593,"x":955,"y":60,"height":90,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","airquality_raw":38.59207323,"x":960,"y":60,"height":90,"rt":58,"gt":58,"bt":197},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","airquality_raw":37.6403555,"x":965,"y":60,"height":90,"rt":63,"gt":63,"bt":192},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","airquality_raw":39.25834806,"x":970,"y":60,"height":90,"rt":55,"gt":55,"bt":200},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","airquality_raw":41.17115238,"x":975,"y":60,"height":90,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","airquality_raw":41.02345331,"x":980,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","airquality_raw":42.35590652,"x":985,"y":60,"height":90,"rt":39,"gt":39,"bt":216},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","airquality_raw":43.3824321,"x":990,"y":60,"height":90,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","airquality_raw":42.52333558,"x":995,"y":60,"height":90,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","airquality_raw":44.83922614,"x":1000,"y":60,"height":90,"rt":26,"gt":26,"bt":229},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","airquality_raw":44.46729853,"x":1005,"y":60,"height":90,"rt":28,"gt":28,"bt":227},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","airquality_raw":42.70184055,"x":1010,"y":60,"height":90,"rt":37,"gt":37,"bt":218},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","airquality_raw":42.12299002,"x":1015,"y":60,"height":90,"rt":40,"gt":40,"bt":215},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","airquality_raw":40.38212473,"x":1020,"y":60,"height":90,"rt":49,"gt":49,"bt":206},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","airquality_raw":40.94977041,"x":1025,"y":60,"height":90,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.03597538,"x":200,"y":90,"height":120,"rt":81,"gt":81,"bt":174},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.85110389,"x":205,"y":90,"height":120,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.44142098,"x":210,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.84578111,"x":215,"y":90,"height":120,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.8499802,"x":220,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.87665784,"x":225,"y":90,"height":120,"rt":72,"gt":72,"bt":183},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.74030638,"x":230,"y":90,"height":120,"rt":63,"gt":63,"bt":192},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.36990382,"x":235,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.51336834,"x":240,"y":90,"height":120,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.08545488,"x":245,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.31455795,"x":250,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.60031629,"x":255,"y":90,"height":120,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.84397969,"x":260,"y":90,"height":120,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.5711417,"x":265,"y":90,"height":120,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.31143914,"x":270,"y":90,"height":120,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.38776163,"x":275,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.2457149,"x":280,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.51618173,"x":285,"y":90,"height":120,"rt":69,"gt":69,"bt":186},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.14284181,"x":290,"y":90,"height":120,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.65265394,"x":295,"y":90,"height":120,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.43287286,"x":300,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.72393167,"x":305,"y":90,"height":120,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.38912968,"x":310,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.83719998,"x":315,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.58744163,"x":320,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.76491306,"x":325,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.72633441,"x":330,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.2266429,"x":335,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.8635984,"x":340,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.4933835,"x":345,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.90602058,"x":350,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.27323544,"x":355,"y":90,"height":120,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.6697795,"x":360,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.42765361,"x":365,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.83073946,"x":370,"y":90,"height":120,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.45498649,"x":375,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.97857568,"x":380,"y":90,"height":120,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.39694721,"x":385,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.59605283,"x":390,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.83175544,"x":395,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.24013652,"x":400,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.298651,"x":405,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.03182177,"x":410,"y":90,"height":120,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.11311172,"x":415,"y":90,"height":120,"rt":81,"gt":81,"bt":174},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.69922277,"x":420,"y":90,"height":120,"rt":83,"gt":83,"bt":172},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.43288226,"x":425,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.50023431,"x":430,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.52833222,"x":435,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.50713064,"x":440,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.30778147,"x":445,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.24384439,"x":450,"y":90,"height":120,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.46683187,"x":455,"y":90,"height":120,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.84852514,"x":460,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.1557663,"x":465,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.27497823,"x":470,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.94506659,"x":475,"y":90,"height":120,"rt":72,"gt":72,"bt":183},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.13880361,"x":480,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.53208623,"x":485,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.83177317,"x":490,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.02420126,"x":495,"y":90,"height":120,"rt":81,"gt":81,"bt":174},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.16121781,"x":500,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.9890881,"x":505,"y":90,"height":120,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.38743734,"x":510,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.01850367,"x":515,"y":90,"height":120,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.18039096,"x":520,"y":90,"height":120,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.58038515,"x":525,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.90894036,"x":530,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.06660619,"x":535,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.93893147,"x":540,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.19776344,"x":545,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.6902875,"x":550,"y":90,"height":120,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.67400584,"x":555,"y":90,"height":120,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.68365296,"x":560,"y":90,"height":120,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.46448885,"x":565,"y":90,"height":120,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.04024724,"x":570,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.48783015,"x":575,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.53528836,"x":580,"y":90,"height":120,"rt":69,"gt":69,"bt":186},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.14202071,"x":585,"y":90,"height":120,"rt":60,"gt":60,"bt":195},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.21452234,"x":590,"y":90,"height":120,"rt":60,"gt":60,"bt":195},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.55685438,"x":595,"y":90,"height":120,"rt":63,"gt":63,"bt":192},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.38362671,"x":600,"y":90,"height":120,"rt":64,"gt":64,"bt":191},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.15246792,"x":605,"y":90,"height":120,"rt":60,"gt":60,"bt":195},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.08262477,"x":610,"y":90,"height":120,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.47453032,"x":615,"y":90,"height":120,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.19527823,"x":620,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.84694509,"x":625,"y":90,"height":120,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.08954333,"x":630,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.64650094,"x":635,"y":90,"height":120,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.14121021,"x":640,"y":90,"height":120,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.36419856,"x":645,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.77105948,"x":650,"y":90,"height":120,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.41874094,"x":655,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.21385405,"x":660,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.93389088,"x":665,"y":90,"height":120,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.08204892,"x":670,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.06074271,"x":675,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.50450868,"x":680,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.81379794,"x":685,"y":90,"height":120,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.0125255,"x":690,"y":90,"height":120,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.93008352,"x":695,"y":90,"height":120,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.7755219,"x":700,"y":90,"height":120,"rt":83,"gt":83,"bt":172},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.45955078,"x":705,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.96157496,"x":710,"y":90,"height":120,"rt":66,"gt":66,"bt":189},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.12104135,"x":715,"y":90,"height":120,"rt":61,"gt":61,"bt":194},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.61267398,"x":720,"y":90,"height":120,"rt":68,"gt":68,"bt":187},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.88410867,"x":725,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.76755489,"x":730,"y":90,"height":120,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.30591664,"x":735,"y":90,"height":120,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.04328601,"x":740,"y":90,"height":120,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.44604192,"x":745,"y":90,"height":120,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.8722557,"x":750,"y":90,"height":120,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.39295314,"x":755,"y":90,"height":120,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.96737192,"x":760,"y":90,"height":120,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":42.92252234,"x":765,"y":90,"height":120,"rt":36,"gt":36,"bt":219},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":44.23223866,"x":770,"y":90,"height":120,"rt":29,"gt":29,"bt":226},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":42.48045384,"x":775,"y":90,"height":120,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":40.91391754,"x":780,"y":90,"height":120,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.4446174,"x":785,"y":90,"height":120,"rt":59,"gt":59,"bt":196},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.23403161,"x":790,"y":90,"height":120,"rt":70,"gt":70,"bt":185},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.44479157,"x":795,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.01004011,"x":800,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.22412387,"x":805,"y":90,"height":120,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.67083973,"x":810,"y":90,"height":120,"rt":83,"gt":83,"bt":172},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.22060279,"x":815,"y":90,"height":120,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.55457442,"x":820,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":36.95114465,"x":825,"y":90,"height":120,"rt":67,"gt":67,"bt":188},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.06822562,"x":830,"y":90,"height":120,"rt":66,"gt":66,"bt":189},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":38.27921707,"x":835,"y":90,"height":120,"rt":60,"gt":60,"bt":195},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.60836589,"x":840,"y":90,"height":120,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.60982568,"x":845,"y":90,"height":120,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.22824895,"x":850,"y":90,"height":120,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.11812363,"x":855,"y":90,"height":120,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.43442977,"x":860,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.17777982,"x":865,"y":90,"height":120,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.16882548,"x":870,"y":90,"height":120,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.22294594,"x":875,"y":90,"height":120,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.19390759,"x":880,"y":90,"height":120,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.22894522,"x":885,"y":90,"height":120,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.19914401,"x":890,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.61669109,"x":895,"y":90,"height":120,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.63574243,"x":900,"y":90,"height":120,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.1967541,"x":905,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.05723486,"x":910,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.17709197,"x":915,"y":90,"height":120,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.74706961,"x":920,"y":90,"height":120,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.23897957,"x":925,"y":90,"height":120,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Rio de Janeiro","airquality_raw":34.88018624,"x":930,"y":90,"height":120,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Rio de Janeiro","airquality_raw":35.45565472,"x":935,"y":90,"height":120,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.8411732,"x":940,"y":90,"height":120,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Rio de Janeiro","airquality_raw":39.08613543,"x":945,"y":90,"height":120,"rt":56,"gt":56,"bt":199},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.92181376,"x":950,"y":90,"height":120,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.74461917,"x":955,"y":90,"height":120,"rt":63,"gt":63,"bt":192},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Rio de Janeiro","airquality_raw":37.37900008,"x":960,"y":90,"height":120,"rt":64,"gt":64,"bt":191},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Rio de Janeiro","airquality_raw":33.14078801,"x":965,"y":90,"height":120,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.3712738,"x":970,"y":90,"height":120,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Rio de Janeiro","airquality_raw":32.08395348,"x":975,"y":90,"height":120,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.71133903,"x":980,"y":90,"height":120,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Rio de Janeiro","airquality_raw":31.3324955,"x":985,"y":90,"height":120,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.12643305,"x":990,"y":90,"height":120,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.85673659,"x":995,"y":90,"height":120,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Rio de Janeiro","airquality_raw":28.47352904,"x":1000,"y":90,"height":120,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Rio de Janeiro","airquality_raw":28.80482063,"x":1005,"y":90,"height":120,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Rio de Janeiro","airquality_raw":28.55322028,"x":1010,"y":90,"height":120,"rt":109,"gt":109,"bt":146},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.02647415,"x":1015,"y":90,"height":120,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Rio de Janeiro","airquality_raw":29.830908,"x":1020,"y":90,"height":120,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Rio de Janeiro","airquality_raw":30.23603906,"x":1025,"y":90,"height":120,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"San Francisco","airquality_raw":26.16675915,"x":200,"y":120,"height":150,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"San Francisco","airquality_raw":25.86640177,"x":205,"y":120,"height":150,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"San Francisco","airquality_raw":24.49501843,"x":210,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"San Francisco","airquality_raw":25.4190814,"x":215,"y":120,"height":150,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"San Francisco","airquality_raw":25.94281742,"x":220,"y":120,"height":150,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"San Francisco","airquality_raw":27.38350309,"x":225,"y":120,"height":150,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"San Francisco","airquality_raw":27.58319549,"x":230,"y":120,"height":150,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"San Francisco","airquality_raw":28.06347224,"x":235,"y":120,"height":150,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"San Francisco","airquality_raw":29.59517413,"x":240,"y":120,"height":150,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"San Francisco","airquality_raw":32.04298314,"x":245,"y":120,"height":150,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"San Francisco","airquality_raw":32.64219908,"x":250,"y":120,"height":150,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"San Francisco","airquality_raw":31.88469222,"x":255,"y":120,"height":150,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"San Francisco","airquality_raw":31.60773391,"x":260,"y":120,"height":150,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"San Francisco","airquality_raw":31.99321404,"x":265,"y":120,"height":150,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"San Francisco","airquality_raw":30.34825563,"x":270,"y":120,"height":150,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"San Francisco","airquality_raw":29.532083,"x":275,"y":120,"height":150,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"San Francisco","airquality_raw":31.08426217,"x":280,"y":120,"height":150,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"San Francisco","airquality_raw":31.31071958,"x":285,"y":120,"height":150,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"San Francisco","airquality_raw":30.59747071,"x":290,"y":120,"height":150,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"San Francisco","airquality_raw":27.05646429,"x":295,"y":120,"height":150,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"San Francisco","airquality_raw":24.78870399,"x":300,"y":120,"height":150,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"San Francisco","airquality_raw":28.96679831,"x":305,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"San Francisco","airquality_raw":29.53749083,"x":310,"y":120,"height":150,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"San Francisco","airquality_raw":26.629715,"x":315,"y":120,"height":150,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"San Francisco","airquality_raw":28.93090976,"x":320,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"San Francisco","airquality_raw":29.85419017,"x":325,"y":120,"height":150,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"San Francisco","airquality_raw":29.78398908,"x":330,"y":120,"height":150,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"San Francisco","airquality_raw":29.6821826,"x":335,"y":120,"height":150,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"San Francisco","airquality_raw":31.5078394,"x":340,"y":120,"height":150,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"San Francisco","airquality_raw":31.21001273,"x":345,"y":120,"height":150,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"San Francisco","airquality_raw":30.95233248,"x":350,"y":120,"height":150,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"San Francisco","airquality_raw":31.36920504,"x":355,"y":120,"height":150,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"San Francisco","airquality_raw":31.33818994,"x":360,"y":120,"height":150,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"San Francisco","airquality_raw":31.50345121,"x":365,"y":120,"height":150,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"San Francisco","airquality_raw":32.69320356,"x":370,"y":120,"height":150,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"San Francisco","airquality_raw":30.92939681,"x":375,"y":120,"height":150,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"San Francisco","airquality_raw":29.11338478,"x":380,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"San Francisco","airquality_raw":28.94598614,"x":385,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"San Francisco","airquality_raw":28.81875941,"x":390,"y":120,"height":150,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"San Francisco","airquality_raw":30.0097672,"x":395,"y":120,"height":150,"rt":102,"gt":102,"bt":153},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"San Francisco","airquality_raw":30.30349143,"x":400,"y":120,"height":150,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"San Francisco","airquality_raw":30.45617297,"x":405,"y":120,"height":150,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"San Francisco","airquality_raw":31.88950508,"x":410,"y":120,"height":150,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"San Francisco","airquality_raw":29.47851893,"x":415,"y":120,"height":150,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"San Francisco","airquality_raw":26.10481645,"x":420,"y":120,"height":150,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"San Francisco","airquality_raw":27.07381786,"x":425,"y":120,"height":150,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"San Francisco","airquality_raw":30.53931991,"x":430,"y":120,"height":150,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"San Francisco","airquality_raw":30.69522324,"x":435,"y":120,"height":150,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"San Francisco","airquality_raw":27.80851486,"x":440,"y":120,"height":150,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"San Francisco","airquality_raw":27.88130951,"x":445,"y":120,"height":150,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"San Francisco","airquality_raw":30.51942364,"x":450,"y":120,"height":150,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"San Francisco","airquality_raw":28.46362786,"x":455,"y":120,"height":150,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"San Francisco","airquality_raw":30.46332934,"x":460,"y":120,"height":150,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"San Francisco","airquality_raw":29.55334358,"x":465,"y":120,"height":150,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"San Francisco","airquality_raw":29.35094418,"x":470,"y":120,"height":150,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"San Francisco","airquality_raw":29.47907063,"x":475,"y":120,"height":150,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"San Francisco","airquality_raw":28.75830632,"x":480,"y":120,"height":150,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"San Francisco","airquality_raw":25.05159808,"x":485,"y":120,"height":150,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"San Francisco","airquality_raw":24.27265385,"x":490,"y":120,"height":150,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"San Francisco","airquality_raw":24.37686178,"x":495,"y":120,"height":150,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"San Francisco","airquality_raw":24.58509655,"x":500,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"San Francisco","airquality_raw":24.48945565,"x":505,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"San Francisco","airquality_raw":25.03976122,"x":510,"y":120,"height":150,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"San Francisco","airquality_raw":24.66345612,"x":515,"y":120,"height":150,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"San Francisco","airquality_raw":23.96802885,"x":520,"y":120,"height":150,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"San Francisco","airquality_raw":23.95210992,"x":525,"y":120,"height":150,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"San Francisco","airquality_raw":23.29335941,"x":530,"y":120,"height":150,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"San Francisco","airquality_raw":21.53680767,"x":535,"y":120,"height":150,"rt":145,"gt":145,"bt":110},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"San Francisco","airquality_raw":20.86367598,"x":540,"y":120,"height":150,"rt":149,"gt":149,"bt":106},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"San Francisco","airquality_raw":22.6463624,"x":545,"y":120,"height":150,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"San Francisco","airquality_raw":24.78711715,"x":550,"y":120,"height":150,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"San Francisco","airquality_raw":25.66499726,"x":555,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"San Francisco","airquality_raw":26.04205972,"x":560,"y":120,"height":150,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"San Francisco","airquality_raw":25.4380175,"x":565,"y":120,"height":150,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"San Francisco","airquality_raw":26.18571665,"x":570,"y":120,"height":150,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"San Francisco","airquality_raw":25.85127017,"x":575,"y":120,"height":150,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"San Francisco","airquality_raw":26.36713445,"x":580,"y":120,"height":150,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"San Francisco","airquality_raw":27.09292622,"x":585,"y":120,"height":150,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"San Francisco","airquality_raw":27.25039694,"x":590,"y":120,"height":150,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"San Francisco","airquality_raw":27.82915072,"x":595,"y":120,"height":150,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"San Francisco","airquality_raw":29.0005283,"x":600,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"San Francisco","airquality_raw":31.32271967,"x":605,"y":120,"height":150,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"San Francisco","airquality_raw":33.32752741,"x":610,"y":120,"height":150,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"San Francisco","airquality_raw":31.96753293,"x":615,"y":120,"height":150,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"San Francisco","airquality_raw":29.76402071,"x":620,"y":120,"height":150,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"San Francisco","airquality_raw":27.78609169,"x":625,"y":120,"height":150,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"San Francisco","airquality_raw":26.97879514,"x":630,"y":120,"height":150,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"San Francisco","airquality_raw":27.85615922,"x":635,"y":120,"height":150,"rt":113,"gt":113,"bt":142},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"San Francisco","airquality_raw":27.67691154,"x":640,"y":120,"height":150,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"San Francisco","airquality_raw":26.5616994,"x":645,"y":120,"height":150,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"San Francisco","airquality_raw":27.18527269,"x":650,"y":120,"height":150,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"San Francisco","airquality_raw":28.05367416,"x":655,"y":120,"height":150,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"San Francisco","airquality_raw":28.52284986,"x":660,"y":120,"height":150,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"San Francisco","airquality_raw":27.61649923,"x":665,"y":120,"height":150,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"San Francisco","airquality_raw":26.8023975,"x":670,"y":120,"height":150,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"San Francisco","airquality_raw":24.91031124,"x":675,"y":120,"height":150,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"San Francisco","airquality_raw":24.54247062,"x":680,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"San Francisco","airquality_raw":23.70414747,"x":685,"y":120,"height":150,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"San Francisco","airquality_raw":23.94283284,"x":690,"y":120,"height":150,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"San Francisco","airquality_raw":24.44325393,"x":695,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"San Francisco","airquality_raw":23.88683711,"x":700,"y":120,"height":150,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"San Francisco","airquality_raw":22.88045333,"x":705,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"San Francisco","airquality_raw":22.15166218,"x":710,"y":120,"height":150,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"San Francisco","airquality_raw":22.27592447,"x":715,"y":120,"height":150,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"San Francisco","airquality_raw":21.95203878,"x":720,"y":120,"height":150,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"San Francisco","airquality_raw":22.87396997,"x":725,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"San Francisco","airquality_raw":23.52188066,"x":730,"y":120,"height":150,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"San Francisco","airquality_raw":23.07829993,"x":735,"y":120,"height":150,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"San Francisco","airquality_raw":22.93751538,"x":740,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"San Francisco","airquality_raw":22.87246271,"x":745,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"San Francisco","airquality_raw":22.88200073,"x":750,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"San Francisco","airquality_raw":22.95646652,"x":755,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"San Francisco","airquality_raw":22.90770294,"x":760,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"San Francisco","airquality_raw":22.64283584,"x":765,"y":120,"height":150,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"San Francisco","airquality_raw":22.26161503,"x":770,"y":120,"height":150,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"San Francisco","airquality_raw":22.33122463,"x":775,"y":120,"height":150,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"San Francisco","airquality_raw":22.47431409,"x":780,"y":120,"height":150,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"San Francisco","airquality_raw":22.45696142,"x":785,"y":120,"height":150,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"San Francisco","airquality_raw":22.11397216,"x":790,"y":120,"height":150,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"San Francisco","airquality_raw":22.62093212,"x":795,"y":120,"height":150,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"San Francisco","airquality_raw":24.69659248,"x":800,"y":120,"height":150,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"San Francisco","airquality_raw":25.49652021,"x":805,"y":120,"height":150,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"San Francisco","airquality_raw":25.77244701,"x":810,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"San Francisco","airquality_raw":25.64925396,"x":815,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"San Francisco","airquality_raw":25.239748,"x":820,"y":120,"height":150,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"San Francisco","airquality_raw":25.97957848,"x":825,"y":120,"height":150,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"San Francisco","airquality_raw":26.31990771,"x":830,"y":120,"height":150,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"San Francisco","airquality_raw":24.55784566,"x":835,"y":120,"height":150,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"San Francisco","airquality_raw":25.22977466,"x":840,"y":120,"height":150,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"San Francisco","airquality_raw":28.20867618,"x":845,"y":120,"height":150,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"San Francisco","airquality_raw":28.6004765,"x":850,"y":120,"height":150,"rt":109,"gt":109,"bt":146},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"San Francisco","airquality_raw":28.15832361,"x":855,"y":120,"height":150,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"San Francisco","airquality_raw":26.0685571,"x":860,"y":120,"height":150,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"San Francisco","airquality_raw":26.19761087,"x":865,"y":120,"height":150,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"San Francisco","airquality_raw":25.58882508,"x":870,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"San Francisco","airquality_raw":23.4457753,"x":875,"y":120,"height":150,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"San Francisco","airquality_raw":23.0213124,"x":880,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"San Francisco","airquality_raw":22.71623605,"x":885,"y":120,"height":150,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"San Francisco","airquality_raw":22.96423106,"x":890,"y":120,"height":150,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"San Francisco","airquality_raw":23.25932443,"x":895,"y":120,"height":150,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"San Francisco","airquality_raw":24.11294011,"x":900,"y":120,"height":150,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"San Francisco","airquality_raw":24.16374942,"x":905,"y":120,"height":150,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"San Francisco","airquality_raw":24.77146535,"x":910,"y":120,"height":150,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"San Francisco","airquality_raw":25.73160252,"x":915,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"San Francisco","airquality_raw":25.27141383,"x":920,"y":120,"height":150,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"San Francisco","airquality_raw":25.61071753,"x":925,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"San Francisco","airquality_raw":24.21490241,"x":930,"y":120,"height":150,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"San Francisco","airquality_raw":24.08073647,"x":935,"y":120,"height":150,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"San Francisco","airquality_raw":24.28020537,"x":940,"y":120,"height":150,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"San Francisco","airquality_raw":24.8379883,"x":945,"y":120,"height":150,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"San Francisco","airquality_raw":25.15559165,"x":950,"y":120,"height":150,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"San Francisco","airquality_raw":26.50375582,"x":955,"y":120,"height":150,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"San Francisco","airquality_raw":28.84609082,"x":960,"y":120,"height":150,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"San Francisco","airquality_raw":32.66916585,"x":965,"y":120,"height":150,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"San Francisco","airquality_raw":33.50604817,"x":970,"y":120,"height":150,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"San Francisco","airquality_raw":29.19380993,"x":975,"y":120,"height":150,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"San Francisco","airquality_raw":28.90211532,"x":980,"y":120,"height":150,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"San Francisco","airquality_raw":28.98555249,"x":985,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"San Francisco","airquality_raw":30.05395616,"x":990,"y":120,"height":150,"rt":102,"gt":102,"bt":153},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"San Francisco","airquality_raw":29.10140156,"x":995,"y":120,"height":150,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"San Francisco","airquality_raw":28.43939923,"x":1000,"y":120,"height":150,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"San Francisco","airquality_raw":26.27881497,"x":1005,"y":120,"height":150,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"San Francisco","airquality_raw":25.91468603,"x":1010,"y":120,"height":150,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"San Francisco","airquality_raw":25.67436022,"x":1015,"y":120,"height":150,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"San Francisco","airquality_raw":24.86756489,"x":1020,"y":120,"height":150,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"San Francisco","airquality_raw":24.89470189,"x":1025,"y":120,"height":150,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Shanghai","airquality_raw":37.78394506,"x":200,"y":150,"height":180,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Shanghai","airquality_raw":36.90227909,"x":205,"y":150,"height":180,"rt":67,"gt":67,"bt":188},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Shanghai","airquality_raw":35.47069882,"x":210,"y":150,"height":180,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Shanghai","airquality_raw":36.25744123,"x":215,"y":150,"height":180,"rt":70,"gt":70,"bt":185},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Shanghai","airquality_raw":39.19364314,"x":220,"y":150,"height":180,"rt":55,"gt":55,"bt":200},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Shanghai","airquality_raw":42.58688557,"x":225,"y":150,"height":180,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Shanghai","airquality_raw":45.99892124,"x":230,"y":150,"height":180,"rt":20,"gt":20,"bt":235},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Shanghai","airquality_raw":46.57963138,"x":235,"y":150,"height":180,"rt":17,"gt":17,"bt":238},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Shanghai","airquality_raw":45.30540228,"x":240,"y":150,"height":180,"rt":24,"gt":24,"bt":231},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Shanghai","airquality_raw":43.88412194,"x":245,"y":150,"height":180,"rt":31,"gt":31,"bt":224},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Shanghai","airquality_raw":43.37117587,"x":250,"y":150,"height":180,"rt":34,"gt":34,"bt":221},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Shanghai","airquality_raw":45.87295471,"x":255,"y":150,"height":180,"rt":21,"gt":21,"bt":234},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Shanghai","airquality_raw":47.59837021,"x":260,"y":150,"height":180,"rt":12,"gt":12,"bt":243},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Shanghai","airquality_raw":48.0320823,"x":265,"y":150,"height":180,"rt":10,"gt":10,"bt":245},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Shanghai","airquality_raw":41.98880342,"x":270,"y":150,"height":180,"rt":41,"gt":41,"bt":214},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Shanghai","airquality_raw":35.74261727,"x":275,"y":150,"height":180,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Shanghai","airquality_raw":34.97197534,"x":280,"y":150,"height":180,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Shanghai","airquality_raw":35.44156164,"x":285,"y":150,"height":180,"rt":74,"gt":74,"bt":181},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Shanghai","airquality_raw":35.20416479,"x":290,"y":150,"height":180,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Shanghai","airquality_raw":34.43664709,"x":295,"y":150,"height":180,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Shanghai","airquality_raw":33.31729501,"x":300,"y":150,"height":180,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Shanghai","airquality_raw":31.56044919,"x":305,"y":150,"height":180,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Shanghai","airquality_raw":30.89450084,"x":310,"y":150,"height":180,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Shanghai","airquality_raw":33.35368762,"x":315,"y":150,"height":180,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Shanghai","airquality_raw":33.25083594,"x":320,"y":150,"height":180,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Shanghai","airquality_raw":33.09335456,"x":325,"y":150,"height":180,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Shanghai","airquality_raw":32.85365573,"x":330,"y":150,"height":180,"rt":87,"gt":87,"bt":168},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Shanghai","airquality_raw":32.75573243,"x":335,"y":150,"height":180,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Shanghai","airquality_raw":33.83798077,"x":340,"y":150,"height":180,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Shanghai","airquality_raw":34.53238211,"x":345,"y":150,"height":180,"rt":79,"gt":79,"bt":176},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Shanghai","airquality_raw":33.23486153,"x":350,"y":150,"height":180,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Shanghai","airquality_raw":32.02936689,"x":355,"y":150,"height":180,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Shanghai","airquality_raw":31.30717844,"x":360,"y":150,"height":180,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Shanghai","airquality_raw":31.04538683,"x":365,"y":150,"height":180,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Shanghai","airquality_raw":30.56804919,"x":370,"y":150,"height":180,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Shanghai","airquality_raw":30.43829865,"x":375,"y":150,"height":180,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Shanghai","airquality_raw":30.30422572,"x":380,"y":150,"height":180,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Shanghai","airquality_raw":30.35136221,"x":385,"y":150,"height":180,"rt":100,"gt":100,"bt":155},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Shanghai","airquality_raw":30.56474232,"x":390,"y":150,"height":180,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Shanghai","airquality_raw":30.98573306,"x":395,"y":150,"height":180,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Shanghai","airquality_raw":31.46128577,"x":400,"y":150,"height":180,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Shanghai","airquality_raw":32.12340137,"x":405,"y":150,"height":180,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Shanghai","airquality_raw":33.06046987,"x":410,"y":150,"height":180,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Shanghai","airquality_raw":32.58856539,"x":415,"y":150,"height":180,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Shanghai","airquality_raw":32.42670319,"x":420,"y":150,"height":180,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Shanghai","airquality_raw":31.78217435,"x":425,"y":150,"height":180,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Shanghai","airquality_raw":32.77889711,"x":430,"y":150,"height":180,"rt":88,"gt":88,"bt":167},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Shanghai","airquality_raw":32.62444627,"x":435,"y":150,"height":180,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Shanghai","airquality_raw":31.9802035,"x":440,"y":150,"height":180,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Shanghai","airquality_raw":32.06370607,"x":445,"y":150,"height":180,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Shanghai","airquality_raw":31.39941017,"x":450,"y":150,"height":180,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Shanghai","airquality_raw":32.00817206,"x":455,"y":150,"height":180,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Shanghai","airquality_raw":31.40314493,"x":460,"y":150,"height":180,"rt":95,"gt":95,"bt":160},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Shanghai","airquality_raw":32.44565517,"x":465,"y":150,"height":180,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Shanghai","airquality_raw":32.335027,"x":470,"y":150,"height":180,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Shanghai","airquality_raw":29.7397717,"x":475,"y":150,"height":180,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Shanghai","airquality_raw":29.47791796,"x":480,"y":150,"height":180,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Shanghai","airquality_raw":28.98975421,"x":485,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Shanghai","airquality_raw":28.89694324,"x":490,"y":150,"height":180,"rt":108,"gt":108,"bt":147},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Shanghai","airquality_raw":28.99794075,"x":495,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Shanghai","airquality_raw":29.18732099,"x":500,"y":150,"height":180,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Shanghai","airquality_raw":29.81512639,"x":505,"y":150,"height":180,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Shanghai","airquality_raw":29.55857037,"x":510,"y":150,"height":180,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Shanghai","airquality_raw":28.49538499,"x":515,"y":150,"height":180,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Shanghai","airquality_raw":28.52811967,"x":520,"y":150,"height":180,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Shanghai","airquality_raw":28.98517148,"x":525,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Shanghai","airquality_raw":30.22089206,"x":530,"y":150,"height":180,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Shanghai","airquality_raw":30.74396194,"x":535,"y":150,"height":180,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Shanghai","airquality_raw":32.11570151,"x":540,"y":150,"height":180,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Shanghai","airquality_raw":34.21839336,"x":545,"y":150,"height":180,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Shanghai","airquality_raw":33.8560504,"x":550,"y":150,"height":180,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Shanghai","airquality_raw":33.83619484,"x":555,"y":150,"height":180,"rt":82,"gt":82,"bt":173},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Shanghai","airquality_raw":34.34507053,"x":560,"y":150,"height":180,"rt":80,"gt":80,"bt":175},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Shanghai","airquality_raw":34.85033358,"x":565,"y":150,"height":180,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Shanghai","airquality_raw":34.79877488,"x":570,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Shanghai","airquality_raw":34.69968829,"x":575,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Shanghai","airquality_raw":34.71837214,"x":580,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Shanghai","airquality_raw":34.88158379,"x":585,"y":150,"height":180,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Shanghai","airquality_raw":32.40441534,"x":590,"y":150,"height":180,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Shanghai","airquality_raw":31.48765543,"x":595,"y":150,"height":180,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Shanghai","airquality_raw":30.67980771,"x":600,"y":150,"height":180,"rt":99,"gt":99,"bt":156},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Shanghai","airquality_raw":30.28483031,"x":605,"y":150,"height":180,"rt":101,"gt":101,"bt":154},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Shanghai","airquality_raw":29.68618981,"x":610,"y":150,"height":180,"rt":104,"gt":104,"bt":151},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Shanghai","airquality_raw":28.95891898,"x":615,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Shanghai","airquality_raw":29.04397878,"x":620,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Shanghai","airquality_raw":29.14038907,"x":625,"y":150,"height":180,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Shanghai","airquality_raw":29.03740864,"x":630,"y":150,"height":180,"rt":107,"gt":107,"bt":148},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Shanghai","airquality_raw":29.41944875,"x":635,"y":150,"height":180,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Shanghai","airquality_raw":29.26701503,"x":640,"y":150,"height":180,"rt":106,"gt":106,"bt":149},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Shanghai","airquality_raw":30.00650914,"x":645,"y":150,"height":180,"rt":102,"gt":102,"bt":153},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Shanghai","airquality_raw":31.90204878,"x":650,"y":150,"height":180,"rt":92,"gt":92,"bt":163},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Shanghai","airquality_raw":34.93454825,"x":655,"y":150,"height":180,"rt":77,"gt":77,"bt":178},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Shanghai","airquality_raw":36.02228119,"x":660,"y":150,"height":180,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Shanghai","airquality_raw":35.92356649,"x":665,"y":150,"height":180,"rt":72,"gt":72,"bt":183},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Shanghai","airquality_raw":36.48266809,"x":670,"y":150,"height":180,"rt":69,"gt":69,"bt":186},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Shanghai","airquality_raw":36.96165525,"x":675,"y":150,"height":180,"rt":66,"gt":66,"bt":189},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Shanghai","airquality_raw":35.90285975,"x":680,"y":150,"height":180,"rt":72,"gt":72,"bt":183},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Shanghai","airquality_raw":36.47602837,"x":685,"y":150,"height":180,"rt":69,"gt":69,"bt":186},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Shanghai","airquality_raw":37.12320401,"x":690,"y":150,"height":180,"rt":66,"gt":66,"bt":189},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Shanghai","airquality_raw":37.08659726,"x":695,"y":150,"height":180,"rt":66,"gt":66,"bt":189},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Shanghai","airquality_raw":38.46640706,"x":700,"y":150,"height":180,"rt":59,"gt":59,"bt":196},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Shanghai","airquality_raw":39.78915616,"x":705,"y":150,"height":180,"rt":52,"gt":52,"bt":203},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Shanghai","airquality_raw":43.45400664,"x":710,"y":150,"height":180,"rt":33,"gt":33,"bt":222},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Shanghai","airquality_raw":44.3049458,"x":715,"y":150,"height":180,"rt":29,"gt":29,"bt":226},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Shanghai","airquality_raw":42.46843348,"x":720,"y":150,"height":180,"rt":38,"gt":38,"bt":217},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Shanghai","airquality_raw":41.25003617,"x":725,"y":150,"height":180,"rt":45,"gt":45,"bt":210},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Shanghai","airquality_raw":40.98746869,"x":730,"y":150,"height":180,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Shanghai","airquality_raw":41.42498715,"x":735,"y":150,"height":180,"rt":44,"gt":44,"bt":211},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Shanghai","airquality_raw":39.0966883,"x":740,"y":150,"height":180,"rt":56,"gt":56,"bt":199},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Shanghai","airquality_raw":37.80648206,"x":745,"y":150,"height":180,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Shanghai","airquality_raw":38.40748753,"x":750,"y":150,"height":180,"rt":59,"gt":59,"bt":196},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Shanghai","airquality_raw":39.26168868,"x":755,"y":150,"height":180,"rt":55,"gt":55,"bt":200},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Shanghai","airquality_raw":41.04566892,"x":760,"y":150,"height":180,"rt":46,"gt":46,"bt":209},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Shanghai","airquality_raw":43.12814167,"x":765,"y":150,"height":180,"rt":35,"gt":35,"bt":220},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Shanghai","airquality_raw":46.13976895,"x":770,"y":150,"height":180,"rt":20,"gt":20,"bt":235},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Shanghai","airquality_raw":45.43404026,"x":775,"y":150,"height":180,"rt":23,"gt":23,"bt":232},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Shanghai","airquality_raw":45.3241106,"x":780,"y":150,"height":180,"rt":24,"gt":24,"bt":231},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Shanghai","airquality_raw":42.96652264,"x":785,"y":150,"height":180,"rt":36,"gt":36,"bt":219},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Shanghai","airquality_raw":40.14566325,"x":790,"y":150,"height":180,"rt":50,"gt":50,"bt":205},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Shanghai","airquality_raw":38.09134999,"x":795,"y":150,"height":180,"rt":61,"gt":61,"bt":194},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Shanghai","airquality_raw":37.56617433,"x":800,"y":150,"height":180,"rt":63,"gt":63,"bt":192},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Shanghai","airquality_raw":36.85553484,"x":805,"y":150,"height":180,"rt":67,"gt":67,"bt":188},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Shanghai","airquality_raw":36.65002118,"x":810,"y":150,"height":180,"rt":68,"gt":68,"bt":187},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Shanghai","airquality_raw":37.52400971,"x":815,"y":150,"height":180,"rt":64,"gt":64,"bt":191},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Shanghai","airquality_raw":37.92739116,"x":820,"y":150,"height":180,"rt":62,"gt":62,"bt":193},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Shanghai","airquality_raw":38.05709798,"x":825,"y":150,"height":180,"rt":61,"gt":61,"bt":194},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Shanghai","airquality_raw":34.06937193,"x":830,"y":150,"height":180,"rt":81,"gt":81,"bt":174},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Shanghai","airquality_raw":33.51368499,"x":835,"y":150,"height":180,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Shanghai","airquality_raw":33.22829969,"x":840,"y":150,"height":180,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Shanghai","airquality_raw":33.2912784,"x":845,"y":150,"height":180,"rt":85,"gt":85,"bt":170},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Shanghai","airquality_raw":32.2136814,"x":850,"y":150,"height":180,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Shanghai","airquality_raw":32.48268448,"x":855,"y":150,"height":180,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Shanghai","airquality_raw":32.32930998,"x":860,"y":150,"height":180,"rt":90,"gt":90,"bt":165},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Shanghai","airquality_raw":32.1854798,"x":865,"y":150,"height":180,"rt":91,"gt":91,"bt":164},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Shanghai","airquality_raw":32.49395271,"x":870,"y":150,"height":180,"rt":89,"gt":89,"bt":166},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Shanghai","airquality_raw":33.50254321,"x":875,"y":150,"height":180,"rt":84,"gt":84,"bt":171},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Shanghai","airquality_raw":34.775085,"x":880,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Shanghai","airquality_raw":35.16450121,"x":885,"y":150,"height":180,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Shanghai","airquality_raw":36.37141172,"x":890,"y":150,"height":180,"rt":70,"gt":70,"bt":185},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Shanghai","airquality_raw":35.00382347,"x":895,"y":150,"height":180,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Shanghai","airquality_raw":33.09494648,"x":900,"y":150,"height":180,"rt":86,"gt":86,"bt":169},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Shanghai","airquality_raw":36.12723017,"x":905,"y":150,"height":180,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Shanghai","airquality_raw":35.64056516,"x":910,"y":150,"height":180,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Shanghai","airquality_raw":38.0948925,"x":915,"y":150,"height":180,"rt":61,"gt":61,"bt":194},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Shanghai","airquality_raw":36.60833098,"x":920,"y":150,"height":180,"rt":68,"gt":68,"bt":187},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Shanghai","airquality_raw":34.69323444,"x":925,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Shanghai","airquality_raw":34.65250042,"x":930,"y":150,"height":180,"rt":78,"gt":78,"bt":177},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Shanghai","airquality_raw":35.26141253,"x":935,"y":150,"height":180,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Shanghai","airquality_raw":35.24612584,"x":940,"y":150,"height":180,"rt":75,"gt":75,"bt":180},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Shanghai","airquality_raw":35.59038403,"x":945,"y":150,"height":180,"rt":73,"gt":73,"bt":182},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Shanghai","airquality_raw":36.05686549,"x":950,"y":150,"height":180,"rt":71,"gt":71,"bt":184},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Shanghai","airquality_raw":35.0147516,"x":955,"y":150,"height":180,"rt":76,"gt":76,"bt":179},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Shanghai","airquality_raw":33.7731645,"x":960,"y":150,"height":180,"rt":83,"gt":83,"bt":172},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Shanghai","airquality_raw":31.79804865,"x":965,"y":150,"height":180,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Shanghai","airquality_raw":31.8136273,"x":970,"y":150,"height":180,"rt":93,"gt":93,"bt":162},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Shanghai","airquality_raw":31.0812168,"x":975,"y":150,"height":180,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Shanghai","airquality_raw":30.07731675,"x":980,"y":150,"height":180,"rt":102,"gt":102,"bt":153},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Shanghai","airquality_raw":29.72882987,"x":985,"y":150,"height":180,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Shanghai","airquality_raw":29.50734816,"x":990,"y":150,"height":180,"rt":105,"gt":105,"bt":150},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Shanghai","airquality_raw":29.86239772,"x":995,"y":150,"height":180,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Shanghai","airquality_raw":29.89155719,"x":1000,"y":150,"height":180,"rt":103,"gt":103,"bt":152},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Shanghai","airquality_raw":30.86239313,"x":1005,"y":150,"height":180,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Shanghai","airquality_raw":31.50576264,"x":1010,"y":150,"height":180,"rt":94,"gt":94,"bt":161},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Shanghai","airquality_raw":30.99631842,"x":1015,"y":150,"height":180,"rt":97,"gt":97,"bt":158},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Shanghai","airquality_raw":30.83736135,"x":1020,"y":150,"height":180,"rt":98,"gt":98,"bt":157},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Shanghai","airquality_raw":31.18229996,"x":1025,"y":150,"height":180,"rt":96,"gt":96,"bt":159},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Singapore","airquality_raw":20.61959736,"x":200,"y":180,"height":210,"rt":150,"gt":150,"bt":105},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Singapore","airquality_raw":21.09357054,"x":205,"y":180,"height":210,"rt":147,"gt":147,"bt":108},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Singapore","airquality_raw":20.71242543,"x":210,"y":180,"height":210,"rt":149,"gt":149,"bt":106},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Singapore","airquality_raw":21.74195737,"x":215,"y":180,"height":210,"rt":144,"gt":144,"bt":111},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Singapore","airquality_raw":21.78375553,"x":220,"y":180,"height":210,"rt":144,"gt":144,"bt":111},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Singapore","airquality_raw":22.47158476,"x":225,"y":180,"height":210,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Singapore","airquality_raw":21.55873202,"x":230,"y":180,"height":210,"rt":145,"gt":145,"bt":110},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Singapore","airquality_raw":22.26202887,"x":235,"y":180,"height":210,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Singapore","airquality_raw":22.35381849,"x":240,"y":180,"height":210,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Singapore","airquality_raw":22.72997941,"x":245,"y":180,"height":210,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Singapore","airquality_raw":22.11732235,"x":250,"y":180,"height":210,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Singapore","airquality_raw":22.6632715,"x":255,"y":180,"height":210,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Singapore","airquality_raw":22.24801607,"x":260,"y":180,"height":210,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Singapore","airquality_raw":22.48124557,"x":265,"y":180,"height":210,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Singapore","airquality_raw":21.75094946,"x":270,"y":180,"height":210,"rt":144,"gt":144,"bt":111},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Singapore","airquality_raw":22.12775532,"x":275,"y":180,"height":210,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Singapore","airquality_raw":22.17210566,"x":280,"y":180,"height":210,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Singapore","airquality_raw":22.44809857,"x":285,"y":180,"height":210,"rt":141,"gt":141,"bt":114},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Singapore","airquality_raw":23.02063921,"x":290,"y":180,"height":210,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Singapore","airquality_raw":24.47357572,"x":295,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Singapore","airquality_raw":22.50802294,"x":300,"y":180,"height":210,"rt":140,"gt":140,"bt":115},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Singapore","airquality_raw":22.14594859,"x":305,"y":180,"height":210,"rt":142,"gt":142,"bt":113},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Singapore","airquality_raw":21.66026891,"x":310,"y":180,"height":210,"rt":145,"gt":145,"bt":110},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Singapore","airquality_raw":21.99503485,"x":315,"y":180,"height":210,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Singapore","airquality_raw":22.04675823,"x":320,"y":180,"height":210,"rt":143,"gt":143,"bt":112},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Singapore","airquality_raw":22.96574123,"x":325,"y":180,"height":210,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Singapore","airquality_raw":22.77509251,"x":330,"y":180,"height":210,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Singapore","airquality_raw":24.2662265,"x":335,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Singapore","airquality_raw":23.94054702,"x":340,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Singapore","airquality_raw":24.48175131,"x":345,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Singapore","airquality_raw":23.734321,"x":350,"y":180,"height":210,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Singapore","airquality_raw":25.42399616,"x":355,"y":180,"height":210,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Singapore","airquality_raw":25.11127745,"x":360,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Singapore","airquality_raw":24.77931602,"x":365,"y":180,"height":210,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Singapore","airquality_raw":23.44063866,"x":370,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Singapore","airquality_raw":24.07441286,"x":375,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Singapore","airquality_raw":23.23964031,"x":380,"y":180,"height":210,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Singapore","airquality_raw":23.5328179,"x":385,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Singapore","airquality_raw":22.95603543,"x":390,"y":180,"height":210,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Singapore","airquality_raw":23.49612514,"x":395,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Singapore","airquality_raw":22.78698302,"x":400,"y":180,"height":210,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Singapore","airquality_raw":23.24805316,"x":405,"y":180,"height":210,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Singapore","airquality_raw":23.50444237,"x":410,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Singapore","airquality_raw":24.83903344,"x":415,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Singapore","airquality_raw":24.09684533,"x":420,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Singapore","airquality_raw":23.82035811,"x":425,"y":180,"height":210,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Singapore","airquality_raw":23.1621507,"x":430,"y":180,"height":210,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Singapore","airquality_raw":23.54719749,"x":435,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Singapore","airquality_raw":24.34937031,"x":440,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Singapore","airquality_raw":24.52612728,"x":445,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Singapore","airquality_raw":24.00160929,"x":450,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Singapore","airquality_raw":25.04362159,"x":455,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Singapore","airquality_raw":24.23672917,"x":460,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Singapore","airquality_raw":25.8641593,"x":465,"y":180,"height":210,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Singapore","airquality_raw":26.14405594,"x":470,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Singapore","airquality_raw":28.29005851,"x":475,"y":180,"height":210,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Singapore","airquality_raw":26.91708789,"x":480,"y":180,"height":210,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Singapore","airquality_raw":26.10492311,"x":485,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Singapore","airquality_raw":25.14191007,"x":490,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Singapore","airquality_raw":25.74056222,"x":495,"y":180,"height":210,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Singapore","airquality_raw":24.60044911,"x":500,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Singapore","airquality_raw":25.10823357,"x":505,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Singapore","airquality_raw":23.96232038,"x":510,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Singapore","airquality_raw":25.20885965,"x":515,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Singapore","airquality_raw":25.37473355,"x":520,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Singapore","airquality_raw":26.68624499,"x":525,"y":180,"height":210,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Singapore","airquality_raw":26.64912479,"x":530,"y":180,"height":210,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Singapore","airquality_raw":28.36644214,"x":535,"y":180,"height":210,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Singapore","airquality_raw":25.48646093,"x":540,"y":180,"height":210,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Singapore","airquality_raw":25.17280412,"x":545,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Singapore","airquality_raw":24.02624958,"x":550,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Singapore","airquality_raw":24.25901556,"x":555,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Singapore","airquality_raw":24.09196017,"x":560,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Singapore","airquality_raw":26.36693193,"x":565,"y":180,"height":210,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Singapore","airquality_raw":25.38497715,"x":570,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Singapore","airquality_raw":25.91271065,"x":575,"y":180,"height":210,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Singapore","airquality_raw":26.10611938,"x":580,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Singapore","airquality_raw":27.67887848,"x":585,"y":180,"height":210,"rt":114,"gt":114,"bt":141},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Singapore","airquality_raw":27.97444552,"x":590,"y":180,"height":210,"rt":112,"gt":112,"bt":143},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Singapore","airquality_raw":28.1433304,"x":595,"y":180,"height":210,"rt":111,"gt":111,"bt":144},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Singapore","airquality_raw":25.29831623,"x":600,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Singapore","airquality_raw":25.99798579,"x":605,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Singapore","airquality_raw":24.51047742,"x":610,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Singapore","airquality_raw":24.62121732,"x":615,"y":180,"height":210,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Singapore","airquality_raw":24.07492594,"x":620,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Singapore","airquality_raw":24.15930165,"x":625,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Singapore","airquality_raw":23.89104282,"x":630,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Singapore","airquality_raw":24.72558781,"x":635,"y":180,"height":210,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Singapore","airquality_raw":24.68548545,"x":640,"y":180,"height":210,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Singapore","airquality_raw":25.85879411,"x":645,"y":180,"height":210,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Singapore","airquality_raw":26.24564921,"x":650,"y":180,"height":210,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Singapore","airquality_raw":26.64825996,"x":655,"y":180,"height":210,"rt":119,"gt":119,"bt":136},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Singapore","airquality_raw":24.96056446,"x":660,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Singapore","airquality_raw":24.89211175,"x":665,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Singapore","airquality_raw":24.34781591,"x":670,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Singapore","airquality_raw":25.25620941,"x":675,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Singapore","airquality_raw":24.91251166,"x":680,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Singapore","airquality_raw":25.67681567,"x":685,"y":180,"height":210,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Singapore","airquality_raw":25.09618545,"x":690,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Singapore","airquality_raw":25.899623,"x":695,"y":180,"height":210,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Singapore","airquality_raw":25.73612647,"x":700,"y":180,"height":210,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Singapore","airquality_raw":27.35493043,"x":705,"y":180,"height":210,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Singapore","airquality_raw":25.87180059,"x":710,"y":180,"height":210,"rt":123,"gt":123,"bt":132},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Singapore","airquality_raw":26.24664564,"x":715,"y":180,"height":210,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Singapore","airquality_raw":25.29952672,"x":720,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Singapore","airquality_raw":24.94658075,"x":725,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Singapore","airquality_raw":24.01320903,"x":730,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Singapore","airquality_raw":23.49974884,"x":735,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Singapore","airquality_raw":23.11627672,"x":740,"y":180,"height":210,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Singapore","airquality_raw":23.45157455,"x":745,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Singapore","airquality_raw":22.89924817,"x":750,"y":180,"height":210,"rt":138,"gt":138,"bt":117},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Singapore","airquality_raw":23.06494161,"x":755,"y":180,"height":210,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Singapore","airquality_raw":22.84065846,"x":760,"y":180,"height":210,"rt":139,"gt":139,"bt":116},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Singapore","airquality_raw":24.55484842,"x":765,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Singapore","airquality_raw":26.17119936,"x":770,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Singapore","airquality_raw":26.95789988,"x":775,"y":180,"height":210,"rt":118,"gt":118,"bt":137},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Singapore","airquality_raw":24.21557655,"x":780,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Singapore","airquality_raw":24.20503863,"x":785,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Singapore","airquality_raw":23.27419213,"x":790,"y":180,"height":210,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Singapore","airquality_raw":24.03987207,"x":795,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Singapore","airquality_raw":23.32178493,"x":800,"y":180,"height":210,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Singapore","airquality_raw":24.23221111,"x":805,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Singapore","airquality_raw":23.51483215,"x":810,"y":180,"height":210,"rt":135,"gt":135,"bt":120},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Singapore","airquality_raw":24.59678753,"x":815,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Singapore","airquality_raw":24.84998628,"x":820,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Singapore","airquality_raw":25.62955295,"x":825,"y":180,"height":210,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Singapore","airquality_raw":24.60683753,"x":830,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Singapore","airquality_raw":24.57231375,"x":835,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Singapore","airquality_raw":23.89677111,"x":840,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Singapore","airquality_raw":24.21131117,"x":845,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Singapore","airquality_raw":23.7364243,"x":850,"y":180,"height":210,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Singapore","airquality_raw":23.98779383,"x":855,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Singapore","airquality_raw":23.09180097,"x":860,"y":180,"height":210,"rt":137,"gt":137,"bt":118},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Singapore","airquality_raw":23.652963,"x":865,"y":180,"height":210,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Singapore","airquality_raw":23.2977033,"x":870,"y":180,"height":210,"rt":136,"gt":136,"bt":119},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Singapore","airquality_raw":23.99891196,"x":875,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Singapore","airquality_raw":23.79810314,"x":880,"y":180,"height":210,"rt":134,"gt":134,"bt":121},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Singapore","airquality_raw":24.64748608,"x":885,"y":180,"height":210,"rt":129,"gt":129,"bt":126},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Singapore","airquality_raw":25.73375651,"x":890,"y":180,"height":210,"rt":124,"gt":124,"bt":131},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Singapore","airquality_raw":27.22714021,"x":895,"y":180,"height":210,"rt":116,"gt":116,"bt":139},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Singapore","airquality_raw":25.16857851,"x":900,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Singapore","airquality_raw":25.15381052,"x":905,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Singapore","airquality_raw":24.47036827,"x":910,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Singapore","airquality_raw":24.55528067,"x":915,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Singapore","airquality_raw":24.16182523,"x":920,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Singapore","airquality_raw":24.88814741,"x":925,"y":180,"height":210,"rt":128,"gt":128,"bt":127},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Singapore","airquality_raw":24.01671004,"x":930,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Singapore","airquality_raw":25.09303349,"x":935,"y":180,"height":210,"rt":127,"gt":127,"bt":128},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Singapore","airquality_raw":24.10428541,"x":940,"y":180,"height":210,"rt":132,"gt":132,"bt":123},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Singapore","airquality_raw":26.11101634,"x":945,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Singapore","airquality_raw":27.36987151,"x":950,"y":180,"height":210,"rt":115,"gt":115,"bt":140},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Singapore","airquality_raw":27.14095668,"x":955,"y":180,"height":210,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Singapore","airquality_raw":26.39014799,"x":960,"y":180,"height":210,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Singapore","airquality_raw":26.40683361,"x":965,"y":180,"height":210,"rt":120,"gt":120,"bt":135},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Singapore","airquality_raw":25.57966923,"x":970,"y":180,"height":210,"rt":125,"gt":125,"bt":130},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Singapore","airquality_raw":25.36249084,"x":975,"y":180,"height":210,"rt":126,"gt":126,"bt":129},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Singapore","airquality_raw":24.38176416,"x":980,"y":180,"height":210,"rt":131,"gt":131,"bt":124},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Singapore","airquality_raw":24.59142086,"x":985,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Singapore","airquality_raw":24.00233755,"x":990,"y":180,"height":210,"rt":133,"gt":133,"bt":122},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Singapore","airquality_raw":24.5434727,"x":995,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Singapore","airquality_raw":24.41844679,"x":1000,"y":180,"height":210,"rt":130,"gt":130,"bt":125},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Singapore","airquality_raw":26.07416598,"x":1005,"y":180,"height":210,"rt":122,"gt":122,"bt":133},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Singapore","airquality_raw":27.0557914,"x":1010,"y":180,"height":210,"rt":117,"gt":117,"bt":138},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Singapore","airquality_raw":28.39546428,"x":1015,"y":180,"height":210,"rt":110,"gt":110,"bt":145},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Singapore","airquality_raw":26.3016945,"x":1020,"y":180,"height":210,"rt":121,"gt":121,"bt":134},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Singapore","airquality_raw":27.26986804,"x":1025,"y":180,"height":210,"rt":116,"gt":116,"bt":139}
];
var sou = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","sound":1571.267789,"x":200,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","sound":1596.543097,"x":205,"y":0,"height":30,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","sound":1623.296861,"x":210,"y":0,"height":30,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","sound":1603.004405,"x":215,"y":0,"height":30,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","sound":1566.767696,"x":220,"y":0,"height":30,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","sound":1581.987456,"x":225,"y":0,"height":30,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","sound":1574.817851,"x":230,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","sound":1627.493966,"x":235,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","sound":1587.310586,"x":240,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","sound":1619.330767,"x":245,"y":0,"height":30,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","sound":1628.239745,"x":250,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","sound":1606.369648,"x":255,"y":0,"height":30,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","sound":1535.081511,"x":260,"y":0,"height":30,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","sound":1450.281906,"x":265,"y":0,"height":30,"rt":97,"gt":198,"bt":57},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","sound":1410.839853,"x":270,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","sound":1409.895431,"x":275,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","sound":1410.143342,"x":280,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","sound":1405.470575,"x":285,"y":0,"height":30,"rt":100,"gt":203,"bt":52},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","sound":1407.553665,"x":290,"y":0,"height":30,"rt":100,"gt":203,"bt":52},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","sound":1389.76949,"x":295,"y":0,"height":30,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","sound":1408.686101,"x":300,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","sound":1416.36933,"x":305,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","sound":1417.190963,"x":310,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","sound":1445.385468,"x":315,"y":0,"height":30,"rt":97,"gt":198,"bt":57},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","sound":1475.447575,"x":320,"y":0,"height":30,"rt":95,"gt":194,"bt":61},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","sound":1595.811749,"x":325,"y":0,"height":30,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","sound":1574.795338,"x":330,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","sound":1575.172518,"x":335,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","sound":1536.396038,"x":340,"y":0,"height":30,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","sound":1566.19744,"x":345,"y":0,"height":30,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","sound":1583.523775,"x":350,"y":0,"height":30,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","sound":1557.572579,"x":355,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","sound":1518.662981,"x":360,"y":0,"height":30,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","sound":1543.303658,"x":365,"y":0,"height":30,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","sound":1532.02602,"x":370,"y":0,"height":30,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","sound":1521.429265,"x":375,"y":0,"height":30,"rt":92,"gt":189,"bt":66},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","sound":1522.193838,"x":380,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","sound":1517.406093,"x":385,"y":0,"height":30,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","sound":1414.707194,"x":390,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","sound":1408.103899,"x":395,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","sound":1403.850802,"x":400,"y":0,"height":30,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","sound":1400.214139,"x":405,"y":0,"height":30,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","sound":1380.012426,"x":410,"y":0,"height":30,"rt":101,"gt":207,"bt":48},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","sound":1405.09673,"x":415,"y":0,"height":30,"rt":100,"gt":203,"bt":52},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","sound":1426.455558,"x":420,"y":0,"height":30,"rt":98,"gt":201,"bt":54},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","sound":1416.653112,"x":425,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","sound":1412.526365,"x":430,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","sound":1394.085399,"x":435,"y":0,"height":30,"rt":100,"gt":205,"bt":50},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","sound":1409.428852,"x":440,"y":0,"height":30,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","sound":1385.271608,"x":445,"y":0,"height":30,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","sound":1390.179143,"x":450,"y":0,"height":30,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","sound":1391.308351,"x":455,"y":0,"height":30,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","sound":1428.441105,"x":460,"y":0,"height":30,"rt":98,"gt":200,"bt":55},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","sound":1454.446904,"x":465,"y":0,"height":30,"rt":97,"gt":197,"bt":58},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","sound":1416.205967,"x":470,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","sound":1537.097966,"x":475,"y":0,"height":30,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","sound":1477.633918,"x":480,"y":0,"height":30,"rt":95,"gt":194,"bt":61},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","sound":1452.224983,"x":485,"y":0,"height":30,"rt":97,"gt":197,"bt":58},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","sound":1415.205124,"x":490,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","sound":1464.002786,"x":495,"y":0,"height":30,"rt":96,"gt":196,"bt":59},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","sound":1469.295473,"x":500,"y":0,"height":30,"rt":96,"gt":195,"bt":60},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","sound":1465.108305,"x":505,"y":0,"height":30,"rt":96,"gt":196,"bt":59},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","sound":1450.0559,"x":510,"y":0,"height":30,"rt":97,"gt":198,"bt":57},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","sound":1416.551909,"x":515,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","sound":1418.803846,"x":520,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","sound":1412.980126,"x":525,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","sound":1406.709606,"x":530,"y":0,"height":30,"rt":100,"gt":203,"bt":52},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","sound":1419.147665,"x":535,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","sound":1391.668032,"x":540,"y":0,"height":30,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","sound":1478.642818,"x":545,"y":0,"height":30,"rt":95,"gt":194,"bt":61},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","sound":1568.284663,"x":550,"y":0,"height":30,"rt":89,"gt":183,"bt":72},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","sound":1569.449864,"x":555,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","sound":1578.392475,"x":560,"y":0,"height":30,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","sound":1549.555879,"x":565,"y":0,"height":30,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","sound":1555.664402,"x":570,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","sound":1532.581752,"x":575,"y":0,"height":30,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","sound":1603.422614,"x":580,"y":0,"height":30,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","sound":1554.762417,"x":585,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","sound":1553.241482,"x":590,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","sound":1594.483008,"x":595,"y":0,"height":30,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","sound":1603.815216,"x":600,"y":0,"height":30,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","sound":1614.589202,"x":605,"y":0,"height":30,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","sound":1466.57534,"x":610,"y":0,"height":30,"rt":96,"gt":196,"bt":59},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","sound":1378.121941,"x":615,"y":0,"height":30,"rt":101,"gt":207,"bt":48},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","sound":1384.526162,"x":620,"y":0,"height":30,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","sound":1267.478304,"x":625,"y":0,"height":30,"rt":108,"gt":221,"bt":34},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","sound":1310.24707,"x":630,"y":0,"height":30,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","sound":1375.26615,"x":635,"y":0,"height":30,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","sound":1526.418389,"x":640,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","sound":1508.358276,"x":645,"y":0,"height":30,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","sound":1519.968155,"x":650,"y":0,"height":30,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","sound":1526.683826,"x":655,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","sound":1540.216208,"x":660,"y":0,"height":30,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","sound":1365.222388,"x":665,"y":0,"height":30,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","sound":1414.442654,"x":670,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","sound":1424.709535,"x":675,"y":0,"height":30,"rt":98,"gt":201,"bt":54},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","sound":1450.547665,"x":680,"y":0,"height":30,"rt":97,"gt":198,"bt":57},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","sound":1432.481615,"x":685,"y":0,"height":30,"rt":98,"gt":200,"bt":55},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","sound":1547.387912,"x":690,"y":0,"height":30,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","sound":1561.40513,"x":695,"y":0,"height":30,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","sound":1558.389384,"x":700,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","sound":1568.354784,"x":705,"y":0,"height":30,"rt":89,"gt":183,"bt":72},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","sound":1587.191035,"x":710,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","sound":1591.652225,"x":715,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","sound":1586.246137,"x":720,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","sound":1584.850711,"x":725,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","sound":1610.162249,"x":730,"y":0,"height":30,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","sound":1660.28008,"x":735,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","sound":1668.276796,"x":740,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","sound":1571.219683,"x":745,"y":0,"height":30,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","sound":1454.746835,"x":750,"y":0,"height":30,"rt":97,"gt":197,"bt":58},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","sound":1451.392115,"x":755,"y":0,"height":30,"rt":97,"gt":197,"bt":58},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","sound":1490.990572,"x":760,"y":0,"height":30,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","sound":1552.971099,"x":765,"y":0,"height":30,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","sound":1502.341229,"x":770,"y":0,"height":30,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","sound":1457.59924,"x":775,"y":0,"height":30,"rt":96,"gt":197,"bt":58},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","sound":1550.314338,"x":780,"y":0,"height":30,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","sound":1654.317696,"x":785,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","sound":1648.878849,"x":790,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","sound":1639.971164,"x":795,"y":0,"height":30,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","sound":1665.750509,"x":800,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","sound":1657.425264,"x":805,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","sound":1654.672223,"x":810,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","sound":1635.681186,"x":815,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","sound":1629.186677,"x":820,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","sound":1626.399843,"x":825,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","sound":1652.375276,"x":830,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","sound":1643.886866,"x":835,"y":0,"height":30,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","sound":1636.947778,"x":840,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","sound":1639.069893,"x":845,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","sound":1660.188677,"x":850,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","sound":1637.920384,"x":855,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","sound":1524.936355,"x":860,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","sound":1512.474798,"x":865,"y":0,"height":30,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","sound":1472.351702,"x":870,"y":0,"height":30,"rt":95,"gt":195,"bt":60},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","sound":1505.384729,"x":875,"y":0,"height":30,"rt":93,"gt":191,"bt":64},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","sound":1498.01459,"x":880,"y":0,"height":30,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","sound":1412.019005,"x":885,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","sound":1423.999491,"x":890,"y":0,"height":30,"rt":99,"gt":201,"bt":54},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","sound":1510.259687,"x":895,"y":0,"height":30,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","sound":1650.809925,"x":900,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","sound":1667.432699,"x":905,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","sound":1698.998745,"x":910,"y":0,"height":30,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","sound":1745.644757,"x":915,"y":0,"height":30,"rt":78,"gt":160,"bt":95},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","sound":1665.067563,"x":920,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","sound":1671.560696,"x":925,"y":0,"height":30,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","sound":1664.350094,"x":930,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","sound":1677.689876,"x":935,"y":0,"height":30,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","sound":1645.169461,"x":940,"y":0,"height":30,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","sound":1636.303279,"x":945,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","sound":1655.056102,"x":950,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","sound":1669.356771,"x":955,"y":0,"height":30,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","sound":1797.552482,"x":960,"y":0,"height":30,"rt":75,"gt":153,"bt":102},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","sound":1677.364674,"x":965,"y":0,"height":30,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","sound":1628.080834,"x":970,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","sound":1651.230823,"x":975,"y":0,"height":30,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","sound":1637.578081,"x":980,"y":0,"height":30,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","sound":1496.34421,"x":985,"y":0,"height":30,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","sound":1528.689142,"x":990,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","sound":1512.810995,"x":995,"y":0,"height":30,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","sound":1509.174402,"x":1000,"y":0,"height":30,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","sound":1537.369502,"x":1005,"y":0,"height":30,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","sound":1527.960866,"x":1010,"y":0,"height":30,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","sound":1413.151025,"x":1015,"y":0,"height":30,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","sound":1591.516118,"x":1020,"y":0,"height":30,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","sound":1624.223777,"x":1025,"y":0,"height":30,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","sound":1053.401426,"x":200,"y":30,"height":60,"rt":122,"gt":248,"bt":7},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","sound":1055.72684,"x":205,"y":30,"height":60,"rt":122,"gt":248,"bt":7},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","sound":1073.889899,"x":210,"y":30,"height":60,"rt":120,"gt":246,"bt":9},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","sound":1070.058309,"x":215,"y":30,"height":60,"rt":121,"gt":246,"bt":9},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","sound":1080.791973,"x":220,"y":30,"height":60,"rt":120,"gt":245,"bt":10},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","sound":1039.895219,"x":225,"y":30,"height":60,"rt":123,"gt":250,"bt":5},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","sound":1083.874729,"x":230,"y":30,"height":60,"rt":120,"gt":244,"bt":11},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","sound":1139.055556,"x":235,"y":30,"height":60,"rt":116,"gt":237,"bt":18},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","sound":1194.585483,"x":240,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","sound":1197.725905,"x":245,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","sound":1203.576507,"x":250,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","sound":1221.614632,"x":255,"y":30,"height":60,"rt":111,"gt":227,"bt":28},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","sound":1228.428552,"x":260,"y":30,"height":60,"rt":111,"gt":226,"bt":29},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","sound":1199.945222,"x":265,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","sound":1229.578321,"x":270,"y":30,"height":60,"rt":111,"gt":226,"bt":29},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","sound":1228.71383,"x":275,"y":30,"height":60,"rt":111,"gt":226,"bt":29},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","sound":1211.234052,"x":280,"y":30,"height":60,"rt":112,"gt":228,"bt":27},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","sound":1211.269624,"x":285,"y":30,"height":60,"rt":112,"gt":228,"bt":27},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","sound":1186.941762,"x":290,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","sound":1205.395591,"x":295,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","sound":1234.711805,"x":300,"y":30,"height":60,"rt":110,"gt":225,"bt":30},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","sound":1185.87466,"x":305,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","sound":1167.190922,"x":310,"y":30,"height":60,"rt":115,"gt":234,"bt":21},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","sound":1166.884374,"x":315,"y":30,"height":60,"rt":115,"gt":234,"bt":21},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","sound":1153.88181,"x":320,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","sound":1118.211193,"x":325,"y":30,"height":60,"rt":118,"gt":240,"bt":15},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","sound":1107.572482,"x":330,"y":30,"height":60,"rt":118,"gt":241,"bt":14},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","sound":1118.607706,"x":335,"y":30,"height":60,"rt":118,"gt":240,"bt":15},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","sound":1122.865593,"x":340,"y":30,"height":60,"rt":117,"gt":239,"bt":16},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","sound":1114.840668,"x":345,"y":30,"height":60,"rt":118,"gt":240,"bt":15},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","sound":1127.597605,"x":350,"y":30,"height":60,"rt":117,"gt":239,"bt":16},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","sound":1143.569434,"x":355,"y":30,"height":60,"rt":116,"gt":237,"bt":18},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","sound":1183.235865,"x":360,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","sound":1205.912016,"x":365,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","sound":1216.699552,"x":370,"y":30,"height":60,"rt":111,"gt":227,"bt":28},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","sound":1187.789387,"x":375,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","sound":1178.943094,"x":380,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","sound":1157.343256,"x":385,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","sound":1184.866461,"x":390,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","sound":1203.011907,"x":395,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","sound":1204.292746,"x":400,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","sound":1176.774902,"x":405,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","sound":1177.052598,"x":410,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","sound":1171.866874,"x":415,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","sound":1192.445411,"x":420,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","sound":1161.280684,"x":425,"y":30,"height":60,"rt":115,"gt":234,"bt":21},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","sound":1156.347814,"x":430,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","sound":1151.155166,"x":435,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","sound":1156.435591,"x":440,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","sound":1152.800945,"x":445,"y":30,"height":60,"rt":115,"gt":236,"bt":19},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","sound":1151.889635,"x":450,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","sound":1149.16134,"x":455,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","sound":1142.803029,"x":460,"y":30,"height":60,"rt":116,"gt":237,"bt":18},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","sound":1146.335316,"x":465,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","sound":1145.306079,"x":470,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","sound":1178.333641,"x":475,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","sound":1195.809271,"x":480,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","sound":1232.484702,"x":485,"y":30,"height":60,"rt":110,"gt":225,"bt":30},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","sound":1269.204803,"x":490,"y":30,"height":60,"rt":108,"gt":221,"bt":34},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","sound":1264.14804,"x":495,"y":30,"height":60,"rt":108,"gt":221,"bt":34},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","sound":1250.58941,"x":500,"y":30,"height":60,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","sound":1288.568225,"x":505,"y":30,"height":60,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","sound":1271.654489,"x":510,"y":30,"height":60,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","sound":1287.297724,"x":515,"y":30,"height":60,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","sound":1202.000769,"x":520,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","sound":1261.971444,"x":525,"y":30,"height":60,"rt":109,"gt":222,"bt":33},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","sound":1180.414451,"x":530,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","sound":1174.10142,"x":535,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","sound":1197.007896,"x":540,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","sound":1172.588646,"x":545,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","sound":1149.411788,"x":550,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","sound":1133.242727,"x":555,"y":30,"height":60,"rt":117,"gt":238,"bt":17},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","sound":1095.190447,"x":560,"y":30,"height":60,"rt":119,"gt":243,"bt":12},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","sound":1095.181243,"x":565,"y":30,"height":60,"rt":119,"gt":243,"bt":12},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","sound":1089.729101,"x":570,"y":30,"height":60,"rt":119,"gt":244,"bt":11},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","sound":1101.772612,"x":575,"y":30,"height":60,"rt":119,"gt":242,"bt":13},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","sound":1089.845182,"x":580,"y":30,"height":60,"rt":119,"gt":244,"bt":11},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","sound":1106.637642,"x":585,"y":30,"height":60,"rt":118,"gt":241,"bt":14},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","sound":1104.390571,"x":590,"y":30,"height":60,"rt":118,"gt":242,"bt":13},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","sound":1165.959876,"x":595,"y":30,"height":60,"rt":115,"gt":234,"bt":21},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","sound":1182.548981,"x":600,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","sound":1205.30074,"x":605,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","sound":1226.307268,"x":610,"y":30,"height":60,"rt":111,"gt":226,"bt":29},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","sound":1167.387555,"x":615,"y":30,"height":60,"rt":115,"gt":234,"bt":21},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","sound":1218.492834,"x":620,"y":30,"height":60,"rt":111,"gt":227,"bt":28},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","sound":1193.699932,"x":625,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","sound":1208.525011,"x":630,"y":30,"height":60,"rt":112,"gt":228,"bt":27},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","sound":1174.663781,"x":635,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","sound":1171.672861,"x":640,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","sound":1180.919192,"x":645,"y":30,"height":60,"rt":114,"gt":232,"bt":23},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","sound":1205.642184,"x":650,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","sound":1207.485464,"x":655,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","sound":1201.404638,"x":660,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","sound":1207.903403,"x":665,"y":30,"height":60,"rt":112,"gt":228,"bt":27},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","sound":1202.280498,"x":670,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","sound":1157.727668,"x":675,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","sound":1133.09318,"x":680,"y":30,"height":60,"rt":117,"gt":238,"bt":17},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","sound":1155.884201,"x":685,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","sound":1140.852831,"x":690,"y":30,"height":60,"rt":116,"gt":237,"bt":18},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","sound":1147.768224,"x":695,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","sound":1157.68239,"x":700,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","sound":1159.771539,"x":705,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","sound":1190.150151,"x":710,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","sound":1200.096554,"x":715,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","sound":1191.97635,"x":720,"y":30,"height":60,"rt":113,"gt":231,"bt":24},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","sound":1175.5906,"x":725,"y":30,"height":60,"rt":114,"gt":233,"bt":22},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","sound":1198.992629,"x":730,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","sound":1196.658378,"x":735,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","sound":1226.231816,"x":740,"y":30,"height":60,"rt":111,"gt":226,"bt":29},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","sound":1261.376754,"x":745,"y":30,"height":60,"rt":109,"gt":222,"bt":33},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","sound":1298.374241,"x":750,"y":30,"height":60,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","sound":1375.964843,"x":755,"y":30,"height":60,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","sound":1460.340219,"x":760,"y":30,"height":60,"rt":96,"gt":196,"bt":59},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","sound":1511.994953,"x":765,"y":30,"height":60,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","sound":1463.675574,"x":770,"y":30,"height":60,"rt":96,"gt":196,"bt":59},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","sound":1346.447487,"x":775,"y":30,"height":60,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","sound":1337.068128,"x":780,"y":30,"height":60,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","sound":1378.04,"x":785,"y":30,"height":60,"rt":101,"gt":207,"bt":48},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","sound":1321.293952,"x":790,"y":30,"height":60,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","sound":1247.968575,"x":795,"y":30,"height":60,"rt":110,"gt":223,"bt":32},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","sound":1147.094391,"x":800,"y":30,"height":60,"rt":116,"gt":236,"bt":19},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","sound":1153.975936,"x":805,"y":30,"height":60,"rt":115,"gt":235,"bt":20},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","sound":1193.296266,"x":810,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","sound":1192.1986,"x":815,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","sound":1249.162392,"x":820,"y":30,"height":60,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","sound":1201.126444,"x":825,"y":30,"height":60,"rt":112,"gt":229,"bt":26},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","sound":1244.561581,"x":830,"y":30,"height":60,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","sound":1320.601013,"x":835,"y":30,"height":60,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","sound":1335.582344,"x":840,"y":30,"height":60,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","sound":1354.577622,"x":845,"y":30,"height":60,"rt":103,"gt":210,"bt":45},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","sound":1365.91594,"x":850,"y":30,"height":60,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","sound":1441.548174,"x":855,"y":30,"height":60,"rt":97,"gt":199,"bt":56},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","sound":1429.397808,"x":860,"y":30,"height":60,"rt":98,"gt":200,"bt":55},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","sound":1427.320882,"x":865,"y":30,"height":60,"rt":98,"gt":201,"bt":54},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","sound":1373.994593,"x":870,"y":30,"height":60,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","sound":1345.162316,"x":875,"y":30,"height":60,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","sound":1302.468585,"x":880,"y":30,"height":60,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","sound":1291.868287,"x":885,"y":30,"height":60,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","sound":1250.343338,"x":890,"y":30,"height":60,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","sound":1216.708815,"x":895,"y":30,"height":60,"rt":111,"gt":227,"bt":28},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","sound":1116.811407,"x":900,"y":30,"height":60,"rt":118,"gt":240,"bt":15},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","sound":1108.028801,"x":905,"y":30,"height":60,"rt":118,"gt":241,"bt":14},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","sound":1087.282654,"x":910,"y":30,"height":60,"rt":120,"gt":244,"bt":11},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","sound":1039.090716,"x":915,"y":30,"height":60,"rt":123,"gt":250,"bt":5},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","sound":1054.636895,"x":920,"y":30,"height":60,"rt":122,"gt":248,"bt":7},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","sound":1028.515882,"x":925,"y":30,"height":60,"rt":123,"gt":251,"bt":4},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","sound":1016.081639,"x":930,"y":30,"height":60,"rt":124,"gt":253,"bt":2},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","sound":1050.879736,"x":935,"y":30,"height":60,"rt":122,"gt":249,"bt":6},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","sound":1062.197343,"x":940,"y":30,"height":60,"rt":121,"gt":247,"bt":8},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","sound":1094.495831,"x":945,"y":30,"height":60,"rt":119,"gt":243,"bt":12},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","sound":1130.424397,"x":950,"y":30,"height":60,"rt":117,"gt":238,"bt":17},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","sound":1208.242153,"x":955,"y":30,"height":60,"rt":112,"gt":228,"bt":27},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","sound":1287.404965,"x":960,"y":30,"height":60,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","sound":1308.440551,"x":965,"y":30,"height":60,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","sound":1275.706655,"x":970,"y":30,"height":60,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","sound":1304.52547,"x":975,"y":30,"height":60,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","sound":1292.213098,"x":980,"y":30,"height":60,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","sound":1312.845733,"x":985,"y":30,"height":60,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","sound":1328.004633,"x":990,"y":30,"height":60,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","sound":1239.547783,"x":995,"y":30,"height":60,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","sound":1264.059007,"x":1000,"y":30,"height":60,"rt":108,"gt":221,"bt":34},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","sound":1196.021595,"x":1005,"y":30,"height":60,"rt":113,"gt":230,"bt":25},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","sound":1143.095547,"x":1010,"y":30,"height":60,"rt":116,"gt":237,"bt":18},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","sound":1100.977988,"x":1015,"y":30,"height":60,"rt":119,"gt":242,"bt":13},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","sound":1083.244563,"x":1020,"y":30,"height":60,"rt":120,"gt":244,"bt":11},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","sound":1087.639818,"x":1025,"y":30,"height":60,"rt":120,"gt":244,"bt":11},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","sound":1695.269802,"x":200,"y":60,"height":90,"rt":82,"gt":166,"bt":89},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","sound":1711.39672,"x":205,"y":60,"height":90,"rt":81,"gt":164,"bt":91},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","sound":1772.790852,"x":210,"y":60,"height":90,"rt":77,"gt":156,"bt":99},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","sound":1810.559283,"x":215,"y":60,"height":90,"rt":74,"gt":152,"bt":103},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","sound":1792.76879,"x":220,"y":60,"height":90,"rt":75,"gt":154,"bt":101},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","sound":1781.796472,"x":225,"y":60,"height":90,"rt":76,"gt":155,"bt":100},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","sound":1871.378392,"x":230,"y":60,"height":90,"rt":71,"gt":144,"bt":111},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","sound":1984.501091,"x":235,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","sound":2002.942525,"x":240,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","sound":2014.285546,"x":245,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","sound":1935.202525,"x":250,"y":60,"height":90,"rt":67,"gt":136,"bt":119},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","sound":1986.055172,"x":255,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","sound":1989.62492,"x":260,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","sound":1975.794366,"x":265,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","sound":1988.119767,"x":270,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","sound":1985.726693,"x":275,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","sound":1964.425862,"x":280,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","sound":1942.141044,"x":285,"y":60,"height":90,"rt":66,"gt":135,"bt":120},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","sound":1921.002552,"x":290,"y":60,"height":90,"rt":67,"gt":138,"bt":117},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","sound":1898.253496,"x":295,"y":60,"height":90,"rt":69,"gt":140,"bt":115},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","sound":1872.880855,"x":300,"y":60,"height":90,"rt":70,"gt":144,"bt":111},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","sound":1901.234585,"x":305,"y":60,"height":90,"rt":69,"gt":140,"bt":115},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","sound":1890.341977,"x":310,"y":60,"height":90,"rt":69,"gt":141,"bt":114},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","sound":1903.868864,"x":315,"y":60,"height":90,"rt":69,"gt":140,"bt":115},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","sound":1897.922749,"x":320,"y":60,"height":90,"rt":69,"gt":141,"bt":114},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","sound":1906.072557,"x":325,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","sound":1927.621675,"x":330,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","sound":1972.683586,"x":335,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","sound":1960.162954,"x":340,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","sound":1950.968869,"x":345,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","sound":1972.015626,"x":350,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","sound":1981.408275,"x":355,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","sound":1986.898555,"x":360,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","sound":1957.089575,"x":365,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","sound":2052.301544,"x":370,"y":60,"height":90,"rt":59,"gt":121,"bt":134},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","sound":2098.87337,"x":375,"y":60,"height":90,"rt":56,"gt":115,"bt":140},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","sound":2144.393909,"x":380,"y":60,"height":90,"rt":53,"gt":109,"bt":146},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","sound":2092.479793,"x":385,"y":60,"height":90,"rt":57,"gt":116,"bt":139},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","sound":2070.160167,"x":390,"y":60,"height":90,"rt":58,"gt":119,"bt":136},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","sound":2069.74634,"x":395,"y":60,"height":90,"rt":58,"gt":119,"bt":136},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","sound":2055.592072,"x":400,"y":60,"height":90,"rt":59,"gt":120,"bt":135},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","sound":2045.745153,"x":405,"y":60,"height":90,"rt":60,"gt":122,"bt":133},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","sound":2085.261125,"x":410,"y":60,"height":90,"rt":57,"gt":117,"bt":138},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","sound":2068.982485,"x":415,"y":60,"height":90,"rt":58,"gt":119,"bt":136},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","sound":1957.59857,"x":420,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","sound":2013.169026,"x":425,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","sound":1949.531895,"x":430,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","sound":1916.497229,"x":435,"y":60,"height":90,"rt":68,"gt":138,"bt":117},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","sound":1925.723994,"x":440,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","sound":1931.150551,"x":445,"y":60,"height":90,"rt":67,"gt":136,"bt":119},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","sound":1920.185784,"x":450,"y":60,"height":90,"rt":67,"gt":138,"bt":117},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","sound":1960.272061,"x":455,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","sound":1986.46822,"x":460,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","sound":1961.928332,"x":465,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","sound":1961.910851,"x":470,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","sound":2007.666327,"x":475,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","sound":1992.36945,"x":480,"y":60,"height":90,"rt":63,"gt":128,"bt":127},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","sound":1974.002029,"x":485,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","sound":1960.937972,"x":490,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","sound":1968.583228,"x":495,"y":60,"height":90,"rt":64,"gt":132,"bt":123},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","sound":2011.301568,"x":500,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","sound":2012.815233,"x":505,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","sound":2038.687816,"x":510,"y":60,"height":90,"rt":60,"gt":123,"bt":132},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","sound":1965.560022,"x":515,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","sound":1936.439636,"x":520,"y":60,"height":90,"rt":66,"gt":136,"bt":119},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","sound":1912.21992,"x":525,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","sound":1893.148472,"x":530,"y":60,"height":90,"rt":69,"gt":141,"bt":114},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","sound":1921.498804,"x":535,"y":60,"height":90,"rt":67,"gt":138,"bt":117},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","sound":1913.942084,"x":540,"y":60,"height":90,"rt":68,"gt":138,"bt":117},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","sound":1909.766212,"x":545,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","sound":1923.835369,"x":550,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","sound":1907.441766,"x":555,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","sound":1923.990267,"x":560,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","sound":1929.632796,"x":565,"y":60,"height":90,"rt":67,"gt":136,"bt":119},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","sound":1959.680426,"x":570,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","sound":2000.476472,"x":575,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","sound":2022.480101,"x":580,"y":60,"height":90,"rt":61,"gt":125,"bt":130},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","sound":2011.570354,"x":585,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","sound":2049.324842,"x":590,"y":60,"height":90,"rt":59,"gt":121,"bt":134},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","sound":2044.426727,"x":595,"y":60,"height":90,"rt":60,"gt":122,"bt":133},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","sound":2065.152935,"x":600,"y":60,"height":90,"rt":58,"gt":119,"bt":136},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","sound":2032.735809,"x":605,"y":60,"height":90,"rt":60,"gt":123,"bt":132},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","sound":2025.040327,"x":610,"y":60,"height":90,"rt":61,"gt":124,"bt":131},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","sound":2025.348959,"x":615,"y":60,"height":90,"rt":61,"gt":124,"bt":131},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","sound":2027.272621,"x":620,"y":60,"height":90,"rt":61,"gt":124,"bt":131},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","sound":2024.735451,"x":625,"y":60,"height":90,"rt":61,"gt":124,"bt":131},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","sound":2013.574924,"x":630,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","sound":1985.419156,"x":635,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","sound":1965.001295,"x":640,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","sound":1901.139963,"x":645,"y":60,"height":90,"rt":69,"gt":140,"bt":115},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","sound":1850.663143,"x":650,"y":60,"height":90,"rt":72,"gt":147,"bt":108},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","sound":1885.361993,"x":655,"y":60,"height":90,"rt":70,"gt":142,"bt":113},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","sound":1848.087562,"x":660,"y":60,"height":90,"rt":72,"gt":147,"bt":108},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","sound":1875.368624,"x":665,"y":60,"height":90,"rt":70,"gt":143,"bt":112},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","sound":1873.939655,"x":670,"y":60,"height":90,"rt":70,"gt":144,"bt":111},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","sound":1852.134368,"x":675,"y":60,"height":90,"rt":72,"gt":146,"bt":109},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","sound":1894.80034,"x":680,"y":60,"height":90,"rt":69,"gt":141,"bt":114},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","sound":1911.800431,"x":685,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","sound":1928.400838,"x":690,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","sound":1962.260668,"x":695,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","sound":1955.960487,"x":700,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","sound":1977.282704,"x":705,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","sound":1978.992328,"x":710,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","sound":1998.914716,"x":715,"y":60,"height":90,"rt":63,"gt":128,"bt":127},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","sound":1976.880363,"x":720,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","sound":1975.039023,"x":725,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","sound":1986.931739,"x":730,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","sound":1981.51517,"x":735,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","sound":1993.308999,"x":740,"y":60,"height":90,"rt":63,"gt":128,"bt":127},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","sound":2016.815473,"x":745,"y":60,"height":90,"rt":61,"gt":125,"bt":130},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","sound":1971.357399,"x":750,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","sound":1964.192269,"x":755,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","sound":1929.614887,"x":760,"y":60,"height":90,"rt":67,"gt":136,"bt":119},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","sound":1887.550561,"x":765,"y":60,"height":90,"rt":70,"gt":142,"bt":113},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","sound":1875.325167,"x":770,"y":60,"height":90,"rt":70,"gt":143,"bt":112},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","sound":1857.870696,"x":775,"y":60,"height":90,"rt":71,"gt":146,"bt":109},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","sound":1864.71605,"x":780,"y":60,"height":90,"rt":71,"gt":145,"bt":110},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","sound":1863.603688,"x":785,"y":60,"height":90,"rt":71,"gt":145,"bt":110},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","sound":1859.970474,"x":790,"y":60,"height":90,"rt":71,"gt":145,"bt":110},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","sound":1862.715387,"x":795,"y":60,"height":90,"rt":71,"gt":145,"bt":110},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","sound":1886.696964,"x":800,"y":60,"height":90,"rt":70,"gt":142,"bt":113},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","sound":1903.930029,"x":805,"y":60,"height":90,"rt":69,"gt":140,"bt":115},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","sound":1955.910003,"x":810,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","sound":1952.860468,"x":815,"y":60,"height":90,"rt":65,"gt":134,"bt":121},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","sound":1911.940056,"x":820,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","sound":1952.054288,"x":825,"y":60,"height":90,"rt":65,"gt":134,"bt":121},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","sound":1972.084178,"x":830,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","sound":1968.743486,"x":835,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","sound":1939.373847,"x":840,"y":60,"height":90,"rt":66,"gt":135,"bt":120},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","sound":1945.977563,"x":845,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","sound":1955.633756,"x":850,"y":60,"height":90,"rt":65,"gt":133,"bt":122},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","sound":1946.857495,"x":855,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","sound":1981.820282,"x":860,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","sound":1982.247017,"x":865,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","sound":2010.291132,"x":870,"y":60,"height":90,"rt":62,"gt":126,"bt":129},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","sound":1996.458845,"x":875,"y":60,"height":90,"rt":63,"gt":128,"bt":127},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","sound":1991.862296,"x":880,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","sound":1936.604094,"x":885,"y":60,"height":90,"rt":66,"gt":136,"bt":119},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","sound":1906.488168,"x":890,"y":60,"height":90,"rt":68,"gt":139,"bt":116},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","sound":1853.014185,"x":895,"y":60,"height":90,"rt":72,"gt":146,"bt":109},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","sound":1853.081527,"x":900,"y":60,"height":90,"rt":72,"gt":146,"bt":109},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","sound":1854.679071,"x":905,"y":60,"height":90,"rt":72,"gt":146,"bt":109},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","sound":1872.284019,"x":910,"y":60,"height":90,"rt":70,"gt":144,"bt":111},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","sound":1886.044453,"x":915,"y":60,"height":90,"rt":70,"gt":142,"bt":113},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","sound":1923.605425,"x":920,"y":60,"height":90,"rt":67,"gt":137,"bt":118},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","sound":1944.581417,"x":925,"y":60,"height":90,"rt":66,"gt":135,"bt":120},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","sound":1974.156824,"x":930,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","sound":2002.729591,"x":935,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","sound":1950.289081,"x":940,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","sound":1980.283725,"x":945,"y":60,"height":90,"rt":64,"gt":130,"bt":125},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","sound":2004.178723,"x":950,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","sound":1968.971444,"x":955,"y":60,"height":90,"rt":64,"gt":131,"bt":124},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","sound":1968.555584,"x":960,"y":60,"height":90,"rt":64,"gt":132,"bt":123},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","sound":1967.507263,"x":965,"y":60,"height":90,"rt":65,"gt":132,"bt":123},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","sound":2000.281495,"x":970,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","sound":2047.918651,"x":975,"y":60,"height":90,"rt":60,"gt":121,"bt":134},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","sound":2007.245026,"x":980,"y":60,"height":90,"rt":62,"gt":127,"bt":128},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","sound":2017.921327,"x":985,"y":60,"height":90,"rt":61,"gt":125,"bt":130},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","sound":2021.142574,"x":990,"y":60,"height":90,"rt":61,"gt":125,"bt":130},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","sound":1989.485678,"x":995,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","sound":1989.254829,"x":1000,"y":60,"height":90,"rt":63,"gt":129,"bt":126},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","sound":1949.901561,"x":1005,"y":60,"height":90,"rt":66,"gt":134,"bt":121},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","sound":1888.571668,"x":1010,"y":60,"height":90,"rt":69,"gt":142,"bt":113},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","sound":1887.754548,"x":1015,"y":60,"height":90,"rt":70,"gt":142,"bt":113},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","sound":1872.873934,"x":1020,"y":60,"height":90,"rt":70,"gt":144,"bt":111},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","sound":1868.769238,"x":1025,"y":60,"height":90,"rt":71,"gt":144,"bt":111},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","sound":1539.609745,"x":200,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","sound":1524.461863,"x":205,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","sound":1532.2314,"x":210,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","sound":1534.46184,"x":215,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","sound":1531.116841,"x":220,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","sound":1562.748732,"x":225,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","sound":1570.731087,"x":230,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","sound":1584.911316,"x":235,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","sound":1572.519168,"x":240,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","sound":1589.097,"x":245,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","sound":1611.476654,"x":250,"y":90,"height":120,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","sound":1595.295248,"x":255,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","sound":1595.875181,"x":260,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","sound":1615.987807,"x":265,"y":90,"height":120,"rt":87,"gt":176,"bt":79},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","sound":1596.846497,"x":270,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","sound":1618.364853,"x":275,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","sound":1610.225946,"x":280,"y":90,"height":120,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","sound":1618.352094,"x":285,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","sound":1558.659303,"x":290,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","sound":1551.044269,"x":295,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","sound":1551.985255,"x":300,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","sound":1533.475132,"x":305,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","sound":1526.096024,"x":310,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","sound":1506.834707,"x":315,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","sound":1527.443271,"x":320,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","sound":1526.353609,"x":325,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","sound":1539.115012,"x":330,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","sound":1527.075311,"x":335,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","sound":1523.839014,"x":340,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","sound":1499.256605,"x":345,"y":90,"height":120,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","sound":1497.933327,"x":350,"y":90,"height":120,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","sound":1522.163069,"x":355,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","sound":1497.968749,"x":360,"y":90,"height":120,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","sound":1519.864723,"x":365,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","sound":1512.378448,"x":370,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","sound":1522.930936,"x":375,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","sound":1593.187393,"x":380,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","sound":1574.099275,"x":385,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","sound":1559.030184,"x":390,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","sound":1523.642891,"x":395,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","sound":1535.12032,"x":400,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","sound":1536.004591,"x":405,"y":90,"height":120,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","sound":1502.866224,"x":410,"y":90,"height":120,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","sound":1508.915572,"x":415,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","sound":1514.13134,"x":420,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","sound":1490.441884,"x":425,"y":90,"height":120,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","sound":1503.192908,"x":430,"y":90,"height":120,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","sound":1518.183389,"x":435,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","sound":1524.49856,"x":440,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","sound":1521.199517,"x":445,"y":90,"height":120,"rt":92,"gt":189,"bt":66},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","sound":1505.98295,"x":450,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","sound":1505.840227,"x":455,"y":90,"height":120,"rt":93,"gt":191,"bt":64},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","sound":1512.584213,"x":460,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","sound":1524.184458,"x":465,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","sound":1524.762087,"x":470,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","sound":1523.383177,"x":475,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","sound":1537.219843,"x":480,"y":90,"height":120,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","sound":1536.15734,"x":485,"y":90,"height":120,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","sound":1551.821409,"x":490,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","sound":1533.078837,"x":495,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","sound":1552.61039,"x":500,"y":90,"height":120,"rt":90,"gt":185,"bt":70},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","sound":1598.883311,"x":505,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","sound":1596.507456,"x":510,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","sound":1564.869059,"x":515,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","sound":1543.045698,"x":520,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","sound":1538.627774,"x":525,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","sound":1531.342267,"x":530,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","sound":1501.646352,"x":535,"y":90,"height":120,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","sound":1546.844304,"x":540,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","sound":1539.602228,"x":545,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","sound":1512.887888,"x":550,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","sound":1510.494718,"x":555,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","sound":1504.280362,"x":560,"y":90,"height":120,"rt":93,"gt":191,"bt":64},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","sound":1515.517292,"x":565,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","sound":1526.673168,"x":570,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","sound":1517.337522,"x":575,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","sound":1542.911606,"x":580,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","sound":1558.789544,"x":585,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","sound":1577.518424,"x":590,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","sound":1574.144892,"x":595,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","sound":1584.120862,"x":600,"y":90,"height":120,"rt":88,"gt":181,"bt":74},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","sound":1651.66489,"x":605,"y":90,"height":120,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","sound":1648.224659,"x":610,"y":90,"height":120,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","sound":1647.258028,"x":615,"y":90,"height":120,"rt":85,"gt":172,"bt":83},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","sound":1641.951348,"x":620,"y":90,"height":120,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","sound":1663.10414,"x":625,"y":90,"height":120,"rt":84,"gt":170,"bt":85},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","sound":1621.602064,"x":630,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","sound":1617.304253,"x":635,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","sound":1611.991348,"x":640,"y":90,"height":120,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","sound":1601.699913,"x":645,"y":90,"height":120,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","sound":1575.030813,"x":650,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","sound":1555.080696,"x":655,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","sound":1562.219129,"x":660,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","sound":1569.84993,"x":665,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","sound":1579.11824,"x":670,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","sound":1572.022207,"x":675,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","sound":1552.256371,"x":680,"y":90,"height":120,"rt":90,"gt":185,"bt":70},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","sound":1555.169501,"x":685,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","sound":1550.265861,"x":690,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","sound":1566.218785,"x":695,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","sound":1583.454415,"x":700,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","sound":1616.308661,"x":705,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","sound":1590.936484,"x":710,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","sound":1625.906042,"x":715,"y":90,"height":120,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","sound":1597.359745,"x":720,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","sound":1651.742763,"x":725,"y":90,"height":120,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","sound":1635.980152,"x":730,"y":90,"height":120,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","sound":1606.384534,"x":735,"y":90,"height":120,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","sound":1629.291747,"x":740,"y":90,"height":120,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","sound":1596.700913,"x":745,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","sound":1611.52679,"x":750,"y":90,"height":120,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","sound":1585.774018,"x":755,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","sound":1582.161224,"x":760,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","sound":1582.124748,"x":765,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","sound":1585.711985,"x":770,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","sound":1569.794692,"x":775,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","sound":1583.758422,"x":780,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","sound":1545.661159,"x":785,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","sound":1591.872489,"x":790,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","sound":1594.254478,"x":795,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","sound":1565.298313,"x":800,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","sound":1574.134412,"x":805,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","sound":1575.66581,"x":810,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","sound":1572.937986,"x":815,"y":90,"height":120,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","sound":1593.764917,"x":820,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","sound":1641.362517,"x":825,"y":90,"height":120,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","sound":1625.461246,"x":830,"y":90,"height":120,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","sound":1615.854908,"x":835,"y":90,"height":120,"rt":87,"gt":176,"bt":79},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","sound":1553.681772,"x":840,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","sound":1621.937262,"x":845,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","sound":1602.422444,"x":850,"y":90,"height":120,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","sound":1578.286039,"x":855,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","sound":1550.572483,"x":860,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","sound":1591.60269,"x":865,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","sound":1601.945185,"x":870,"y":90,"height":120,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","sound":1564.941917,"x":875,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","sound":1562.083021,"x":880,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","sound":1551.980132,"x":885,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Rio de Janeiro","sound":1541.029202,"x":890,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Rio de Janeiro","sound":1531.602577,"x":895,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Rio de Janeiro","sound":1532.400153,"x":900,"y":90,"height":120,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Rio de Janeiro","sound":1508.463363,"x":905,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Rio de Janeiro","sound":1522.496761,"x":910,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Rio de Janeiro","sound":1499.693167,"x":915,"y":90,"height":120,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Rio de Janeiro","sound":1519.589751,"x":920,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Rio de Janeiro","sound":1517.156687,"x":925,"y":90,"height":120,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Rio de Janeiro","sound":1510.260265,"x":930,"y":90,"height":120,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Rio de Janeiro","sound":1526.400826,"x":935,"y":90,"height":120,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Rio de Janeiro","sound":1546.600814,"x":940,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Rio de Janeiro","sound":1563.28522,"x":945,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Rio de Janeiro","sound":1558.277298,"x":950,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Rio de Janeiro","sound":1577.961128,"x":955,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Rio de Janeiro","sound":1579.614321,"x":960,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Rio de Janeiro","sound":1600.918492,"x":965,"y":90,"height":120,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Rio de Janeiro","sound":1577.918985,"x":970,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Rio de Janeiro","sound":1588.921727,"x":975,"y":90,"height":120,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Rio de Janeiro","sound":1592.937067,"x":980,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Rio de Janeiro","sound":1619.087463,"x":985,"y":90,"height":120,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Rio de Janeiro","sound":1596.264188,"x":990,"y":90,"height":120,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Rio de Janeiro","sound":1637.848568,"x":995,"y":90,"height":120,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Rio de Janeiro","sound":1576.889252,"x":1000,"y":90,"height":120,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Rio de Janeiro","sound":1557.608121,"x":1005,"y":90,"height":120,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Rio de Janeiro","sound":1561.683751,"x":1010,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Rio de Janeiro","sound":1538.582167,"x":1015,"y":90,"height":120,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Rio de Janeiro","sound":1562.405567,"x":1020,"y":90,"height":120,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Rio de Janeiro","sound":1550.197296,"x":1025,"y":90,"height":120,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"San Francisco","sound":1547.152957,"x":200,"y":120,"height":150,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"San Francisco","sound":1556.661572,"x":205,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"San Francisco","sound":1573.748668,"x":210,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"San Francisco","sound":1549.273191,"x":215,"y":120,"height":150,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"San Francisco","sound":1558.382169,"x":220,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"San Francisco","sound":1519.580835,"x":225,"y":120,"height":150,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"San Francisco","sound":1515.783004,"x":230,"y":120,"height":150,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"San Francisco","sound":1533.627169,"x":235,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"San Francisco","sound":1523.085065,"x":240,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"San Francisco","sound":1576.79138,"x":245,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"San Francisco","sound":1603.690233,"x":250,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"San Francisco","sound":1622.077281,"x":255,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"San Francisco","sound":1627.52767,"x":260,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"San Francisco","sound":1607.642228,"x":265,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"San Francisco","sound":1621.429525,"x":270,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"San Francisco","sound":1665.166052,"x":275,"y":120,"height":150,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"San Francisco","sound":1664.347232,"x":280,"y":120,"height":150,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"San Francisco","sound":1657.577159,"x":285,"y":120,"height":150,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"San Francisco","sound":1630.903569,"x":290,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"San Francisco","sound":1654.616389,"x":295,"y":120,"height":150,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"San Francisco","sound":1620.431499,"x":300,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"San Francisco","sound":1608.027921,"x":305,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"San Francisco","sound":1603.418204,"x":310,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"San Francisco","sound":1603.776493,"x":315,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"San Francisco","sound":1569.505711,"x":320,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"San Francisco","sound":1580.580605,"x":325,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"San Francisco","sound":1608.984138,"x":330,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"San Francisco","sound":1610.630964,"x":335,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"San Francisco","sound":1608.968838,"x":340,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"San Francisco","sound":1586.641621,"x":345,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"San Francisco","sound":1569.804804,"x":350,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"San Francisco","sound":1518.157531,"x":355,"y":120,"height":150,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"San Francisco","sound":1530.150542,"x":360,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"San Francisco","sound":1541.70439,"x":365,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"San Francisco","sound":1570.561463,"x":370,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"San Francisco","sound":1589.827849,"x":375,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"San Francisco","sound":1611.672833,"x":380,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"San Francisco","sound":1615.851225,"x":385,"y":120,"height":150,"rt":87,"gt":176,"bt":79},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"San Francisco","sound":1622.500596,"x":390,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"San Francisco","sound":1608.539152,"x":395,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"San Francisco","sound":1616.883918,"x":400,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"San Francisco","sound":1647.511074,"x":405,"y":120,"height":150,"rt":85,"gt":172,"bt":83},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"San Francisco","sound":1657.208635,"x":410,"y":120,"height":150,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"San Francisco","sound":1665.813146,"x":415,"y":120,"height":150,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"San Francisco","sound":1624.915234,"x":420,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"San Francisco","sound":1648.527022,"x":425,"y":120,"height":150,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"San Francisco","sound":1631.053525,"x":430,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"San Francisco","sound":1618.179767,"x":435,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"San Francisco","sound":1628.98901,"x":440,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"San Francisco","sound":1628.954792,"x":445,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"San Francisco","sound":1622.59924,"x":450,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"San Francisco","sound":1637.972967,"x":455,"y":120,"height":150,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"San Francisco","sound":1662.166666,"x":460,"y":120,"height":150,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"San Francisco","sound":1654.871862,"x":465,"y":120,"height":150,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"San Francisco","sound":1640.792443,"x":470,"y":120,"height":150,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"San Francisco","sound":1599.810313,"x":475,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"San Francisco","sound":1547.115592,"x":480,"y":120,"height":150,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"San Francisco","sound":1592.626542,"x":485,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"San Francisco","sound":1586.979579,"x":490,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"San Francisco","sound":1612.258269,"x":495,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"San Francisco","sound":1595.923908,"x":500,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"San Francisco","sound":1612.387519,"x":505,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"San Francisco","sound":1631.867546,"x":510,"y":120,"height":150,"rt":86,"gt":174,"bt":81},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"San Francisco","sound":1622.18804,"x":515,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"San Francisco","sound":1635.811908,"x":520,"y":120,"height":150,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"San Francisco","sound":1619.225893,"x":525,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"San Francisco","sound":1601.168066,"x":530,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"San Francisco","sound":1599.106112,"x":535,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"San Francisco","sound":1587.077379,"x":540,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"San Francisco","sound":1561.621193,"x":545,"y":120,"height":150,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"San Francisco","sound":1555.715969,"x":550,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"San Francisco","sound":1536.035558,"x":555,"y":120,"height":150,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"San Francisco","sound":1503.68474,"x":560,"y":120,"height":150,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"San Francisco","sound":1513.05365,"x":565,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"San Francisco","sound":1555.347514,"x":570,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"San Francisco","sound":1526.124758,"x":575,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"San Francisco","sound":1523.758887,"x":580,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"San Francisco","sound":1511.257038,"x":585,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"San Francisco","sound":1511.806011,"x":590,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"San Francisco","sound":1521.25514,"x":595,"y":120,"height":150,"rt":92,"gt":189,"bt":66},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"San Francisco","sound":1543.615876,"x":600,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"San Francisco","sound":1542.81118,"x":605,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"San Francisco","sound":1567.897982,"x":610,"y":120,"height":150,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"San Francisco","sound":1569.243488,"x":615,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"San Francisco","sound":1564.549781,"x":620,"y":120,"height":150,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"San Francisco","sound":1594.315653,"x":625,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"San Francisco","sound":1612.603199,"x":630,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"San Francisco","sound":1619.138638,"x":635,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"San Francisco","sound":1653.007149,"x":640,"y":120,"height":150,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"San Francisco","sound":1642.671992,"x":645,"y":120,"height":150,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"San Francisco","sound":1602.196451,"x":650,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"San Francisco","sound":1598.886397,"x":655,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"San Francisco","sound":1616.866265,"x":660,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"San Francisco","sound":1567.619817,"x":665,"y":120,"height":150,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"San Francisco","sound":1545.080184,"x":670,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"San Francisco","sound":1522.782985,"x":675,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"San Francisco","sound":1536.956286,"x":680,"y":120,"height":150,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"San Francisco","sound":1554.15257,"x":685,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"San Francisco","sound":1615.564642,"x":690,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"San Francisco","sound":1580.588427,"x":695,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"San Francisco","sound":1558.906556,"x":700,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"San Francisco","sound":1532.997056,"x":705,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"San Francisco","sound":1536.504537,"x":710,"y":120,"height":150,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"San Francisco","sound":1493.315054,"x":715,"y":120,"height":150,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"San Francisco","sound":1543.150429,"x":720,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"San Francisco","sound":1536.449784,"x":725,"y":120,"height":150,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"San Francisco","sound":1532.784391,"x":730,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"San Francisco","sound":1550.402945,"x":735,"y":120,"height":150,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"San Francisco","sound":1530.610229,"x":740,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"San Francisco","sound":1572.54586,"x":745,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"San Francisco","sound":1607.98126,"x":750,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"San Francisco","sound":1645.648883,"x":755,"y":120,"height":150,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"San Francisco","sound":1651.631092,"x":760,"y":120,"height":150,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"San Francisco","sound":1628.679969,"x":765,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"San Francisco","sound":1622.462047,"x":770,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"San Francisco","sound":1629.519923,"x":775,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"San Francisco","sound":1635.887228,"x":780,"y":120,"height":150,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"San Francisco","sound":1557.747868,"x":785,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"San Francisco","sound":1522.016383,"x":790,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"San Francisco","sound":1506.936235,"x":795,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"San Francisco","sound":1518.296307,"x":800,"y":120,"height":150,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"San Francisco","sound":1482.182115,"x":805,"y":120,"height":150,"rt":95,"gt":194,"bt":61},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"San Francisco","sound":1507.2682,"x":810,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"San Francisco","sound":1488.326985,"x":815,"y":120,"height":150,"rt":94,"gt":193,"bt":62},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"San Francisco","sound":1490.079204,"x":820,"y":120,"height":150,"rt":94,"gt":193,"bt":62},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"San Francisco","sound":1477.956838,"x":825,"y":120,"height":150,"rt":95,"gt":194,"bt":61},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"San Francisco","sound":1506.141064,"x":830,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"San Francisco","sound":1502.412926,"x":835,"y":120,"height":150,"rt":94,"gt":191,"bt":64},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"San Francisco","sound":1511.475779,"x":840,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"San Francisco","sound":1577.247774,"x":845,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"San Francisco","sound":1615.741875,"x":850,"y":120,"height":150,"rt":87,"gt":176,"bt":79},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"San Francisco","sound":1588.389051,"x":855,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"San Francisco","sound":1602.260088,"x":860,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"San Francisco","sound":1571.715415,"x":865,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"San Francisco","sound":1623.016314,"x":870,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"San Francisco","sound":1638.30373,"x":875,"y":120,"height":150,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"San Francisco","sound":1642.211558,"x":880,"y":120,"height":150,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"San Francisco","sound":1606.397517,"x":885,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"San Francisco","sound":1681.771034,"x":890,"y":120,"height":150,"rt":82,"gt":168,"bt":87},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"San Francisco","sound":1606.032426,"x":895,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"San Francisco","sound":1598.388941,"x":900,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"San Francisco","sound":1556.845421,"x":905,"y":120,"height":150,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"San Francisco","sound":1579.342741,"x":910,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"San Francisco","sound":1577.594275,"x":915,"y":120,"height":150,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"San Francisco","sound":1543.987895,"x":920,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"San Francisco","sound":1514.626962,"x":925,"y":120,"height":150,"rt":93,"gt":189,"bt":66},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"San Francisco","sound":1541.026062,"x":930,"y":120,"height":150,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"San Francisco","sound":1482.589799,"x":935,"y":120,"height":150,"rt":95,"gt":193,"bt":62},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"San Francisco","sound":1497.372792,"x":940,"y":120,"height":150,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"San Francisco","sound":1492.122129,"x":945,"y":120,"height":150,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"San Francisco","sound":1494.012809,"x":950,"y":120,"height":150,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"San Francisco","sound":1506.458499,"x":955,"y":120,"height":150,"rt":93,"gt":190,"bt":65},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"San Francisco","sound":1527.293142,"x":960,"y":120,"height":150,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"San Francisco","sound":1574.923304,"x":965,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"San Francisco","sound":1597.159529,"x":970,"y":120,"height":150,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"San Francisco","sound":1632.75496,"x":975,"y":120,"height":150,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"San Francisco","sound":1603.413557,"x":980,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"San Francisco","sound":1570.342474,"x":985,"y":120,"height":150,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"San Francisco","sound":1615.04698,"x":990,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"San Francisco","sound":1607.393893,"x":995,"y":120,"height":150,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"San Francisco","sound":1620.99688,"x":1000,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"San Francisco","sound":1613.255068,"x":1005,"y":120,"height":150,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"San Francisco","sound":1626.1721,"x":1010,"y":120,"height":150,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"San Francisco","sound":1618.232492,"x":1015,"y":120,"height":150,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"San Francisco","sound":1587.73411,"x":1020,"y":120,"height":150,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"San Francisco","sound":1535.929257,"x":1025,"y":120,"height":150,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Shanghai","sound":1824.245729,"x":200,"y":150,"height":180,"rt":73,"gt":150,"bt":105},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Shanghai","sound":1803.937431,"x":205,"y":150,"height":180,"rt":75,"gt":152,"bt":103},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Shanghai","sound":1743.319163,"x":210,"y":150,"height":180,"rt":79,"gt":160,"bt":95},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Shanghai","sound":1744.948543,"x":215,"y":150,"height":180,"rt":78,"gt":160,"bt":95},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Shanghai","sound":1742.090165,"x":220,"y":150,"height":180,"rt":79,"gt":160,"bt":95},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Shanghai","sound":1738.678254,"x":225,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Shanghai","sound":1724.902435,"x":230,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Shanghai","sound":1733.531078,"x":235,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Shanghai","sound":1755.492536,"x":240,"y":150,"height":180,"rt":78,"gt":159,"bt":96},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Shanghai","sound":1738.713316,"x":245,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Shanghai","sound":1733.639065,"x":250,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Shanghai","sound":1694.000337,"x":255,"y":150,"height":180,"rt":82,"gt":167,"bt":88},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Shanghai","sound":1656.759757,"x":260,"y":150,"height":180,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Shanghai","sound":1623.50688,"x":265,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Shanghai","sound":1622.302584,"x":270,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Shanghai","sound":1562.75643,"x":275,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Shanghai","sound":1564.581579,"x":280,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Shanghai","sound":1580.827627,"x":285,"y":150,"height":180,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Shanghai","sound":1639.514,"x":290,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Shanghai","sound":1635.809334,"x":295,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Shanghai","sound":1635.167211,"x":300,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Shanghai","sound":1625.310307,"x":305,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Shanghai","sound":1635.294852,"x":310,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Shanghai","sound":1699.05764,"x":315,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Shanghai","sound":1701.684089,"x":320,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Shanghai","sound":1675.729478,"x":325,"y":150,"height":180,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Shanghai","sound":1663.153441,"x":330,"y":150,"height":180,"rt":84,"gt":170,"bt":85},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Shanghai","sound":1680.814162,"x":335,"y":150,"height":180,"rt":82,"gt":168,"bt":87},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Shanghai","sound":1650.487274,"x":340,"y":150,"height":180,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Shanghai","sound":1661.572336,"x":345,"y":150,"height":180,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Shanghai","sound":1695.855864,"x":350,"y":150,"height":180,"rt":82,"gt":166,"bt":89},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Shanghai","sound":1719.517789,"x":355,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Shanghai","sound":1701.968516,"x":360,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Shanghai","sound":1701.472921,"x":365,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Shanghai","sound":1681.282691,"x":370,"y":150,"height":180,"rt":82,"gt":168,"bt":87},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Shanghai","sound":1665.770024,"x":375,"y":150,"height":180,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Shanghai","sound":1626.042056,"x":380,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Shanghai","sound":1609.370163,"x":385,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Shanghai","sound":1617.516752,"x":390,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Shanghai","sound":1589.063904,"x":395,"y":150,"height":180,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Shanghai","sound":1579.929551,"x":400,"y":150,"height":180,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Shanghai","sound":1582.036218,"x":405,"y":150,"height":180,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Shanghai","sound":1569.228251,"x":410,"y":150,"height":180,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Shanghai","sound":1629.35263,"x":415,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Shanghai","sound":1646.020699,"x":420,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Shanghai","sound":1719.892663,"x":425,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Shanghai","sound":1710.656178,"x":430,"y":150,"height":180,"rt":81,"gt":164,"bt":91},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Shanghai","sound":1720.32442,"x":435,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Shanghai","sound":1706.532529,"x":440,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Shanghai","sound":1688.335872,"x":445,"y":150,"height":180,"rt":82,"gt":167,"bt":88},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Shanghai","sound":1710.824904,"x":450,"y":150,"height":180,"rt":81,"gt":164,"bt":91},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Shanghai","sound":1675.131617,"x":455,"y":150,"height":180,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Shanghai","sound":1677.27327,"x":460,"y":150,"height":180,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Shanghai","sound":1665.164686,"x":465,"y":150,"height":180,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Shanghai","sound":1686.74977,"x":470,"y":150,"height":180,"rt":82,"gt":167,"bt":88},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Shanghai","sound":1619.769909,"x":475,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Shanghai","sound":1635.154502,"x":480,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Shanghai","sound":1644.478847,"x":485,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Shanghai","sound":1596.346407,"x":490,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Shanghai","sound":1568.530508,"x":495,"y":150,"height":180,"rt":89,"gt":183,"bt":72},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Shanghai","sound":1564.07716,"x":500,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Shanghai","sound":1534.149697,"x":505,"y":150,"height":180,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Shanghai","sound":1487.812872,"x":510,"y":150,"height":180,"rt":95,"gt":193,"bt":62},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Shanghai","sound":1467.227485,"x":515,"y":150,"height":180,"rt":96,"gt":195,"bt":60},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Shanghai","sound":1491.388942,"x":520,"y":150,"height":180,"rt":94,"gt":192,"bt":63},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Shanghai","sound":1486.204876,"x":525,"y":150,"height":180,"rt":95,"gt":193,"bt":62},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Shanghai","sound":1535.738042,"x":530,"y":150,"height":180,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Shanghai","sound":1592.876963,"x":535,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Shanghai","sound":1613.146713,"x":540,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Shanghai","sound":1714.069201,"x":545,"y":150,"height":180,"rt":80,"gt":164,"bt":91},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Shanghai","sound":1719.251541,"x":550,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Shanghai","sound":1713.166958,"x":555,"y":150,"height":180,"rt":80,"gt":164,"bt":91},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Shanghai","sound":1722.197579,"x":560,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Shanghai","sound":1701.792856,"x":565,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Shanghai","sound":1720.474099,"x":570,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Shanghai","sound":1710.286235,"x":575,"y":150,"height":180,"rt":81,"gt":164,"bt":91},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Shanghai","sound":1733.429,"x":580,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Shanghai","sound":1733.271119,"x":585,"y":150,"height":180,"rt":79,"gt":162,"bt":93},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Shanghai","sound":1649.664452,"x":590,"y":150,"height":180,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Shanghai","sound":1662.177252,"x":595,"y":150,"height":180,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Shanghai","sound":1677.716606,"x":600,"y":150,"height":180,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Shanghai","sound":1614.599255,"x":605,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Shanghai","sound":1624.83833,"x":610,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Shanghai","sound":1635.106986,"x":615,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Shanghai","sound":1589.375486,"x":620,"y":150,"height":180,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Shanghai","sound":1594.598723,"x":625,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Shanghai","sound":1536.474881,"x":630,"y":150,"height":180,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Shanghai","sound":1505.407461,"x":635,"y":150,"height":180,"rt":93,"gt":191,"bt":64},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Shanghai","sound":1528.72346,"x":640,"y":150,"height":180,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Shanghai","sound":1536.216566,"x":645,"y":150,"height":180,"rt":91,"gt":187,"bt":68},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Shanghai","sound":1567.449564,"x":650,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Shanghai","sound":1632.080785,"x":655,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Shanghai","sound":1686.792573,"x":660,"y":150,"height":180,"rt":82,"gt":167,"bt":88},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Shanghai","sound":1765.384291,"x":665,"y":150,"height":180,"rt":77,"gt":157,"bt":98},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Shanghai","sound":1813.101078,"x":670,"y":150,"height":180,"rt":74,"gt":151,"bt":104},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Shanghai","sound":1815.893136,"x":675,"y":150,"height":180,"rt":74,"gt":151,"bt":104},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Shanghai","sound":1838.95288,"x":680,"y":150,"height":180,"rt":73,"gt":148,"bt":107},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Shanghai","sound":1820.635187,"x":685,"y":150,"height":180,"rt":74,"gt":150,"bt":105},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Shanghai","sound":1760.306259,"x":690,"y":150,"height":180,"rt":77,"gt":158,"bt":97},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Shanghai","sound":1704.382981,"x":695,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Shanghai","sound":1749.907168,"x":700,"y":150,"height":180,"rt":78,"gt":159,"bt":96},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Shanghai","sound":1768.164548,"x":705,"y":150,"height":180,"rt":77,"gt":157,"bt":98},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Shanghai","sound":1738.850724,"x":710,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Shanghai","sound":1764.495652,"x":715,"y":150,"height":180,"rt":77,"gt":158,"bt":97},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Shanghai","sound":1723.11147,"x":720,"y":150,"height":180,"rt":80,"gt":163,"bt":92},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Shanghai","sound":1685.089392,"x":725,"y":150,"height":180,"rt":82,"gt":168,"bt":87},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Shanghai","sound":1698.121573,"x":730,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Shanghai","sound":1666.786354,"x":735,"y":150,"height":180,"rt":83,"gt":170,"bt":85},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Shanghai","sound":1621.827954,"x":740,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Shanghai","sound":1640.102574,"x":745,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Shanghai","sound":1643.660493,"x":750,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Shanghai","sound":1622.50517,"x":755,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Shanghai","sound":1622.689239,"x":760,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Shanghai","sound":1615.792312,"x":765,"y":150,"height":180,"rt":87,"gt":176,"bt":79},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Shanghai","sound":1650.684535,"x":770,"y":150,"height":180,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Shanghai","sound":1704.014404,"x":775,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Shanghai","sound":1707.939274,"x":780,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Shanghai","sound":1760.457338,"x":785,"y":150,"height":180,"rt":77,"gt":158,"bt":97},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Shanghai","sound":1784.142862,"x":790,"y":150,"height":180,"rt":76,"gt":155,"bt":100},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Shanghai","sound":1751.491137,"x":795,"y":150,"height":180,"rt":78,"gt":159,"bt":96},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Shanghai","sound":1761.276854,"x":800,"y":150,"height":180,"rt":77,"gt":158,"bt":97},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Shanghai","sound":1757.306712,"x":805,"y":150,"height":180,"rt":78,"gt":158,"bt":97},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Shanghai","sound":1714.691826,"x":810,"y":150,"height":180,"rt":80,"gt":164,"bt":91},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Shanghai","sound":1728.010295,"x":815,"y":150,"height":180,"rt":79,"gt":162,"bt":93},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Shanghai","sound":1707.673109,"x":820,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Shanghai","sound":1660.730765,"x":825,"y":150,"height":180,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Shanghai","sound":1610.396241,"x":830,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Shanghai","sound":1643.247464,"x":835,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Shanghai","sound":1614.455405,"x":840,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Shanghai","sound":1605.873831,"x":845,"y":150,"height":180,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Shanghai","sound":1600.353585,"x":850,"y":150,"height":180,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Shanghai","sound":1609.231219,"x":855,"y":150,"height":180,"rt":87,"gt":177,"bt":78},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Shanghai","sound":1602.505735,"x":860,"y":150,"height":180,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Shanghai","sound":1604.686275,"x":865,"y":150,"height":180,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Shanghai","sound":1540.048532,"x":870,"y":150,"height":180,"rt":91,"gt":186,"bt":69},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Shanghai","sound":1547.187189,"x":875,"y":150,"height":180,"rt":91,"gt":185,"bt":70},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Shanghai","sound":1523.947024,"x":880,"y":150,"height":180,"rt":92,"gt":188,"bt":67},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Shanghai","sound":1533.444212,"x":885,"y":150,"height":180,"rt":92,"gt":187,"bt":68},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Shanghai","sound":1579.439561,"x":890,"y":150,"height":180,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Shanghai","sound":1566.242033,"x":895,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Shanghai","sound":1567.169119,"x":900,"y":150,"height":180,"rt":90,"gt":183,"bt":72},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Shanghai","sound":1705.280392,"x":905,"y":150,"height":180,"rt":81,"gt":165,"bt":90},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Shanghai","sound":1730.660639,"x":910,"y":150,"height":180,"rt":79,"gt":162,"bt":93},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Shanghai","sound":1752.739169,"x":915,"y":150,"height":180,"rt":78,"gt":159,"bt":96},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Shanghai","sound":1736.803469,"x":920,"y":150,"height":180,"rt":79,"gt":161,"bt":94},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Shanghai","sound":1688.416744,"x":925,"y":150,"height":180,"rt":82,"gt":167,"bt":88},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Shanghai","sound":1661.246214,"x":930,"y":150,"height":180,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Shanghai","sound":1672.021434,"x":935,"y":150,"height":180,"rt":83,"gt":169,"bt":86},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Shanghai","sound":1701.618678,"x":940,"y":150,"height":180,"rt":81,"gt":166,"bt":89},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Shanghai","sound":1713.363654,"x":945,"y":150,"height":180,"rt":80,"gt":164,"bt":91},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Shanghai","sound":1648.459666,"x":950,"y":150,"height":180,"rt":84,"gt":172,"bt":83},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Shanghai","sound":1631.200991,"x":955,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Shanghai","sound":1626.573602,"x":960,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Shanghai","sound":1600.719194,"x":965,"y":150,"height":180,"rt":87,"gt":178,"bt":77},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Shanghai","sound":1646.996703,"x":970,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Shanghai","sound":1628.37766,"x":975,"y":150,"height":180,"rt":86,"gt":175,"bt":80},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Shanghai","sound":1591.250635,"x":980,"y":150,"height":180,"rt":88,"gt":180,"bt":75},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Shanghai","sound":1595.504364,"x":985,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Shanghai","sound":1583.686142,"x":990,"y":150,"height":180,"rt":89,"gt":181,"bt":74},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Shanghai","sound":1622.642066,"x":995,"y":150,"height":180,"rt":86,"gt":176,"bt":79},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Shanghai","sound":1592.650646,"x":1000,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Shanghai","sound":1569.47997,"x":1005,"y":150,"height":180,"rt":89,"gt":182,"bt":73},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Shanghai","sound":1553.831391,"x":1010,"y":150,"height":180,"rt":90,"gt":184,"bt":71},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Shanghai","sound":1598.330252,"x":1015,"y":150,"height":180,"rt":88,"gt":179,"bt":76},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Shanghai","sound":1632.791165,"x":1020,"y":150,"height":180,"rt":85,"gt":174,"bt":81},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Shanghai","sound":1646.748799,"x":1025,"y":150,"height":180,"rt":85,"gt":173,"bt":82},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Singapore","sound":1328.874551,"x":200,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Singapore","sound":1426.643114,"x":205,"y":180,"height":210,"rt":98,"gt":201,"bt":54},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Singapore","sound":1328.613037,"x":210,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Singapore","sound":1451.993681,"x":215,"y":180,"height":210,"rt":97,"gt":197,"bt":58},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Singapore","sound":1365.636254,"x":220,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Singapore","sound":1414.367776,"x":225,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Singapore","sound":1330.385473,"x":230,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Singapore","sound":1400.348224,"x":235,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Singapore","sound":1335.056489,"x":240,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Singapore","sound":1416.46465,"x":245,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Singapore","sound":1301.419228,"x":250,"y":180,"height":210,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Singapore","sound":1369.869659,"x":255,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Singapore","sound":1276.257624,"x":260,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Singapore","sound":1344.312088,"x":265,"y":180,"height":210,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Singapore","sound":1272.460463,"x":270,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Singapore","sound":1314.315104,"x":275,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Singapore","sound":1254.853555,"x":280,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Singapore","sound":1333.449144,"x":285,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Singapore","sound":1289.32395,"x":290,"y":180,"height":210,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Singapore","sound":1374.236503,"x":295,"y":180,"height":210,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Singapore","sound":1308.597539,"x":300,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Singapore","sound":1392.642812,"x":305,"y":180,"height":210,"rt":100,"gt":205,"bt":50},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Singapore","sound":1348.853777,"x":310,"y":180,"height":210,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Singapore","sound":1399.819396,"x":315,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Singapore","sound":1332.036149,"x":320,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Singapore","sound":1416.09069,"x":325,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Singapore","sound":1310.814551,"x":330,"y":180,"height":210,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Singapore","sound":1410.70725,"x":335,"y":180,"height":210,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Singapore","sound":1337.990564,"x":340,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Singapore","sound":1416.209781,"x":345,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Singapore","sound":1323.305707,"x":350,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Singapore","sound":1389.533111,"x":355,"y":180,"height":210,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Singapore","sound":1318.550572,"x":360,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Singapore","sound":1398.497698,"x":365,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Singapore","sound":1309.182975,"x":370,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Singapore","sound":1356.191222,"x":375,"y":180,"height":210,"rt":103,"gt":210,"bt":45},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Singapore","sound":1253.764732,"x":380,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Singapore","sound":1325.797404,"x":385,"y":180,"height":210,"rt":105,"gt":213,"bt":42},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Singapore","sound":1240.542907,"x":390,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Singapore","sound":1318.24407,"x":395,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Singapore","sound":1245.83175,"x":400,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Singapore","sound":1318.861889,"x":405,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Singapore","sound":1255.508019,"x":410,"y":180,"height":210,"rt":109,"gt":222,"bt":33},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Singapore","sound":1335.202299,"x":415,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Singapore","sound":1270.624333,"x":420,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Singapore","sound":1355.591535,"x":425,"y":180,"height":210,"rt":103,"gt":210,"bt":45},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Singapore","sound":1311.828102,"x":430,"y":180,"height":210,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Singapore","sound":1397.595325,"x":435,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Singapore","sound":1338.71873,"x":440,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Singapore","sound":1399.955022,"x":445,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Singapore","sound":1306.405093,"x":450,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Singapore","sound":1382.813117,"x":455,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Singapore","sound":1309.404654,"x":460,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Singapore","sound":1383.462426,"x":465,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Singapore","sound":1290.71601,"x":470,"y":180,"height":210,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Singapore","sound":1380.270598,"x":475,"y":180,"height":210,"rt":101,"gt":207,"bt":48},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Singapore","sound":1308.360168,"x":480,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Singapore","sound":1412.955556,"x":485,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Singapore","sound":1306.434885,"x":490,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Singapore","sound":1368.896302,"x":495,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Singapore","sound":1246.752546,"x":500,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Singapore","sound":1316.356886,"x":505,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Singapore","sound":1253.010633,"x":510,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Singapore","sound":1325.559535,"x":515,"y":180,"height":210,"rt":105,"gt":213,"bt":42},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Singapore","sound":1242.173396,"x":520,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Singapore","sound":1344.011442,"x":525,"y":180,"height":210,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Singapore","sound":1287.531991,"x":530,"y":180,"height":210,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Singapore","sound":1376.939714,"x":535,"y":180,"height":210,"rt":101,"gt":207,"bt":48},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Singapore","sound":1307.558258,"x":540,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Singapore","sound":1373.822008,"x":545,"y":180,"height":210,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Singapore","sound":1325.955269,"x":550,"y":180,"height":210,"rt":105,"gt":213,"bt":42},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Singapore","sound":1396.983992,"x":555,"y":180,"height":210,"rt":100,"gt":204,"bt":51},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Singapore","sound":1361.509474,"x":560,"y":180,"height":210,"rt":102,"gt":209,"bt":46},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Singapore","sound":1438.827417,"x":565,"y":180,"height":210,"rt":98,"gt":199,"bt":56},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Singapore","sound":1352.721544,"x":570,"y":180,"height":210,"rt":103,"gt":210,"bt":45},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Singapore","sound":1427.017525,"x":575,"y":180,"height":210,"rt":98,"gt":201,"bt":54},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Singapore","sound":1305.196952,"x":580,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Singapore","sound":1411.767895,"x":585,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Singapore","sound":1329.047927,"x":590,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Singapore","sound":1382.337683,"x":595,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Singapore","sound":1303.135782,"x":600,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Singapore","sound":1405.147134,"x":605,"y":180,"height":210,"rt":100,"gt":203,"bt":52},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Singapore","sound":1303.68183,"x":610,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Singapore","sound":1354.333927,"x":615,"y":180,"height":210,"rt":103,"gt":210,"bt":45},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Singapore","sound":1248.280086,"x":620,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Singapore","sound":1315.606598,"x":625,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Singapore","sound":1245.835945,"x":630,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Singapore","sound":1306.790915,"x":635,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Singapore","sound":1245.635118,"x":640,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Singapore","sound":1334.432122,"x":645,"y":180,"height":210,"rt":104,"gt":212,"bt":43},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Singapore","sound":1273.168614,"x":650,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Singapore","sound":1373.950723,"x":655,"y":180,"height":210,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Singapore","sound":1306.152758,"x":660,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Singapore","sound":1374.466564,"x":665,"y":180,"height":210,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Singapore","sound":1318.287801,"x":670,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Singapore","sound":1385.223116,"x":675,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Singapore","sound":1344.021252,"x":680,"y":180,"height":210,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Singapore","sound":1434.015768,"x":685,"y":180,"height":210,"rt":98,"gt":200,"bt":55},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Singapore","sound":1330.320196,"x":690,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Singapore","sound":1413.090383,"x":695,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Singapore","sound":1326.20334,"x":700,"y":180,"height":210,"rt":105,"gt":213,"bt":42},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Singapore","sound":1394.029174,"x":705,"y":180,"height":210,"rt":100,"gt":205,"bt":50},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Singapore","sound":1321.530833,"x":710,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Singapore","sound":1386.486951,"x":715,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Singapore","sound":1310.431421,"x":720,"y":180,"height":210,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Singapore","sound":1391.928512,"x":725,"y":180,"height":210,"rt":101,"gt":205,"bt":50},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Singapore","sound":1275.690268,"x":730,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Singapore","sound":1328.891917,"x":735,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Singapore","sound":1272.915733,"x":740,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Singapore","sound":1346.876941,"x":745,"y":180,"height":210,"rt":103,"gt":211,"bt":44},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Singapore","sound":1271.28664,"x":750,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Singapore","sound":1330.934052,"x":755,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Singapore","sound":1273.589869,"x":760,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Singapore","sound":1343.184866,"x":765,"y":180,"height":210,"rt":104,"gt":211,"bt":44},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Singapore","sound":1300.838408,"x":770,"y":180,"height":210,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Singapore","sound":1371.590096,"x":775,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Singapore","sound":1309.751356,"x":780,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Singapore","sound":1362.642768,"x":785,"y":180,"height":210,"rt":102,"gt":209,"bt":46},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Singapore","sound":1311.189259,"x":790,"y":180,"height":210,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Singapore","sound":1359.066508,"x":795,"y":180,"height":210,"rt":103,"gt":209,"bt":46},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Singapore","sound":1318.320566,"x":800,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Singapore","sound":1394.258938,"x":805,"y":180,"height":210,"rt":100,"gt":205,"bt":50},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Singapore","sound":1331.743369,"x":810,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Singapore","sound":1410.822736,"x":815,"y":180,"height":210,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Singapore","sound":1315.401046,"x":820,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Singapore","sound":1374.684266,"x":825,"y":180,"height":210,"rt":102,"gt":207,"bt":48},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Singapore","sound":1274.771338,"x":830,"y":180,"height":210,"rt":108,"gt":220,"bt":35},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Singapore","sound":1366.011373,"x":835,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Singapore","sound":1303.846863,"x":840,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Singapore","sound":1384.820018,"x":845,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Singapore","sound":1300.742601,"x":850,"y":180,"height":210,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Singapore","sound":1327.619548,"x":855,"y":180,"height":210,"rt":105,"gt":213,"bt":42},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Singapore","sound":1255.721853,"x":860,"y":180,"height":210,"rt":109,"gt":222,"bt":33},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Singapore","sound":1316.742471,"x":865,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Singapore","sound":1240.441666,"x":870,"y":180,"height":210,"rt":110,"gt":224,"bt":31},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Singapore","sound":1309.395129,"x":875,"y":180,"height":210,"rt":106,"gt":216,"bt":39},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Singapore","sound":1249.095319,"x":880,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Singapore","sound":1299.967709,"x":885,"y":180,"height":210,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Singapore","sound":1298.079298,"x":890,"y":180,"height":210,"rt":106,"gt":217,"bt":38},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Singapore","sound":1364.104503,"x":895,"y":180,"height":210,"rt":102,"gt":209,"bt":46},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Singapore","sound":1315.023186,"x":900,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Singapore","sound":1385.330784,"x":905,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Singapore","sound":1317.933564,"x":910,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Singapore","sound":1358.01765,"x":915,"y":180,"height":210,"rt":103,"gt":209,"bt":46},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Singapore","sound":1332.352706,"x":920,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Singapore","sound":1413.427524,"x":925,"y":180,"height":210,"rt":99,"gt":202,"bt":53},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Singapore","sound":1310.294073,"x":930,"y":180,"height":210,"rt":106,"gt":215,"bt":40},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Singapore","sound":1383.08354,"x":935,"y":180,"height":210,"rt":101,"gt":206,"bt":49},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Singapore","sound":1320.926673,"x":940,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Singapore","sound":1371.485421,"x":945,"y":180,"height":210,"rt":102,"gt":208,"bt":47},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Singapore","sound":1279.70319,"x":950,"y":180,"height":210,"rt":108,"gt":219,"bt":36},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Singapore","sound":1359.712853,"x":955,"y":180,"height":210,"rt":103,"gt":209,"bt":46},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Singapore","sound":1315.536963,"x":960,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Singapore","sound":1408.231336,"x":965,"y":180,"height":210,"rt":99,"gt":203,"bt":52},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Singapore","sound":1294.892774,"x":970,"y":180,"height":210,"rt":107,"gt":217,"bt":38},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Singapore","sound":1328.121582,"x":975,"y":180,"height":210,"rt":104,"gt":213,"bt":42},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Singapore","sound":1252.061424,"x":980,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Singapore","sound":1313.034256,"x":985,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Singapore","sound":1251.16831,"x":990,"y":180,"height":210,"rt":109,"gt":223,"bt":32},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Singapore","sound":1316.467482,"x":995,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Singapore","sound":1259.846951,"x":1000,"y":180,"height":210,"rt":109,"gt":222,"bt":33},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Singapore","sound":1319.531333,"x":1005,"y":180,"height":210,"rt":105,"gt":214,"bt":41},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Singapore","sound":1287.632771,"x":1010,"y":180,"height":210,"rt":107,"gt":218,"bt":37},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Singapore","sound":1362.023101,"x":1015,"y":180,"height":210,"rt":102,"gt":209,"bt":46},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Singapore","sound":1316.52721,"x":1020,"y":180,"height":210,"rt":105,"gt":215,"bt":40},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Singapore","sound":1387.312176,"x":1025,"y":180,"height":210,"rt":101,"gt":206,"bt":49}
];
var hum = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","humidity":36.24105564,"x":200,"y":0,"height":30,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","humidity":32.58972966,"x":205,"y":0,"height":30,"rt":83,"gt":172,"bt":83},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","humidity":31.24851968,"x":210,"y":0,"height":30,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","humidity":30.81692383,"x":215,"y":0,"height":30,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","humidity":29.47355423,"x":220,"y":0,"height":30,"rt":75,"gt":180,"bt":75},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","humidity":29.00321574,"x":225,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","humidity":28.88453725,"x":230,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","humidity":31.04177748,"x":235,"y":0,"height":30,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","humidity":33.42425322,"x":240,"y":0,"height":30,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","humidity":34.77016088,"x":245,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","humidity":36.27041347,"x":250,"y":0,"height":30,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","humidity":37.34509589,"x":255,"y":0,"height":30,"rt":95,"gt":160,"bt":95},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","humidity":37.86998849,"x":260,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","humidity":37.90607217,"x":265,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","humidity":38.08827246,"x":270,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","humidity":39.88255343,"x":275,"y":0,"height":30,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","humidity":41.71175111,"x":280,"y":0,"height":30,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","humidity":43.72021683,"x":285,"y":0,"height":30,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","humidity":45.39678625,"x":290,"y":0,"height":30,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","humidity":47.41465348,"x":295,"y":0,"height":30,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","humidity":49.57252754,"x":300,"y":0,"height":30,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","humidity":48.5454819,"x":305,"y":0,"height":30,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","humidity":43.86644065,"x":310,"y":0,"height":30,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","humidity":38.18417251,"x":315,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","humidity":34.75510779,"x":320,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","humidity":32.94724997,"x":325,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","humidity":29.01690332,"x":330,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","humidity":27.00474677,"x":335,"y":0,"height":30,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","humidity":26.94476189,"x":340,"y":0,"height":30,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","humidity":25.33607834,"x":345,"y":0,"height":30,"rt":65,"gt":190,"bt":65},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","humidity":25.43887501,"x":350,"y":0,"height":30,"rt":65,"gt":190,"bt":65},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","humidity":27.24026398,"x":355,"y":0,"height":30,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","humidity":28.11351827,"x":360,"y":0,"height":30,"rt":72,"gt":183,"bt":72},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","humidity":31.17457105,"x":365,"y":0,"height":30,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","humidity":34.27037788,"x":370,"y":0,"height":30,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","humidity":35.61324983,"x":375,"y":0,"height":30,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","humidity":38.01247964,"x":380,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","humidity":43.10800953,"x":385,"y":0,"height":30,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","humidity":47.77410739,"x":390,"y":0,"height":30,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","humidity":51.43587078,"x":395,"y":0,"height":30,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","humidity":54.16052826,"x":400,"y":0,"height":30,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","humidity":56.03478839,"x":405,"y":0,"height":30,"rt":143,"gt":112,"bt":143},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","humidity":56.7162424,"x":410,"y":0,"height":30,"rt":145,"gt":110,"bt":145},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","humidity":58.14261513,"x":415,"y":0,"height":30,"rt":148,"gt":107,"bt":148},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","humidity":58.12574192,"x":420,"y":0,"height":30,"rt":148,"gt":107,"bt":148},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","humidity":56.02163207,"x":425,"y":0,"height":30,"rt":143,"gt":112,"bt":143},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","humidity":52.60280156,"x":430,"y":0,"height":30,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","humidity":47.7885165,"x":435,"y":0,"height":30,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","humidity":42.71069073,"x":440,"y":0,"height":30,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","humidity":37.78106674,"x":445,"y":0,"height":30,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","humidity":35.15341918,"x":450,"y":0,"height":30,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","humidity":34.01840108,"x":455,"y":0,"height":30,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","humidity":33.07840862,"x":460,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","humidity":32.4723084,"x":465,"y":0,"height":30,"rt":83,"gt":172,"bt":83},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","humidity":28.90823248,"x":470,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","humidity":30.96376136,"x":475,"y":0,"height":30,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","humidity":35.12326254,"x":480,"y":0,"height":30,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","humidity":36.18847103,"x":485,"y":0,"height":30,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","humidity":34.24166351,"x":490,"y":0,"height":30,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","humidity":37.00232197,"x":495,"y":0,"height":30,"rt":94,"gt":161,"bt":94},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","humidity":42.78907592,"x":500,"y":0,"height":30,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","humidity":49.9637749,"x":505,"y":0,"height":30,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","humidity":53.19933369,"x":510,"y":0,"height":30,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","humidity":53.62804598,"x":515,"y":0,"height":30,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","humidity":52.291611,"x":520,"y":0,"height":30,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","humidity":52.34850015,"x":525,"y":0,"height":30,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","humidity":53.87184662,"x":530,"y":0,"height":30,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","humidity":55.52414146,"x":535,"y":0,"height":30,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","humidity":56.66392382,"x":540,"y":0,"height":30,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","humidity":54.66936666,"x":545,"y":0,"height":30,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","humidity":47.66132866,"x":550,"y":0,"height":30,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","humidity":39.99819008,"x":555,"y":0,"height":30,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","humidity":33.11834585,"x":560,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","humidity":27.86223849,"x":565,"y":0,"height":30,"rt":71,"gt":184,"bt":71},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","humidity":25.70877026,"x":570,"y":0,"height":30,"rt":66,"gt":189,"bt":66},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","humidity":24.47448577,"x":575,"y":0,"height":30,"rt":62,"gt":193,"bt":62},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","humidity":21.48656707,"x":580,"y":0,"height":30,"rt":55,"gt":200,"bt":55},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","humidity":21.74526565,"x":585,"y":0,"height":30,"rt":55,"gt":200,"bt":55},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","humidity":23.85329559,"x":590,"y":0,"height":30,"rt":61,"gt":194,"bt":61},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","humidity":24.47420288,"x":595,"y":0,"height":30,"rt":62,"gt":193,"bt":62},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","humidity":26.82962055,"x":600,"y":0,"height":30,"rt":68,"gt":187,"bt":68},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","humidity":29.02968135,"x":605,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","humidity":32.60100237,"x":610,"y":0,"height":30,"rt":83,"gt":172,"bt":83},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","humidity":35.75546825,"x":615,"y":0,"height":30,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","humidity":38.0173694,"x":620,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","humidity":38.40967323,"x":625,"y":0,"height":30,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","humidity":40.18842887,"x":630,"y":0,"height":30,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","humidity":41.50309581,"x":635,"y":0,"height":30,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","humidity":42.08707636,"x":640,"y":0,"height":30,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","humidity":42.55324709,"x":645,"y":0,"height":30,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","humidity":42.70778428,"x":650,"y":0,"height":30,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","humidity":42.52171683,"x":655,"y":0,"height":30,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","humidity":41.11680296,"x":660,"y":0,"height":30,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","humidity":37.91798961,"x":665,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","humidity":32.11784234,"x":670,"y":0,"height":30,"rt":82,"gt":173,"bt":82},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","humidity":25.8160539,"x":675,"y":0,"height":30,"rt":66,"gt":189,"bt":66},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","humidity":21.06448241,"x":680,"y":0,"height":30,"rt":54,"gt":201,"bt":54},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","humidity":19.96859857,"x":685,"y":0,"height":30,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","humidity":18.58390308,"x":690,"y":0,"height":30,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","humidity":17.29329418,"x":695,"y":0,"height":30,"rt":44,"gt":211,"bt":44},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","humidity":16.17096596,"x":700,"y":0,"height":30,"rt":41,"gt":214,"bt":41},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","humidity":14.90425612,"x":705,"y":0,"height":30,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","humidity":14.16413123,"x":710,"y":0,"height":30,"rt":36,"gt":219,"bt":36},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","humidity":14.88422365,"x":715,"y":0,"height":30,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","humidity":17.38680596,"x":720,"y":0,"height":30,"rt":44,"gt":211,"bt":44},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","humidity":22.22635274,"x":725,"y":0,"height":30,"rt":57,"gt":198,"bt":57},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","humidity":27.28962977,"x":730,"y":0,"height":30,"rt":70,"gt":185,"bt":70},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","humidity":29.10705637,"x":735,"y":0,"height":30,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","humidity":30.65642721,"x":740,"y":0,"height":30,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","humidity":32.76283752,"x":745,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","humidity":34.26603722,"x":750,"y":0,"height":30,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","humidity":34.90795741,"x":755,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","humidity":33.80137286,"x":760,"y":0,"height":30,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","humidity":33.2081791,"x":765,"y":0,"height":30,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","humidity":32.7542891,"x":770,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","humidity":33.19062173,"x":775,"y":0,"height":30,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","humidity":35.706233,"x":780,"y":0,"height":30,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","humidity":37.90601853,"x":785,"y":0,"height":30,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","humidity":36.43107102,"x":790,"y":0,"height":30,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","humidity":31.2937522,"x":795,"y":0,"height":30,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","humidity":24.43638144,"x":800,"y":0,"height":30,"rt":62,"gt":193,"bt":62},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","humidity":21.26270905,"x":805,"y":0,"height":30,"rt":54,"gt":201,"bt":54},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","humidity":16.88253778,"x":810,"y":0,"height":30,"rt":43,"gt":212,"bt":43},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","humidity":14.51479741,"x":815,"y":0,"height":30,"rt":37,"gt":218,"bt":37},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","humidity":14.10162666,"x":820,"y":0,"height":30,"rt":36,"gt":219,"bt":36},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","humidity":13.78733507,"x":825,"y":0,"height":30,"rt":35,"gt":220,"bt":35},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","humidity":13.8746726,"x":830,"y":0,"height":30,"rt":35,"gt":220,"bt":35},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","humidity":15.28538851,"x":835,"y":0,"height":30,"rt":39,"gt":216,"bt":39},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","humidity":17.11843984,"x":840,"y":0,"height":30,"rt":44,"gt":211,"bt":44},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","humidity":18.93994006,"x":845,"y":0,"height":30,"rt":48,"gt":207,"bt":48},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","humidity":19.79450484,"x":850,"y":0,"height":30,"rt":50,"gt":205,"bt":50},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","humidity":21.17118156,"x":855,"y":0,"height":30,"rt":54,"gt":201,"bt":54},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","humidity":23.86364739,"x":860,"y":0,"height":30,"rt":61,"gt":194,"bt":61},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","humidity":26.35491463,"x":865,"y":0,"height":30,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","humidity":29.62180583,"x":870,"y":0,"height":30,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","humidity":33.16372774,"x":875,"y":0,"height":30,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","humidity":35.00362168,"x":880,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","humidity":35.07179324,"x":885,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","humidity":35.06835034,"x":890,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","humidity":34.93206883,"x":895,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","humidity":35.68388932,"x":900,"y":0,"height":30,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","humidity":40.0306702,"x":905,"y":0,"height":30,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","humidity":40.91935166,"x":910,"y":0,"height":30,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","humidity":36.56451291,"x":915,"y":0,"height":30,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","humidity":30.49939742,"x":920,"y":0,"height":30,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","humidity":26.19246228,"x":925,"y":0,"height":30,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","humidity":23.07334786,"x":930,"y":0,"height":30,"rt":59,"gt":196,"bt":59},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","humidity":21.62189497,"x":935,"y":0,"height":30,"rt":55,"gt":200,"bt":55},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","humidity":19.39148017,"x":940,"y":0,"height":30,"rt":49,"gt":206,"bt":49},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","humidity":18.30789271,"x":945,"y":0,"height":30,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","humidity":17.55412188,"x":950,"y":0,"height":30,"rt":45,"gt":210,"bt":45},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","humidity":17.01105615,"x":955,"y":0,"height":30,"rt":43,"gt":212,"bt":43},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","humidity":18.70782404,"x":960,"y":0,"height":30,"rt":48,"gt":207,"bt":48},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","humidity":19.72193227,"x":965,"y":0,"height":30,"rt":50,"gt":205,"bt":50},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","humidity":21.34791791,"x":970,"y":0,"height":30,"rt":54,"gt":201,"bt":54},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","humidity":23.51632715,"x":975,"y":0,"height":30,"rt":60,"gt":195,"bt":60},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","humidity":26.59684111,"x":980,"y":0,"height":30,"rt":68,"gt":187,"bt":68},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","humidity":31.05188098,"x":985,"y":0,"height":30,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","humidity":33.79142903,"x":990,"y":0,"height":30,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","humidity":34.71506982,"x":995,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","humidity":35.05913669,"x":1000,"y":0,"height":30,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","humidity":34.35101662,"x":1005,"y":0,"height":30,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","humidity":33.86209811,"x":1010,"y":0,"height":30,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","humidity":32.84479148,"x":1015,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","humidity":31.63700514,"x":1020,"y":0,"height":30,"rt":81,"gt":174,"bt":81},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","humidity":30.56506775,"x":1025,"y":0,"height":30,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","humidity":19.01067509,"x":200,"y":30,"height":60,"rt":48,"gt":207,"bt":48},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","humidity":19.31950387,"x":205,"y":30,"height":60,"rt":49,"gt":206,"bt":49},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","humidity":19.51076263,"x":210,"y":30,"height":60,"rt":50,"gt":205,"bt":50},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","humidity":19.82755987,"x":215,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","humidity":20.02339585,"x":220,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","humidity":19.81447438,"x":225,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","humidity":20.12621933,"x":230,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","humidity":18.41875507,"x":235,"y":30,"height":60,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","humidity":16.19622526,"x":240,"y":30,"height":60,"rt":41,"gt":214,"bt":41},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","humidity":14.56634803,"x":245,"y":30,"height":60,"rt":37,"gt":218,"bt":37},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","humidity":13.39991408,"x":250,"y":30,"height":60,"rt":34,"gt":221,"bt":34},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","humidity":12.99200786,"x":255,"y":30,"height":60,"rt":33,"gt":222,"bt":33},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","humidity":12.74876444,"x":260,"y":30,"height":60,"rt":33,"gt":222,"bt":33},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","humidity":12.26646672,"x":265,"y":30,"height":60,"rt":31,"gt":224,"bt":31},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","humidity":11.94922744,"x":270,"y":30,"height":60,"rt":30,"gt":225,"bt":30},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","humidity":11.75396051,"x":275,"y":30,"height":60,"rt":30,"gt":225,"bt":30},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","humidity":12.05962041,"x":280,"y":30,"height":60,"rt":31,"gt":224,"bt":31},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","humidity":13.66113385,"x":285,"y":30,"height":60,"rt":35,"gt":220,"bt":35},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","humidity":17.16569841,"x":290,"y":30,"height":60,"rt":44,"gt":211,"bt":44},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","humidity":20.12847727,"x":295,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","humidity":20.46800721,"x":300,"y":30,"height":60,"rt":52,"gt":203,"bt":52},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","humidity":20.80545061,"x":305,"y":30,"height":60,"rt":53,"gt":202,"bt":53},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","humidity":22.76274878,"x":310,"y":30,"height":60,"rt":58,"gt":197,"bt":58},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","humidity":25.24361359,"x":315,"y":30,"height":60,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","humidity":27.78453523,"x":320,"y":30,"height":60,"rt":71,"gt":184,"bt":71},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","humidity":28.84890218,"x":325,"y":30,"height":60,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","humidity":30.59752599,"x":330,"y":30,"height":60,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","humidity":32.76604407,"x":335,"y":30,"height":60,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","humidity":35.07911889,"x":340,"y":30,"height":60,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","humidity":36.53951824,"x":345,"y":30,"height":60,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","humidity":37.16974535,"x":350,"y":30,"height":60,"rt":95,"gt":160,"bt":95},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","humidity":39.48178432,"x":355,"y":30,"height":60,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","humidity":43.37316354,"x":360,"y":30,"height":60,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","humidity":45.06688493,"x":365,"y":30,"height":60,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","humidity":48.25931047,"x":370,"y":30,"height":60,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","humidity":51.06077534,"x":375,"y":30,"height":60,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","humidity":52.77781021,"x":380,"y":30,"height":60,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","humidity":53.8654356,"x":385,"y":30,"height":60,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","humidity":54.01065202,"x":390,"y":30,"height":60,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","humidity":55.38872412,"x":395,"y":30,"height":60,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","humidity":55.78242431,"x":400,"y":30,"height":60,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","humidity":55.54156265,"x":405,"y":30,"height":60,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","humidity":53.45556636,"x":410,"y":30,"height":60,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","humidity":53.65117792,"x":415,"y":30,"height":60,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","humidity":53.43005751,"x":420,"y":30,"height":60,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","humidity":53.29182321,"x":425,"y":30,"height":60,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","humidity":51.85881836,"x":430,"y":30,"height":60,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","humidity":51.2695389,"x":435,"y":30,"height":60,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","humidity":51.40016096,"x":440,"y":30,"height":60,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","humidity":51.15342753,"x":445,"y":30,"height":60,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","humidity":50.69635813,"x":450,"y":30,"height":60,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","humidity":50.30863854,"x":455,"y":30,"height":60,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","humidity":49.69348773,"x":460,"y":30,"height":60,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","humidity":48.64120402,"x":465,"y":30,"height":60,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","humidity":47.7853534,"x":470,"y":30,"height":60,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","humidity":45.7236115,"x":475,"y":30,"height":60,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","humidity":43.85718349,"x":480,"y":30,"height":60,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","humidity":42.7670708,"x":485,"y":30,"height":60,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","humidity":44.07756725,"x":490,"y":30,"height":60,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","humidity":43.91496176,"x":495,"y":30,"height":60,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","humidity":43.9214526,"x":500,"y":30,"height":60,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","humidity":41.09220742,"x":505,"y":30,"height":60,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","humidity":46.7530036,"x":510,"y":30,"height":60,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","humidity":50.67324496,"x":515,"y":30,"height":60,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","humidity":51.5181267,"x":520,"y":30,"height":60,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","humidity":51.59560494,"x":525,"y":30,"height":60,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","humidity":50.09585153,"x":530,"y":30,"height":60,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","humidity":47.18837748,"x":535,"y":30,"height":60,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","humidity":43.54067807,"x":540,"y":30,"height":60,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","humidity":39.71500392,"x":545,"y":30,"height":60,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","humidity":39.35590066,"x":550,"y":30,"height":60,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","humidity":37.43631803,"x":555,"y":30,"height":60,"rt":95,"gt":160,"bt":95},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","humidity":36.57293604,"x":560,"y":30,"height":60,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","humidity":32.82053134,"x":565,"y":30,"height":60,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","humidity":34.13594667,"x":570,"y":30,"height":60,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","humidity":34.6937589,"x":575,"y":30,"height":60,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","humidity":32.97064903,"x":580,"y":30,"height":60,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","humidity":32.10585099,"x":585,"y":30,"height":60,"rt":82,"gt":173,"bt":82},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","humidity":31.02875711,"x":590,"y":30,"height":60,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","humidity":28.10528508,"x":595,"y":30,"height":60,"rt":72,"gt":183,"bt":72},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","humidity":24.9967692,"x":600,"y":30,"height":60,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","humidity":21.78979902,"x":605,"y":30,"height":60,"rt":56,"gt":199,"bt":56},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","humidity":18.12410315,"x":610,"y":30,"height":60,"rt":46,"gt":209,"bt":46},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","humidity":16.02052508,"x":615,"y":30,"height":60,"rt":41,"gt":214,"bt":41},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","humidity":14.93420128,"x":620,"y":30,"height":60,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","humidity":13.22673322,"x":625,"y":30,"height":60,"rt":34,"gt":221,"bt":34},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","humidity":13.43848367,"x":630,"y":30,"height":60,"rt":34,"gt":221,"bt":34},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","humidity":13.05185516,"x":635,"y":30,"height":60,"rt":33,"gt":222,"bt":33},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","humidity":13.99599569,"x":640,"y":30,"height":60,"rt":36,"gt":219,"bt":36},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","humidity":15.74771074,"x":645,"y":30,"height":60,"rt":40,"gt":215,"bt":40},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","humidity":18.33494611,"x":650,"y":30,"height":60,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","humidity":19.715732,"x":655,"y":30,"height":60,"rt":50,"gt":205,"bt":50},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","humidity":21.57685135,"x":660,"y":30,"height":60,"rt":55,"gt":200,"bt":55},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","humidity":23.57513453,"x":665,"y":30,"height":60,"rt":60,"gt":195,"bt":60},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","humidity":25.16219328,"x":670,"y":30,"height":60,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","humidity":26.26614402,"x":675,"y":30,"height":60,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","humidity":26.91894063,"x":680,"y":30,"height":60,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","humidity":27.56378815,"x":685,"y":30,"height":60,"rt":70,"gt":185,"bt":70},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","humidity":28.41163459,"x":690,"y":30,"height":60,"rt":72,"gt":183,"bt":72},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","humidity":29.01783368,"x":695,"y":30,"height":60,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","humidity":30.34472167,"x":700,"y":30,"height":60,"rt":77,"gt":178,"bt":77},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","humidity":37.85161277,"x":705,"y":30,"height":60,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","humidity":42.95968537,"x":710,"y":30,"height":60,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","humidity":46.25732065,"x":715,"y":30,"height":60,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","humidity":47.59390522,"x":720,"y":30,"height":60,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","humidity":48.01535373,"x":725,"y":30,"height":60,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","humidity":48.80341107,"x":730,"y":30,"height":60,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","humidity":48.31948812,"x":735,"y":30,"height":60,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","humidity":43.86522713,"x":740,"y":30,"height":60,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","humidity":38.73276008,"x":745,"y":30,"height":60,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","humidity":35.74260386,"x":750,"y":30,"height":60,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","humidity":34.95455407,"x":755,"y":30,"height":60,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","humidity":43.09516124,"x":760,"y":30,"height":60,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","humidity":30.54695602,"x":765,"y":30,"height":60,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","humidity":25.77721234,"x":770,"y":30,"height":60,"rt":66,"gt":189,"bt":66},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","humidity":25.26556325,"x":775,"y":30,"height":60,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","humidity":22.37386852,"x":780,"y":30,"height":60,"rt":57,"gt":198,"bt":57},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","humidity":20.66185611,"x":785,"y":30,"height":60,"rt":53,"gt":202,"bt":53},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","humidity":20.00329904,"x":790,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","humidity":20.64486294,"x":795,"y":30,"height":60,"rt":53,"gt":202,"bt":53},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","humidity":22.17339876,"x":800,"y":30,"height":60,"rt":57,"gt":198,"bt":57},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","humidity":23.76630083,"x":805,"y":30,"height":60,"rt":61,"gt":194,"bt":61},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","humidity":23.44327482,"x":810,"y":30,"height":60,"rt":60,"gt":195,"bt":60},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","humidity":24.96495164,"x":815,"y":30,"height":60,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","humidity":19.99680874,"x":820,"y":30,"height":60,"rt":51,"gt":204,"bt":51},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","humidity":21.05840844,"x":825,"y":30,"height":60,"rt":54,"gt":201,"bt":54},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","humidity":20.8026284,"x":830,"y":30,"height":60,"rt":53,"gt":202,"bt":53},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","humidity":19.2022209,"x":835,"y":30,"height":60,"rt":49,"gt":206,"bt":49},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","humidity":18.22702674,"x":840,"y":30,"height":60,"rt":46,"gt":209,"bt":46},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","humidity":16.62174299,"x":845,"y":30,"height":60,"rt":42,"gt":213,"bt":42},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","humidity":14.49749841,"x":850,"y":30,"height":60,"rt":37,"gt":218,"bt":37},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","humidity":13.21840304,"x":855,"y":30,"height":60,"rt":34,"gt":221,"bt":34},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","humidity":12.67597143,"x":860,"y":30,"height":60,"rt":32,"gt":223,"bt":32},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","humidity":12.22253922,"x":865,"y":30,"height":60,"rt":31,"gt":224,"bt":31},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","humidity":12.56808696,"x":870,"y":30,"height":60,"rt":32,"gt":223,"bt":32},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","humidity":12.40488943,"x":875,"y":30,"height":60,"rt":32,"gt":223,"bt":32},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","humidity":12.68549849,"x":880,"y":30,"height":60,"rt":32,"gt":223,"bt":32},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","humidity":13.1566041,"x":885,"y":30,"height":60,"rt":34,"gt":221,"bt":34},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","humidity":13.91904361,"x":890,"y":30,"height":60,"rt":35,"gt":220,"bt":35},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","humidity":14.27843558,"x":895,"y":30,"height":60,"rt":36,"gt":219,"bt":36},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","humidity":15.21419658,"x":900,"y":30,"height":60,"rt":39,"gt":216,"bt":39},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","humidity":16.05593915,"x":905,"y":30,"height":60,"rt":41,"gt":214,"bt":41},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","humidity":16.33943564,"x":910,"y":30,"height":60,"rt":42,"gt":213,"bt":42},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","humidity":16.94343521,"x":915,"y":30,"height":60,"rt":43,"gt":212,"bt":43},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","humidity":17.33673979,"x":920,"y":30,"height":60,"rt":44,"gt":211,"bt":44},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","humidity":17.65685607,"x":925,"y":30,"height":60,"rt":45,"gt":210,"bt":45},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","humidity":18.11078791,"x":930,"y":30,"height":60,"rt":46,"gt":209,"bt":46},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","humidity":18.50099806,"x":935,"y":30,"height":60,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","humidity":18.53053474,"x":940,"y":30,"height":60,"rt":47,"gt":208,"bt":47},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","humidity":18.64326387,"x":945,"y":30,"height":60,"rt":48,"gt":207,"bt":48},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","humidity":18.85586297,"x":950,"y":30,"height":60,"rt":48,"gt":207,"bt":48},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","humidity":16.94668129,"x":955,"y":30,"height":60,"rt":43,"gt":212,"bt":43},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","humidity":15.65865452,"x":960,"y":30,"height":60,"rt":40,"gt":215,"bt":40},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","humidity":14.32778114,"x":965,"y":30,"height":60,"rt":37,"gt":218,"bt":37},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","humidity":12.99704217,"x":970,"y":30,"height":60,"rt":33,"gt":222,"bt":33},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","humidity":12.11981653,"x":975,"y":30,"height":60,"rt":31,"gt":224,"bt":31},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","humidity":11.29036149,"x":980,"y":30,"height":60,"rt":29,"gt":226,"bt":29},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","humidity":10.9040761,"x":985,"y":30,"height":60,"rt":28,"gt":227,"bt":28},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","humidity":10.81962108,"x":990,"y":30,"height":60,"rt":28,"gt":227,"bt":28},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","humidity":10.88766111,"x":995,"y":30,"height":60,"rt":28,"gt":227,"bt":28},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","humidity":11.46136531,"x":1000,"y":30,"height":60,"rt":29,"gt":226,"bt":29},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","humidity":12.52936798,"x":1005,"y":30,"height":60,"rt":32,"gt":223,"bt":32},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","humidity":13.97347889,"x":1010,"y":30,"height":60,"rt":36,"gt":219,"bt":36},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","humidity":14.74462578,"x":1015,"y":30,"height":60,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","humidity":14.99684181,"x":1020,"y":30,"height":60,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","humidity":15.06060491,"x":1025,"y":30,"height":60,"rt":38,"gt":217,"bt":38},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","humidity":40.8905232,"x":200,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","humidity":39.89725225,"x":205,"y":60,"height":90,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","humidity":35.56461548,"x":210,"y":60,"height":90,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","humidity":31.67883409,"x":215,"y":60,"height":90,"rt":81,"gt":174,"bt":81},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","humidity":28.70269236,"x":220,"y":60,"height":90,"rt":73,"gt":182,"bt":73},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","humidity":26.87991179,"x":225,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","humidity":24.77148185,"x":230,"y":60,"height":90,"rt":63,"gt":192,"bt":63},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","humidity":24.0251204,"x":235,"y":60,"height":90,"rt":61,"gt":194,"bt":61},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","humidity":23.92006805,"x":240,"y":60,"height":90,"rt":61,"gt":194,"bt":61},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","humidity":23.63611948,"x":245,"y":60,"height":90,"rt":60,"gt":195,"bt":60},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","humidity":25.10720761,"x":250,"y":60,"height":90,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","humidity":28.47817869,"x":255,"y":60,"height":90,"rt":73,"gt":182,"bt":73},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","humidity":30.85998621,"x":260,"y":60,"height":90,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","humidity":31.67687394,"x":265,"y":60,"height":90,"rt":81,"gt":174,"bt":81},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","humidity":32.86499037,"x":270,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","humidity":34.50338315,"x":275,"y":60,"height":90,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","humidity":36.64739224,"x":280,"y":60,"height":90,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","humidity":38.4587033,"x":285,"y":60,"height":90,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","humidity":38.72132423,"x":290,"y":60,"height":90,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","humidity":39.48010871,"x":295,"y":60,"height":90,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","humidity":39.90268548,"x":300,"y":60,"height":90,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","humidity":41.12006226,"x":305,"y":60,"height":90,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","humidity":41.43523708,"x":310,"y":60,"height":90,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","humidity":41.88173104,"x":315,"y":60,"height":90,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","humidity":43.14286638,"x":320,"y":60,"height":90,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","humidity":42.83326628,"x":325,"y":60,"height":90,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","humidity":40.34024044,"x":330,"y":60,"height":90,"rt":103,"gt":152,"bt":103},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","humidity":36.46261272,"x":335,"y":60,"height":90,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","humidity":33.07223901,"x":340,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","humidity":31.10159486,"x":345,"y":60,"height":90,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","humidity":31.03899836,"x":350,"y":60,"height":90,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","humidity":31.28038862,"x":355,"y":60,"height":90,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","humidity":30.40540328,"x":360,"y":60,"height":90,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","humidity":30.28787708,"x":365,"y":60,"height":90,"rt":77,"gt":178,"bt":77},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","humidity":29.66738779,"x":370,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","humidity":29.61654751,"x":375,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","humidity":33.47951234,"x":380,"y":60,"height":90,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","humidity":35.55449049,"x":385,"y":60,"height":90,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","humidity":35.68569723,"x":390,"y":60,"height":90,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","humidity":36.63155667,"x":395,"y":60,"height":90,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","humidity":37.89261148,"x":400,"y":60,"height":90,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","humidity":38.68742979,"x":405,"y":60,"height":90,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","humidity":38.36312549,"x":410,"y":60,"height":90,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","humidity":38.86263937,"x":415,"y":60,"height":90,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","humidity":40.11229687,"x":420,"y":60,"height":90,"rt":102,"gt":153,"bt":102},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","humidity":41.14975261,"x":425,"y":60,"height":90,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","humidity":42.35950542,"x":430,"y":60,"height":90,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","humidity":43.26077774,"x":435,"y":60,"height":90,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","humidity":43.75105843,"x":440,"y":60,"height":90,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","humidity":44.17803304,"x":445,"y":60,"height":90,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","humidity":44.47868932,"x":450,"y":60,"height":90,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","humidity":43.52986203,"x":455,"y":60,"height":90,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","humidity":42.08049673,"x":460,"y":60,"height":90,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","humidity":38.83348452,"x":465,"y":60,"height":90,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","humidity":34.91155862,"x":470,"y":60,"height":90,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","humidity":33.96328568,"x":475,"y":60,"height":90,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","humidity":34.72289241,"x":480,"y":60,"height":90,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","humidity":36.53925815,"x":485,"y":60,"height":90,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","humidity":37.62998087,"x":490,"y":60,"height":90,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","humidity":38.42488049,"x":495,"y":60,"height":90,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","humidity":39.20408368,"x":500,"y":60,"height":90,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","humidity":40.651156,"x":505,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","humidity":41.16243408,"x":510,"y":60,"height":90,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","humidity":41.64487456,"x":515,"y":60,"height":90,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","humidity":43.3486565,"x":520,"y":60,"height":90,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","humidity":43.99382602,"x":525,"y":60,"height":90,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","humidity":44.50623791,"x":530,"y":60,"height":90,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","humidity":45.27962591,"x":535,"y":60,"height":90,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","humidity":45.63324114,"x":540,"y":60,"height":90,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","humidity":46.40058362,"x":545,"y":60,"height":90,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","humidity":46.53714354,"x":550,"y":60,"height":90,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","humidity":47.18471716,"x":555,"y":60,"height":90,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","humidity":47.61245205,"x":560,"y":60,"height":90,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","humidity":47.74968758,"x":565,"y":60,"height":90,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","humidity":46.45672499,"x":570,"y":60,"height":90,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","humidity":40.66597701,"x":575,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","humidity":34.25935026,"x":580,"y":60,"height":90,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","humidity":29.6789954,"x":585,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","humidity":27.12406036,"x":590,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","humidity":27.1801661,"x":595,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","humidity":27.07569105,"x":600,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","humidity":27.45368982,"x":605,"y":60,"height":90,"rt":70,"gt":185,"bt":70},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","humidity":29.81107924,"x":610,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","humidity":31.36329748,"x":615,"y":60,"height":90,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","humidity":33.11987201,"x":620,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","humidity":35.57122814,"x":625,"y":60,"height":90,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","humidity":35.94691186,"x":630,"y":60,"height":90,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","humidity":37.02235932,"x":635,"y":60,"height":90,"rt":94,"gt":161,"bt":94},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","humidity":37.71422649,"x":640,"y":60,"height":90,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","humidity":39.32336327,"x":645,"y":60,"height":90,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","humidity":40.2415524,"x":650,"y":60,"height":90,"rt":103,"gt":152,"bt":103},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","humidity":40.93378806,"x":655,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","humidity":41.52875555,"x":660,"y":60,"height":90,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","humidity":41.93731289,"x":665,"y":60,"height":90,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","humidity":42.45121986,"x":670,"y":60,"height":90,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","humidity":43.25461367,"x":675,"y":60,"height":90,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","humidity":43.25302319,"x":680,"y":60,"height":90,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","humidity":43.62108058,"x":685,"y":60,"height":90,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","humidity":42.98855932,"x":690,"y":60,"height":90,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","humidity":39.75972434,"x":695,"y":60,"height":90,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","humidity":33.85712095,"x":700,"y":60,"height":90,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","humidity":30.48780146,"x":705,"y":60,"height":90,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","humidity":27.19478093,"x":710,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","humidity":26.46164697,"x":715,"y":60,"height":90,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","humidity":26.3055314,"x":720,"y":60,"height":90,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","humidity":25.14013502,"x":725,"y":60,"height":90,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","humidity":24.97213873,"x":730,"y":60,"height":90,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","humidity":26.3691597,"x":735,"y":60,"height":90,"rt":67,"gt":188,"bt":67},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","humidity":29.99849232,"x":740,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","humidity":34.61021942,"x":745,"y":60,"height":90,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","humidity":36.31738119,"x":750,"y":60,"height":90,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","humidity":37.68737388,"x":755,"y":60,"height":90,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","humidity":39.51429175,"x":760,"y":60,"height":90,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","humidity":40.25251612,"x":765,"y":60,"height":90,"rt":103,"gt":152,"bt":103},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","humidity":41.07194266,"x":770,"y":60,"height":90,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","humidity":41.73087057,"x":775,"y":60,"height":90,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","humidity":42.58279313,"x":780,"y":60,"height":90,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","humidity":43.39165486,"x":785,"y":60,"height":90,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","humidity":44.62210978,"x":790,"y":60,"height":90,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","humidity":45.26896503,"x":795,"y":60,"height":90,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","humidity":45.57330471,"x":800,"y":60,"height":90,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","humidity":45.53252348,"x":805,"y":60,"height":90,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","humidity":40.97173863,"x":810,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","humidity":35.86790385,"x":815,"y":60,"height":90,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","humidity":32.43346425,"x":820,"y":60,"height":90,"rt":83,"gt":172,"bt":83},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","humidity":28.86886965,"x":825,"y":60,"height":90,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","humidity":26.5112056,"x":830,"y":60,"height":90,"rt":68,"gt":187,"bt":68},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","humidity":24.92521805,"x":835,"y":60,"height":90,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","humidity":22.98157352,"x":840,"y":60,"height":90,"rt":59,"gt":196,"bt":59},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","humidity":22.51519883,"x":845,"y":60,"height":90,"rt":57,"gt":198,"bt":57},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","humidity":23.52899065,"x":850,"y":60,"height":90,"rt":60,"gt":195,"bt":60},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","humidity":25.13110687,"x":855,"y":60,"height":90,"rt":64,"gt":191,"bt":64},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","humidity":28.90737506,"x":860,"y":60,"height":90,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","humidity":33.55202239,"x":865,"y":60,"height":90,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","humidity":34.52814289,"x":870,"y":60,"height":90,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","humidity":35.39222335,"x":875,"y":60,"height":90,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","humidity":36.87626239,"x":880,"y":60,"height":90,"rt":94,"gt":161,"bt":94},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","humidity":38.24561184,"x":885,"y":60,"height":90,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","humidity":39.35487591,"x":890,"y":60,"height":90,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","humidity":40.38519223,"x":895,"y":60,"height":90,"rt":103,"gt":152,"bt":103},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","humidity":41.32489618,"x":900,"y":60,"height":90,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","humidity":42.35112078,"x":905,"y":60,"height":90,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","humidity":42.86935052,"x":910,"y":60,"height":90,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","humidity":43.5970118,"x":915,"y":60,"height":90,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","humidity":44.29632376,"x":920,"y":60,"height":90,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","humidity":43.90099639,"x":925,"y":60,"height":90,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","humidity":40.72344381,"x":930,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","humidity":36.12188713,"x":935,"y":60,"height":90,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","humidity":32.92044341,"x":940,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","humidity":29.90548211,"x":945,"y":60,"height":90,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","humidity":28.3560647,"x":950,"y":60,"height":90,"rt":72,"gt":183,"bt":72},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","humidity":27.86640458,"x":955,"y":60,"height":90,"rt":71,"gt":184,"bt":71},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","humidity":27.15280259,"x":960,"y":60,"height":90,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","humidity":25.92750243,"x":965,"y":60,"height":90,"rt":66,"gt":189,"bt":66},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","humidity":25.37910028,"x":970,"y":60,"height":90,"rt":65,"gt":190,"bt":65},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","humidity":25.45455882,"x":975,"y":60,"height":90,"rt":65,"gt":190,"bt":65},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","humidity":28.44035499,"x":980,"y":60,"height":90,"rt":73,"gt":182,"bt":73},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","humidity":31.39921313,"x":985,"y":60,"height":90,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","humidity":33.04141709,"x":990,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","humidity":33.52230191,"x":995,"y":60,"height":90,"rt":85,"gt":170,"bt":85},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","humidity":34.46243928,"x":1000,"y":60,"height":90,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","humidity":36.08648185,"x":1005,"y":60,"height":90,"rt":92,"gt":163,"bt":92},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","humidity":37.43979812,"x":1010,"y":60,"height":90,"rt":95,"gt":160,"bt":95},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","humidity":38.88680877,"x":1015,"y":60,"height":90,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","humidity":40.92525487,"x":1020,"y":60,"height":90,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","humidity":41.81779239,"x":1025,"y":60,"height":90,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","humidity":51.23335294,"x":200,"y":90,"height":120,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","humidity":51.90861914,"x":205,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","humidity":52.63026857,"x":210,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","humidity":52.93529412,"x":215,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","humidity":52.9828875,"x":220,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","humidity":50.92452173,"x":225,"y":90,"height":120,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","humidity":46.4630711,"x":230,"y":90,"height":120,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","humidity":44.14557398,"x":235,"y":90,"height":120,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","humidity":43.2540054,"x":240,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","humidity":44.15856186,"x":245,"y":90,"height":120,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","humidity":43.40560356,"x":250,"y":90,"height":120,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","humidity":43.89558219,"x":255,"y":90,"height":120,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","humidity":43.23626336,"x":260,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","humidity":43.18491487,"x":265,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","humidity":45.3981722,"x":270,"y":90,"height":120,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","humidity":48.83672892,"x":275,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","humidity":49.99472742,"x":280,"y":90,"height":120,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","humidity":51.79966964,"x":285,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","humidity":52.60000184,"x":290,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","humidity":52.35015688,"x":295,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","humidity":52.37074484,"x":300,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","humidity":52.58071941,"x":305,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","humidity":52.91898174,"x":310,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","humidity":52.64401336,"x":315,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","humidity":52.73630925,"x":320,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","humidity":52.75746219,"x":325,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","humidity":53.00535686,"x":330,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","humidity":52.81274168,"x":335,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","humidity":52.38580521,"x":340,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","humidity":47.31114916,"x":345,"y":90,"height":120,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","humidity":44.1878961,"x":350,"y":90,"height":120,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","humidity":42.8722083,"x":355,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","humidity":42.68350519,"x":360,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","humidity":44.29476225,"x":365,"y":90,"height":120,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","humidity":44.96413059,"x":370,"y":90,"height":120,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","humidity":46.01177893,"x":375,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","humidity":46.40204885,"x":380,"y":90,"height":120,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","humidity":47.06424296,"x":385,"y":90,"height":120,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","humidity":47.58050107,"x":390,"y":90,"height":120,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","humidity":48.56628055,"x":395,"y":90,"height":120,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","humidity":50.09306675,"x":400,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","humidity":50.36069756,"x":405,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","humidity":50.5445805,"x":410,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","humidity":51.2307571,"x":415,"y":90,"height":120,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","humidity":51.64415047,"x":420,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","humidity":52.20869022,"x":425,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","humidity":52.09517485,"x":430,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","humidity":52.3114271,"x":435,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","humidity":52.36204108,"x":440,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","humidity":52.48021293,"x":445,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","humidity":52.65353428,"x":450,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","humidity":52.909341,"x":455,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","humidity":52.82334615,"x":460,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","humidity":51.95732132,"x":465,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","humidity":49.81060596,"x":470,"y":90,"height":120,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","humidity":46.67351838,"x":475,"y":90,"height":120,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","humidity":45.05007748,"x":480,"y":90,"height":120,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","humidity":42.94849915,"x":485,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","humidity":43.27556588,"x":490,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","humidity":43.8591999,"x":495,"y":90,"height":120,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","humidity":42.51408909,"x":500,"y":90,"height":120,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","humidity":41.94838751,"x":505,"y":90,"height":120,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","humidity":43.63590748,"x":510,"y":90,"height":120,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","humidity":44.56483921,"x":515,"y":90,"height":120,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","humidity":46.26930785,"x":520,"y":90,"height":120,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","humidity":47.0440195,"x":525,"y":90,"height":120,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","humidity":47.88421822,"x":530,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","humidity":49.11893459,"x":535,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","humidity":50.3996059,"x":540,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","humidity":50.32627815,"x":545,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","humidity":50.85374551,"x":550,"y":90,"height":120,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","humidity":51.48630462,"x":555,"y":90,"height":120,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","humidity":51.69865566,"x":560,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","humidity":52.06433957,"x":565,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","humidity":51.8164501,"x":570,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","humidity":52.28515286,"x":575,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","humidity":52.31358865,"x":580,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","humidity":50.26789709,"x":585,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","humidity":45.52922492,"x":590,"y":90,"height":120,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","humidity":45.8007389,"x":595,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","humidity":43.12006872,"x":600,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","humidity":41.77636508,"x":605,"y":90,"height":120,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","humidity":40.66506866,"x":610,"y":90,"height":120,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","humidity":40.99518384,"x":615,"y":90,"height":120,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","humidity":42.480094,"x":620,"y":90,"height":120,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","humidity":41.57181144,"x":625,"y":90,"height":120,"rt":106,"gt":149,"bt":106},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","humidity":42.67284562,"x":630,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","humidity":44.18884922,"x":635,"y":90,"height":120,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","humidity":47.65242518,"x":640,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","humidity":47.73021866,"x":645,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","humidity":49.35239413,"x":650,"y":90,"height":120,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","humidity":48.85734385,"x":655,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","humidity":48.77874835,"x":660,"y":90,"height":120,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","humidity":47.45545765,"x":665,"y":90,"height":120,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","humidity":47.64685465,"x":670,"y":90,"height":120,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","humidity":47.71162235,"x":675,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","humidity":47.86226474,"x":680,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","humidity":49.05130721,"x":685,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","humidity":49.45076308,"x":690,"y":90,"height":120,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","humidity":49.35138461,"x":695,"y":90,"height":120,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","humidity":49.68102262,"x":700,"y":90,"height":120,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","humidity":49.66472807,"x":705,"y":90,"height":120,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","humidity":49.35992488,"x":710,"y":90,"height":120,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","humidity":48.97196909,"x":715,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","humidity":48.17322616,"x":720,"y":90,"height":120,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","humidity":45.75795482,"x":725,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","humidity":45.77275623,"x":730,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","humidity":45.98285408,"x":735,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","humidity":45.19397153,"x":740,"y":90,"height":120,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","humidity":45.42656742,"x":745,"y":90,"height":120,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","humidity":46.64449758,"x":750,"y":90,"height":120,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","humidity":48.01313655,"x":755,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","humidity":49.20415996,"x":760,"y":90,"height":120,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","humidity":50.78204495,"x":765,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","humidity":52.49686031,"x":770,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","humidity":52.35509688,"x":775,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","humidity":52.52807261,"x":780,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","humidity":51.99420719,"x":785,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","humidity":52.10404085,"x":790,"y":90,"height":120,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","humidity":52.66615963,"x":795,"y":90,"height":120,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","humidity":53.04382325,"x":800,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","humidity":53.34759502,"x":805,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","humidity":53.34143896,"x":810,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","humidity":53.14752248,"x":815,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","humidity":53.20040453,"x":820,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","humidity":51.75146612,"x":825,"y":90,"height":120,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","humidity":46.67740312,"x":830,"y":90,"height":120,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","humidity":42.80165822,"x":835,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","humidity":42.75651907,"x":840,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","humidity":42.23482475,"x":845,"y":90,"height":120,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","humidity":43.21453328,"x":850,"y":90,"height":120,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","humidity":43.90649988,"x":855,"y":90,"height":120,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","humidity":45.35661155,"x":860,"y":90,"height":120,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","humidity":46.34811213,"x":865,"y":90,"height":120,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","humidity":47.19666094,"x":870,"y":90,"height":120,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","humidity":48.40688924,"x":875,"y":90,"height":120,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","humidity":49.96929464,"x":880,"y":90,"height":120,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","humidity":51.34567594,"x":885,"y":90,"height":120,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Rio de Janeiro","humidity":53.18405423,"x":890,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Rio de Janeiro","humidity":54.77232329,"x":895,"y":90,"height":120,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Rio de Janeiro","humidity":54.33658512,"x":900,"y":90,"height":120,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Rio de Janeiro","humidity":53.44978349,"x":905,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Rio de Janeiro","humidity":53.3535208,"x":910,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Rio de Janeiro","humidity":53.11163799,"x":915,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Rio de Janeiro","humidity":53.10355029,"x":920,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Rio de Janeiro","humidity":53.44689915,"x":925,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Rio de Janeiro","humidity":53.57668971,"x":930,"y":90,"height":120,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Rio de Janeiro","humidity":53.242932,"x":935,"y":90,"height":120,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Rio de Janeiro","humidity":53.1152437,"x":940,"y":90,"height":120,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Rio de Janeiro","humidity":50.46539641,"x":945,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Rio de Janeiro","humidity":47.43124602,"x":950,"y":90,"height":120,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Rio de Janeiro","humidity":44.75941721,"x":955,"y":90,"height":120,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Rio de Janeiro","humidity":42.29394141,"x":960,"y":90,"height":120,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Rio de Janeiro","humidity":42.93903033,"x":965,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Rio de Janeiro","humidity":42.74546404,"x":970,"y":90,"height":120,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Rio de Janeiro","humidity":43.46599209,"x":975,"y":90,"height":120,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Rio de Janeiro","humidity":44.07200201,"x":980,"y":90,"height":120,"rt":112,"gt":143,"bt":112},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Rio de Janeiro","humidity":45.98506952,"x":985,"y":90,"height":120,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Rio de Janeiro","humidity":47.69693666,"x":990,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Rio de Janeiro","humidity":47.81845087,"x":995,"y":90,"height":120,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Rio de Janeiro","humidity":49.36481063,"x":1000,"y":90,"height":120,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Rio de Janeiro","humidity":50.473055,"x":1005,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Rio de Janeiro","humidity":50.35218542,"x":1010,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Rio de Janeiro","humidity":51.20102947,"x":1015,"y":90,"height":120,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Rio de Janeiro","humidity":50.51689965,"x":1020,"y":90,"height":120,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Rio de Janeiro","humidity":50.23256069,"x":1025,"y":90,"height":120,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"San Francisco","humidity":58.43452873,"x":200,"y":120,"height":150,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"San Francisco","humidity":59.36466594,"x":205,"y":120,"height":150,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"San Francisco","humidity":62.35223811,"x":210,"y":120,"height":150,"rt":159,"gt":96,"bt":159},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"San Francisco","humidity":60.06370239,"x":215,"y":120,"height":150,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"San Francisco","humidity":59.62605663,"x":220,"y":120,"height":150,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"San Francisco","humidity":58.85514089,"x":225,"y":120,"height":150,"rt":150,"gt":105,"bt":150},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"San Francisco","humidity":58.81200603,"x":230,"y":120,"height":150,"rt":150,"gt":105,"bt":150},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"San Francisco","humidity":59.57837243,"x":235,"y":120,"height":150,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"San Francisco","humidity":60.999611,"x":240,"y":120,"height":150,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"San Francisco","humidity":62.22720477,"x":245,"y":120,"height":150,"rt":159,"gt":96,"bt":159},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"San Francisco","humidity":59.84961225,"x":250,"y":120,"height":150,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"San Francisco","humidity":57.16446708,"x":255,"y":120,"height":150,"rt":146,"gt":109,"bt":146},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"San Francisco","humidity":52.36118387,"x":260,"y":120,"height":150,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"San Francisco","humidity":47.97376772,"x":265,"y":120,"height":150,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"San Francisco","humidity":38.97763221,"x":270,"y":120,"height":150,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"San Francisco","humidity":32.39086924,"x":275,"y":120,"height":150,"rt":83,"gt":172,"bt":83},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"San Francisco","humidity":31.41698414,"x":280,"y":120,"height":150,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"San Francisco","humidity":33.85951125,"x":285,"y":120,"height":150,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"San Francisco","humidity":34.18917183,"x":290,"y":120,"height":150,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"San Francisco","humidity":41.08456646,"x":295,"y":120,"height":150,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"San Francisco","humidity":42.96490286,"x":300,"y":120,"height":150,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"San Francisco","humidity":44.85027201,"x":305,"y":120,"height":150,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"San Francisco","humidity":45.78060354,"x":310,"y":120,"height":150,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"San Francisco","humidity":44.23013712,"x":315,"y":120,"height":150,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"San Francisco","humidity":44.43997147,"x":320,"y":120,"height":150,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"San Francisco","humidity":47.43462842,"x":325,"y":120,"height":150,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"San Francisco","humidity":50.31819386,"x":330,"y":120,"height":150,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"San Francisco","humidity":51.82839188,"x":335,"y":120,"height":150,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"San Francisco","humidity":52.81155039,"x":340,"y":120,"height":150,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"San Francisco","humidity":54.19132731,"x":345,"y":120,"height":150,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"San Francisco","humidity":54.37943511,"x":350,"y":120,"height":150,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"San Francisco","humidity":55.22799235,"x":355,"y":120,"height":150,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"San Francisco","humidity":55.61178982,"x":360,"y":120,"height":150,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"San Francisco","humidity":57.2013888,"x":365,"y":120,"height":150,"rt":146,"gt":109,"bt":146},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"San Francisco","humidity":54.75021242,"x":370,"y":120,"height":150,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"San Francisco","humidity":51.1915458,"x":375,"y":120,"height":150,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"San Francisco","humidity":48.58984619,"x":380,"y":120,"height":150,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"San Francisco","humidity":42.31107198,"x":385,"y":120,"height":150,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"San Francisco","humidity":37.86209269,"x":390,"y":120,"height":150,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"San Francisco","humidity":34.85332217,"x":395,"y":120,"height":150,"rt":89,"gt":166,"bt":89},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"San Francisco","humidity":29.09415689,"x":400,"y":120,"height":150,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"San Francisco","humidity":26.56218901,"x":405,"y":120,"height":150,"rt":68,"gt":187,"bt":68},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"San Francisco","humidity":27.58309034,"x":410,"y":120,"height":150,"rt":70,"gt":185,"bt":70},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"San Francisco","humidity":26.62941496,"x":415,"y":120,"height":150,"rt":68,"gt":187,"bt":68},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"San Francisco","humidity":25.41582266,"x":420,"y":120,"height":150,"rt":65,"gt":190,"bt":65},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"San Francisco","humidity":27.09296117,"x":425,"y":120,"height":150,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"San Francisco","humidity":29.89695432,"x":430,"y":120,"height":150,"rt":76,"gt":179,"bt":76},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"San Francisco","humidity":31.77987275,"x":435,"y":120,"height":150,"rt":81,"gt":174,"bt":81},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"San Francisco","humidity":33.569855,"x":440,"y":120,"height":150,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"San Francisco","humidity":35.35142339,"x":445,"y":120,"height":150,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"San Francisco","humidity":35.40182446,"x":450,"y":120,"height":150,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"San Francisco","humidity":34.61798518,"x":455,"y":120,"height":150,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"San Francisco","humidity":35.2196774,"x":460,"y":120,"height":150,"rt":90,"gt":165,"bt":90},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"San Francisco","humidity":38.98948843,"x":465,"y":120,"height":150,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"San Francisco","humidity":39.22782385,"x":470,"y":120,"height":150,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"San Francisco","humidity":38.49923367,"x":475,"y":120,"height":150,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"San Francisco","humidity":38.50349317,"x":480,"y":120,"height":150,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"San Francisco","humidity":46.22204134,"x":485,"y":120,"height":150,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"San Francisco","humidity":56.34980689,"x":490,"y":120,"height":150,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"San Francisco","humidity":56.0944467,"x":495,"y":120,"height":150,"rt":143,"gt":112,"bt":143},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"San Francisco","humidity":51.6131632,"x":500,"y":120,"height":150,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"San Francisco","humidity":41.15877186,"x":505,"y":120,"height":150,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"San Francisco","humidity":38.79744004,"x":510,"y":120,"height":150,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"San Francisco","humidity":39.01023455,"x":515,"y":120,"height":150,"rt":99,"gt":156,"bt":99},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"San Francisco","humidity":37.68493889,"x":520,"y":120,"height":150,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"San Francisco","humidity":35.82742303,"x":525,"y":120,"height":150,"rt":91,"gt":164,"bt":91},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"San Francisco","humidity":32.12170008,"x":530,"y":120,"height":150,"rt":82,"gt":173,"bt":82},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"San Francisco","humidity":28.67010825,"x":535,"y":120,"height":150,"rt":73,"gt":182,"bt":73},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"San Francisco","humidity":28.70146879,"x":540,"y":120,"height":150,"rt":73,"gt":182,"bt":73},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"San Francisco","humidity":32.81633716,"x":545,"y":120,"height":150,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"San Francisco","humidity":44.91885622,"x":550,"y":120,"height":150,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"San Francisco","humidity":52.21115962,"x":555,"y":120,"height":150,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"San Francisco","humidity":48.4809424,"x":560,"y":120,"height":150,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"San Francisco","humidity":52.20060112,"x":565,"y":120,"height":150,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"San Francisco","humidity":52.52919868,"x":570,"y":120,"height":150,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"San Francisco","humidity":53.26617136,"x":575,"y":120,"height":150,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"San Francisco","humidity":53.46986697,"x":580,"y":120,"height":150,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"San Francisco","humidity":53.85987637,"x":585,"y":120,"height":150,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"San Francisco","humidity":55.27274876,"x":590,"y":120,"height":150,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"San Francisco","humidity":55.02879091,"x":595,"y":120,"height":150,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"San Francisco","humidity":54.07246227,"x":600,"y":120,"height":150,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"San Francisco","humidity":53.71113395,"x":605,"y":120,"height":150,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"San Francisco","humidity":53.86992346,"x":610,"y":120,"height":150,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"San Francisco","humidity":53.0721318,"x":615,"y":120,"height":150,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"San Francisco","humidity":48.56850132,"x":620,"y":120,"height":150,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"San Francisco","humidity":40.87216428,"x":625,"y":120,"height":150,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"San Francisco","humidity":36.39340924,"x":630,"y":120,"height":150,"rt":93,"gt":162,"bt":93},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"San Francisco","humidity":34.39447926,"x":635,"y":120,"height":150,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"San Francisco","humidity":32.90051836,"x":640,"y":120,"height":150,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"San Francisco","humidity":39.75103372,"x":645,"y":120,"height":150,"rt":101,"gt":154,"bt":101},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"San Francisco","humidity":41.01710218,"x":650,"y":120,"height":150,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"San Francisco","humidity":44.84643394,"x":655,"y":120,"height":150,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"San Francisco","humidity":46.87979488,"x":660,"y":120,"height":150,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"San Francisco","humidity":49.18765346,"x":665,"y":120,"height":150,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"San Francisco","humidity":46.40186203,"x":670,"y":120,"height":150,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"San Francisco","humidity":48.07754039,"x":675,"y":120,"height":150,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"San Francisco","humidity":52.26351523,"x":680,"y":120,"height":150,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"San Francisco","humidity":53.86092239,"x":685,"y":120,"height":150,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"San Francisco","humidity":51.74893721,"x":690,"y":120,"height":150,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"San Francisco","humidity":54.38020044,"x":695,"y":120,"height":150,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"San Francisco","humidity":56.52150793,"x":700,"y":120,"height":150,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"San Francisco","humidity":61.09027934,"x":705,"y":120,"height":150,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"San Francisco","humidity":63.97603898,"x":710,"y":120,"height":150,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"San Francisco","humidity":63.36033217,"x":715,"y":120,"height":150,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"San Francisco","humidity":64.45647383,"x":720,"y":120,"height":150,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"San Francisco","humidity":63.61895299,"x":725,"y":120,"height":150,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"San Francisco","humidity":60.87892639,"x":730,"y":120,"height":150,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"San Francisco","humidity":55.8079045,"x":735,"y":120,"height":150,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"San Francisco","humidity":51.2937681,"x":740,"y":120,"height":150,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"San Francisco","humidity":45.32109693,"x":745,"y":120,"height":150,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"San Francisco","humidity":42.06023783,"x":750,"y":120,"height":150,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"San Francisco","humidity":40.24688101,"x":755,"y":120,"height":150,"rt":103,"gt":152,"bt":103},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"San Francisco","humidity":38.25535722,"x":760,"y":120,"height":150,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"San Francisco","humidity":37.97503822,"x":765,"y":120,"height":150,"rt":97,"gt":158,"bt":97},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"San Francisco","humidity":38.32096089,"x":770,"y":120,"height":150,"rt":98,"gt":157,"bt":98},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"San Francisco","humidity":43.45195672,"x":775,"y":120,"height":150,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"San Francisco","humidity":49.48781075,"x":780,"y":120,"height":150,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"San Francisco","humidity":50.01760004,"x":785,"y":120,"height":150,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"San Francisco","humidity":50.61389129,"x":790,"y":120,"height":150,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"San Francisco","humidity":50.56179589,"x":795,"y":120,"height":150,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"San Francisco","humidity":50.73905875,"x":800,"y":120,"height":150,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"San Francisco","humidity":51.93842476,"x":805,"y":120,"height":150,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"San Francisco","humidity":52.19537562,"x":810,"y":120,"height":150,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"San Francisco","humidity":52.64156362,"x":815,"y":120,"height":150,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"San Francisco","humidity":53.6023699,"x":820,"y":120,"height":150,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"San Francisco","humidity":54.20757792,"x":825,"y":120,"height":150,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"San Francisco","humidity":54.86152882,"x":830,"y":120,"height":150,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"San Francisco","humidity":55.53070167,"x":835,"y":120,"height":150,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"San Francisco","humidity":54.24984098,"x":840,"y":120,"height":150,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"San Francisco","humidity":54.44687815,"x":845,"y":120,"height":150,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"San Francisco","humidity":52.84798282,"x":850,"y":120,"height":150,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"San Francisco","humidity":48.27553827,"x":855,"y":120,"height":150,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"San Francisco","humidity":43.3290692,"x":860,"y":120,"height":150,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"San Francisco","humidity":40.92459771,"x":865,"y":120,"height":150,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"San Francisco","humidity":37.55973701,"x":870,"y":120,"height":150,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"San Francisco","humidity":31.83535539,"x":875,"y":120,"height":150,"rt":81,"gt":174,"bt":81},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"San Francisco","humidity":30.5372791,"x":880,"y":120,"height":150,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"San Francisco","humidity":30.59499372,"x":885,"y":120,"height":150,"rt":78,"gt":177,"bt":78},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"San Francisco","humidity":33.88527427,"x":890,"y":120,"height":150,"rt":86,"gt":169,"bt":86},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"San Francisco","humidity":42.15425423,"x":895,"y":120,"height":150,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"San Francisco","humidity":49.57599639,"x":900,"y":120,"height":150,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"San Francisco","humidity":52.79903097,"x":905,"y":120,"height":150,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"San Francisco","humidity":55.39919482,"x":910,"y":120,"height":150,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"San Francisco","humidity":55.41685565,"x":915,"y":120,"height":150,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"San Francisco","humidity":56.19725527,"x":920,"y":120,"height":150,"rt":143,"gt":112,"bt":143},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"San Francisco","humidity":55.72560519,"x":925,"y":120,"height":150,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"San Francisco","humidity":58.24063422,"x":930,"y":120,"height":150,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"San Francisco","humidity":58.60912092,"x":935,"y":120,"height":150,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"San Francisco","humidity":58.448305,"x":940,"y":120,"height":150,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"San Francisco","humidity":60.04551285,"x":945,"y":120,"height":150,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"San Francisco","humidity":59.3351574,"x":950,"y":120,"height":150,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"San Francisco","humidity":59.40061631,"x":955,"y":120,"height":150,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"San Francisco","humidity":59.46782552,"x":960,"y":120,"height":150,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"San Francisco","humidity":58.96198783,"x":965,"y":120,"height":150,"rt":150,"gt":105,"bt":150},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"San Francisco","humidity":54.32571008,"x":970,"y":120,"height":150,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"San Francisco","humidity":52.24589615,"x":975,"y":120,"height":150,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"San Francisco","humidity":49.06454136,"x":980,"y":120,"height":150,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"San Francisco","humidity":43.0109766,"x":985,"y":120,"height":150,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"San Francisco","humidity":37.69754616,"x":990,"y":120,"height":150,"rt":96,"gt":159,"bt":96},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"San Francisco","humidity":34.39752329,"x":995,"y":120,"height":150,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"San Francisco","humidity":34.57775388,"x":1000,"y":120,"height":150,"rt":88,"gt":167,"bt":88},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"San Francisco","humidity":31.15726233,"x":1005,"y":120,"height":150,"rt":79,"gt":176,"bt":79},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"San Francisco","humidity":32.25138812,"x":1010,"y":120,"height":150,"rt":82,"gt":173,"bt":82},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"San Francisco","humidity":36.87082185,"x":1015,"y":120,"height":150,"rt":94,"gt":161,"bt":94},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"San Francisco","humidity":42.62888452,"x":1020,"y":120,"height":150,"rt":109,"gt":146,"bt":109},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"San Francisco","humidity":48.43003922,"x":1025,"y":120,"height":150,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Shanghai","humidity":27.18464798,"x":200,"y":150,"height":180,"rt":69,"gt":186,"bt":69},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Shanghai","humidity":27.93396369,"x":205,"y":150,"height":180,"rt":71,"gt":184,"bt":71},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Shanghai","humidity":29.14193504,"x":210,"y":150,"height":180,"rt":74,"gt":181,"bt":74},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Shanghai","humidity":31.2557441,"x":215,"y":150,"height":180,"rt":80,"gt":175,"bt":80},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Shanghai","humidity":33.96796582,"x":220,"y":150,"height":180,"rt":87,"gt":168,"bt":87},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Shanghai","humidity":39.3995798,"x":225,"y":150,"height":180,"rt":100,"gt":155,"bt":100},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Shanghai","humidity":41.78903873,"x":230,"y":150,"height":180,"rt":107,"gt":148,"bt":107},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Shanghai","humidity":42.42466196,"x":235,"y":150,"height":180,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Shanghai","humidity":42.30113908,"x":240,"y":150,"height":180,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Shanghai","humidity":42.43907825,"x":245,"y":150,"height":180,"rt":108,"gt":147,"bt":108},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Shanghai","humidity":42.95252187,"x":250,"y":150,"height":180,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Shanghai","humidity":43.70630107,"x":255,"y":150,"height":180,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Shanghai","humidity":44.49691273,"x":260,"y":150,"height":180,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Shanghai","humidity":46.03069598,"x":265,"y":150,"height":180,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Shanghai","humidity":49.94696999,"x":270,"y":150,"height":180,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Shanghai","humidity":52.11177469,"x":275,"y":150,"height":180,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Shanghai","humidity":53.09815252,"x":280,"y":150,"height":180,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Shanghai","humidity":52.52757027,"x":285,"y":150,"height":180,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Shanghai","humidity":51.75235591,"x":290,"y":150,"height":180,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Shanghai","humidity":51.35402488,"x":295,"y":150,"height":180,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Shanghai","humidity":50.41277382,"x":300,"y":150,"height":180,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Shanghai","humidity":50.06805011,"x":305,"y":150,"height":180,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Shanghai","humidity":50.6094367,"x":310,"y":150,"height":180,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Shanghai","humidity":52.48037329,"x":315,"y":150,"height":180,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Shanghai","humidity":54.63421232,"x":320,"y":150,"height":180,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Shanghai","humidity":55.13572957,"x":325,"y":150,"height":180,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Shanghai","humidity":56.81732796,"x":330,"y":150,"height":180,"rt":145,"gt":110,"bt":145},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Shanghai","humidity":59.99385196,"x":335,"y":150,"height":180,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Shanghai","humidity":61.94880268,"x":340,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Shanghai","humidity":63.87020111,"x":345,"y":150,"height":180,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Shanghai","humidity":65.80111758,"x":350,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Shanghai","humidity":67.48661696,"x":355,"y":150,"height":180,"rt":172,"gt":83,"bt":172},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Shanghai","humidity":67.17177932,"x":360,"y":150,"height":180,"rt":171,"gt":84,"bt":171},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Shanghai","humidity":66.00766636,"x":365,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Shanghai","humidity":65.7857586,"x":370,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Shanghai","humidity":65.8570138,"x":375,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Shanghai","humidity":65.8546148,"x":380,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Shanghai","humidity":64.52956919,"x":385,"y":150,"height":180,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Shanghai","humidity":63.94528347,"x":390,"y":150,"height":180,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Shanghai","humidity":62.56990591,"x":395,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Shanghai","humidity":61.61708476,"x":400,"y":150,"height":180,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Shanghai","humidity":61.27568189,"x":405,"y":150,"height":180,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Shanghai","humidity":61.62332018,"x":410,"y":150,"height":180,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Shanghai","humidity":62.59811839,"x":415,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Shanghai","humidity":63.03117604,"x":420,"y":150,"height":180,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Shanghai","humidity":63.13936867,"x":425,"y":150,"height":180,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Shanghai","humidity":61.82838246,"x":430,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Shanghai","humidity":61.83077953,"x":435,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Shanghai","humidity":60.73884999,"x":440,"y":150,"height":180,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Shanghai","humidity":59.92801249,"x":445,"y":150,"height":180,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Shanghai","humidity":60.24335741,"x":450,"y":150,"height":180,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Shanghai","humidity":60.35185999,"x":455,"y":150,"height":180,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Shanghai","humidity":60.97660454,"x":460,"y":150,"height":180,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Shanghai","humidity":62.00855676,"x":465,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Shanghai","humidity":62.1137346,"x":470,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Shanghai","humidity":62.66241609,"x":475,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Shanghai","humidity":63.68571634,"x":480,"y":150,"height":180,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Shanghai","humidity":65.18527019,"x":485,"y":150,"height":180,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Shanghai","humidity":65.36991308,"x":490,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Shanghai","humidity":65.82407191,"x":495,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Shanghai","humidity":67.3084263,"x":500,"y":150,"height":180,"rt":172,"gt":83,"bt":172},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Shanghai","humidity":66.80014692,"x":505,"y":150,"height":180,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Shanghai","humidity":67.6721815,"x":510,"y":150,"height":180,"rt":173,"gt":82,"bt":173},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Shanghai","humidity":68.85811077,"x":515,"y":150,"height":180,"rt":176,"gt":79,"bt":176},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Shanghai","humidity":69.0354023,"x":520,"y":150,"height":180,"rt":176,"gt":79,"bt":176},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Shanghai","humidity":68.67700935,"x":525,"y":150,"height":180,"rt":175,"gt":80,"bt":175},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Shanghai","humidity":70.15384957,"x":530,"y":150,"height":180,"rt":179,"gt":76,"bt":179},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Shanghai","humidity":70.13584358,"x":535,"y":150,"height":180,"rt":179,"gt":76,"bt":179},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Shanghai","humidity":69.51284071,"x":540,"y":150,"height":180,"rt":177,"gt":78,"bt":177},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Shanghai","humidity":68.87754086,"x":545,"y":150,"height":180,"rt":176,"gt":79,"bt":176},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Shanghai","humidity":66.28923555,"x":550,"y":150,"height":180,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Shanghai","humidity":65.20814179,"x":555,"y":150,"height":180,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Shanghai","humidity":64.23686324,"x":560,"y":150,"height":180,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Shanghai","humidity":62.84896229,"x":565,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Shanghai","humidity":63.18357283,"x":570,"y":150,"height":180,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Shanghai","humidity":64.97319356,"x":575,"y":150,"height":180,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Shanghai","humidity":67.05039514,"x":580,"y":150,"height":180,"rt":171,"gt":84,"bt":171},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Shanghai","humidity":68.89004864,"x":585,"y":150,"height":180,"rt":176,"gt":79,"bt":176},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Shanghai","humidity":68.49976984,"x":590,"y":150,"height":180,"rt":175,"gt":80,"bt":175},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Shanghai","humidity":70.67151426,"x":595,"y":150,"height":180,"rt":180,"gt":75,"bt":180},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Shanghai","humidity":71.61214534,"x":600,"y":150,"height":180,"rt":183,"gt":72,"bt":183},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Shanghai","humidity":69.7669759,"x":605,"y":150,"height":180,"rt":178,"gt":77,"bt":178},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Shanghai","humidity":70.27492943,"x":610,"y":150,"height":180,"rt":179,"gt":76,"bt":179},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Shanghai","humidity":71.34319737,"x":615,"y":150,"height":180,"rt":182,"gt":73,"bt":182},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Shanghai","humidity":71.34966921,"x":620,"y":150,"height":180,"rt":182,"gt":73,"bt":182},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Shanghai","humidity":71.68688206,"x":625,"y":150,"height":180,"rt":183,"gt":72,"bt":183},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Shanghai","humidity":71.99366964,"x":630,"y":150,"height":180,"rt":184,"gt":71,"bt":184},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Shanghai","humidity":71.26418784,"x":635,"y":150,"height":180,"rt":182,"gt":73,"bt":182},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Shanghai","humidity":71.71210351,"x":640,"y":150,"height":180,"rt":183,"gt":72,"bt":183},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Shanghai","humidity":71.56823084,"x":645,"y":150,"height":180,"rt":182,"gt":73,"bt":182},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Shanghai","humidity":71.72047406,"x":650,"y":150,"height":180,"rt":183,"gt":72,"bt":183},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Shanghai","humidity":69.63236796,"x":655,"y":150,"height":180,"rt":178,"gt":77,"bt":178},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Shanghai","humidity":65.65115575,"x":660,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Shanghai","humidity":61.13431814,"x":665,"y":150,"height":180,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Shanghai","humidity":53.62817256,"x":670,"y":150,"height":180,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Shanghai","humidity":51.58815515,"x":675,"y":150,"height":180,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Shanghai","humidity":52.08198588,"x":680,"y":150,"height":180,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Shanghai","humidity":52.42217518,"x":685,"y":150,"height":180,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Shanghai","humidity":52.96740634,"x":690,"y":150,"height":180,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Shanghai","humidity":55.44088266,"x":695,"y":150,"height":180,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Shanghai","humidity":58.69485621,"x":700,"y":150,"height":180,"rt":150,"gt":105,"bt":150},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Shanghai","humidity":61.5330017,"x":705,"y":150,"height":180,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Shanghai","humidity":60.96811253,"x":710,"y":150,"height":180,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Shanghai","humidity":61.81659101,"x":715,"y":150,"height":180,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Shanghai","humidity":62.91797254,"x":720,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Shanghai","humidity":63.39852627,"x":725,"y":150,"height":180,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Shanghai","humidity":63.19592995,"x":730,"y":150,"height":180,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Shanghai","humidity":65.34721111,"x":735,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Shanghai","humidity":68.20552984,"x":740,"y":150,"height":180,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Shanghai","humidity":73.5684767,"x":745,"y":150,"height":180,"rt":188,"gt":67,"bt":188},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Shanghai","humidity":73.77633245,"x":750,"y":150,"height":180,"rt":188,"gt":67,"bt":188},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Shanghai","humidity":74.89241268,"x":755,"y":150,"height":180,"rt":191,"gt":64,"bt":191},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Shanghai","humidity":74.64729501,"x":760,"y":150,"height":180,"rt":190,"gt":65,"bt":190},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Shanghai","humidity":73.84189907,"x":765,"y":150,"height":180,"rt":188,"gt":67,"bt":188},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Shanghai","humidity":73.26632558,"x":770,"y":150,"height":180,"rt":187,"gt":68,"bt":187},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Shanghai","humidity":71.94361524,"x":775,"y":150,"height":180,"rt":183,"gt":72,"bt":183},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Shanghai","humidity":70.20367395,"x":780,"y":150,"height":180,"rt":179,"gt":76,"bt":179},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Shanghai","humidity":65.48723983,"x":785,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Shanghai","humidity":60.87383563,"x":790,"y":150,"height":180,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Shanghai","humidity":56.9576771,"x":795,"y":150,"height":180,"rt":145,"gt":110,"bt":145},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Shanghai","humidity":54.98208011,"x":800,"y":150,"height":180,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Shanghai","humidity":54.69137487,"x":805,"y":150,"height":180,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Shanghai","humidity":54.85694357,"x":810,"y":150,"height":180,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Shanghai","humidity":55.65086711,"x":815,"y":150,"height":180,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Shanghai","humidity":56.57226765,"x":820,"y":150,"height":180,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Shanghai","humidity":57.24787655,"x":825,"y":150,"height":180,"rt":146,"gt":109,"bt":146},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Shanghai","humidity":61.34158399,"x":830,"y":150,"height":180,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Shanghai","humidity":65.39545031,"x":835,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Shanghai","humidity":65.87237623,"x":840,"y":150,"height":180,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Shanghai","humidity":65.20858861,"x":845,"y":150,"height":180,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Shanghai","humidity":65.40760235,"x":850,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Shanghai","humidity":65.30018264,"x":855,"y":150,"height":180,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Shanghai","humidity":64.51441883,"x":860,"y":150,"height":180,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Shanghai","humidity":64.60375722,"x":865,"y":150,"height":180,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Shanghai","humidity":64.45302115,"x":870,"y":150,"height":180,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Shanghai","humidity":64.69631626,"x":875,"y":150,"height":180,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Shanghai","humidity":64.39078422,"x":880,"y":150,"height":180,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Shanghai","humidity":62.78459674,"x":885,"y":150,"height":180,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Shanghai","humidity":59.96234378,"x":890,"y":150,"height":180,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Shanghai","humidity":56.92644271,"x":895,"y":150,"height":180,"rt":145,"gt":110,"bt":145},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Shanghai","humidity":53.43498794,"x":900,"y":150,"height":180,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Shanghai","humidity":50.06408361,"x":905,"y":150,"height":180,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Shanghai","humidity":47.84275261,"x":910,"y":150,"height":180,"rt":122,"gt":133,"bt":122},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Shanghai","humidity":45.77353614,"x":915,"y":150,"height":180,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Shanghai","humidity":44.56791184,"x":920,"y":150,"height":180,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Shanghai","humidity":45.05974959,"x":925,"y":150,"height":180,"rt":115,"gt":140,"bt":115},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Shanghai","humidity":45.87483571,"x":930,"y":150,"height":180,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Shanghai","humidity":47.23478426,"x":935,"y":150,"height":180,"rt":120,"gt":135,"bt":120},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Shanghai","humidity":49.53917612,"x":940,"y":150,"height":180,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Shanghai","humidity":49.85637539,"x":945,"y":150,"height":180,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Shanghai","humidity":49.87706614,"x":950,"y":150,"height":180,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Shanghai","humidity":50.4378856,"x":955,"y":150,"height":180,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Shanghai","humidity":49.91763411,"x":960,"y":150,"height":180,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Shanghai","humidity":47.59536493,"x":965,"y":150,"height":180,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Shanghai","humidity":46.2016062,"x":970,"y":150,"height":180,"rt":118,"gt":137,"bt":118},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Shanghai","humidity":45.61516008,"x":975,"y":150,"height":180,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Shanghai","humidity":45.70557185,"x":980,"y":150,"height":180,"rt":117,"gt":138,"bt":117},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Shanghai","humidity":49.68254914,"x":985,"y":150,"height":180,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Shanghai","humidity":52.68263054,"x":990,"y":150,"height":180,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Shanghai","humidity":56.42248543,"x":995,"y":150,"height":180,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Shanghai","humidity":61.28397076,"x":1000,"y":150,"height":180,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Shanghai","humidity":66.4610093,"x":1005,"y":150,"height":180,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Shanghai","humidity":65.01582283,"x":1010,"y":150,"height":180,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Shanghai","humidity":63.98289844,"x":1015,"y":150,"height":180,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Shanghai","humidity":61.6451205,"x":1020,"y":150,"height":180,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Shanghai","humidity":59.58758064,"x":1025,"y":150,"height":180,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Singapore","humidity":43.5631487,"x":200,"y":180,"height":210,"rt":111,"gt":144,"bt":111},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Singapore","humidity":40.90611296,"x":205,"y":180,"height":210,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Singapore","humidity":40.62259239,"x":210,"y":180,"height":210,"rt":104,"gt":151,"bt":104},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Singapore","humidity":41.1410628,"x":215,"y":180,"height":210,"rt":105,"gt":150,"bt":105},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Singapore","humidity":43.10755803,"x":220,"y":180,"height":210,"rt":110,"gt":145,"bt":110},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Singapore","humidity":44.84297413,"x":225,"y":180,"height":210,"rt":114,"gt":141,"bt":114},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Singapore","humidity":48.09833454,"x":230,"y":180,"height":210,"rt":123,"gt":132,"bt":123},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Singapore","humidity":52.70435305,"x":235,"y":180,"height":210,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Singapore","humidity":57.38337342,"x":240,"y":180,"height":210,"rt":146,"gt":109,"bt":146},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Singapore","humidity":59.32673357,"x":245,"y":180,"height":210,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Singapore","humidity":60.59237135,"x":250,"y":180,"height":210,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Singapore","humidity":60.26048206,"x":255,"y":180,"height":210,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Singapore","humidity":61.16579121,"x":260,"y":180,"height":210,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Singapore","humidity":61.90743443,"x":265,"y":180,"height":210,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Singapore","humidity":63.37677791,"x":270,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Singapore","humidity":63.76034301,"x":275,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Singapore","humidity":64.44172042,"x":280,"y":180,"height":210,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Singapore","humidity":63.95263703,"x":285,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Singapore","humidity":63.89428424,"x":290,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Singapore","humidity":61.90979504,"x":295,"y":180,"height":210,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Singapore","humidity":59.15499923,"x":300,"y":180,"height":210,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Singapore","humidity":54.78113566,"x":305,"y":180,"height":210,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Singapore","humidity":50.33685281,"x":310,"y":180,"height":210,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Singapore","humidity":47.40759234,"x":315,"y":180,"height":210,"rt":121,"gt":134,"bt":121},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Singapore","humidity":45.32138181,"x":320,"y":180,"height":210,"rt":116,"gt":139,"bt":116},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Singapore","humidity":44.49817564,"x":325,"y":180,"height":210,"rt":113,"gt":142,"bt":113},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Singapore","humidity":46.59924143,"x":330,"y":180,"height":210,"rt":119,"gt":136,"bt":119},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Singapore","humidity":49.95287084,"x":335,"y":180,"height":210,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Singapore","humidity":54.81523663,"x":340,"y":180,"height":210,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Singapore","humidity":59.18544686,"x":345,"y":180,"height":210,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Singapore","humidity":64.64819412,"x":350,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Singapore","humidity":65.78820419,"x":355,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Singapore","humidity":64.98004866,"x":360,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Singapore","humidity":64.81530274,"x":365,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Singapore","humidity":65.00105604,"x":370,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Singapore","humidity":65.53120248,"x":375,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Singapore","humidity":66.730751,"x":380,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Singapore","humidity":67.39647979,"x":385,"y":180,"height":210,"rt":172,"gt":83,"bt":172},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Singapore","humidity":67.12768635,"x":390,"y":180,"height":210,"rt":171,"gt":84,"bt":171},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Singapore","humidity":66.77480304,"x":395,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Singapore","humidity":65.80959408,"x":400,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Singapore","humidity":65.73634935,"x":405,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Singapore","humidity":65.41465969,"x":410,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Singapore","humidity":64.54538139,"x":415,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Singapore","humidity":61.68288695,"x":420,"y":180,"height":210,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Singapore","humidity":57.97648887,"x":425,"y":180,"height":210,"rt":148,"gt":107,"bt":148},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Singapore","humidity":53.95368067,"x":430,"y":180,"height":210,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Singapore","humidity":50.93333189,"x":435,"y":180,"height":210,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Singapore","humidity":50.07697319,"x":440,"y":180,"height":210,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Singapore","humidity":49.32504398,"x":445,"y":180,"height":210,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Singapore","humidity":52.79005392,"x":450,"y":180,"height":210,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Singapore","humidity":54.12235597,"x":455,"y":180,"height":210,"rt":138,"gt":117,"bt":138},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Singapore","humidity":54.5283007,"x":460,"y":180,"height":210,"rt":139,"gt":116,"bt":139},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Singapore","humidity":59.23258881,"x":465,"y":180,"height":210,"rt":151,"gt":104,"bt":151},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Singapore","humidity":60.38697011,"x":470,"y":180,"height":210,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Singapore","humidity":61.71987151,"x":475,"y":180,"height":210,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Singapore","humidity":63.07095111,"x":480,"y":180,"height":210,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Singapore","humidity":63.54046825,"x":485,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Singapore","humidity":64.41421737,"x":490,"y":180,"height":210,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Singapore","humidity":64.45390195,"x":495,"y":180,"height":210,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Singapore","humidity":65.6194303,"x":500,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Singapore","humidity":65.15361291,"x":505,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Singapore","humidity":66.20076515,"x":510,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Singapore","humidity":67.2803059,"x":515,"y":180,"height":210,"rt":172,"gt":83,"bt":172},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Singapore","humidity":68.09646872,"x":520,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Singapore","humidity":68.0817649,"x":525,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Singapore","humidity":68.25698903,"x":530,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Singapore","humidity":66.33496524,"x":535,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Singapore","humidity":62.41764209,"x":540,"y":180,"height":210,"rt":159,"gt":96,"bt":159},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Singapore","humidity":57.46824374,"x":545,"y":180,"height":210,"rt":147,"gt":108,"bt":147},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Singapore","humidity":53.00411244,"x":550,"y":180,"height":210,"rt":135,"gt":120,"bt":135},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Singapore","humidity":49.2461728,"x":555,"y":180,"height":210,"rt":126,"gt":129,"bt":126},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Singapore","humidity":49.00994978,"x":560,"y":180,"height":210,"rt":125,"gt":130,"bt":125},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Singapore","humidity":52.12195682,"x":565,"y":180,"height":210,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Singapore","humidity":56.07979919,"x":570,"y":180,"height":210,"rt":143,"gt":112,"bt":143},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Singapore","humidity":60.05290879,"x":575,"y":180,"height":210,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Singapore","humidity":58.58838609,"x":580,"y":180,"height":210,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Singapore","humidity":59.66032299,"x":585,"y":180,"height":210,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Singapore","humidity":62.01589916,"x":590,"y":180,"height":210,"rt":158,"gt":97,"bt":158},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Singapore","humidity":62.64525641,"x":595,"y":180,"height":210,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Singapore","humidity":63.28264849,"x":600,"y":180,"height":210,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Singapore","humidity":63.43830404,"x":605,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Singapore","humidity":63.68297187,"x":610,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Singapore","humidity":63.91864197,"x":615,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Singapore","humidity":64.6249846,"x":620,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Singapore","humidity":65.38739626,"x":625,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Singapore","humidity":66.33384999,"x":630,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Singapore","humidity":66.82001152,"x":635,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Singapore","humidity":68.2528347,"x":640,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Singapore","humidity":68.29472086,"x":645,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Singapore","humidity":68.46153217,"x":650,"y":180,"height":210,"rt":175,"gt":80,"bt":175},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Singapore","humidity":66.02181813,"x":655,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Singapore","humidity":61.73423608,"x":660,"y":180,"height":210,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Singapore","humidity":56.66430665,"x":665,"y":180,"height":210,"rt":144,"gt":111,"bt":144},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Singapore","humidity":53.24395374,"x":670,"y":180,"height":210,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Singapore","humidity":51.32999765,"x":675,"y":180,"height":210,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Singapore","humidity":51.41724346,"x":680,"y":180,"height":210,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Singapore","humidity":51.12754744,"x":685,"y":180,"height":210,"rt":130,"gt":125,"bt":130},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Singapore","humidity":52.02625615,"x":690,"y":180,"height":210,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Singapore","humidity":52.38623206,"x":695,"y":180,"height":210,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Singapore","humidity":55.09720216,"x":700,"y":180,"height":210,"rt":140,"gt":115,"bt":140},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Singapore","humidity":57.91288864,"x":705,"y":180,"height":210,"rt":148,"gt":107,"bt":148},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Singapore","humidity":60.23472962,"x":710,"y":180,"height":210,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Singapore","humidity":60.94234637,"x":715,"y":180,"height":210,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Singapore","humidity":62.39891975,"x":720,"y":180,"height":210,"rt":159,"gt":96,"bt":159},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Singapore","humidity":63.79503854,"x":725,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Singapore","humidity":65.12610517,"x":730,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Singapore","humidity":65.52125878,"x":735,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Singapore","humidity":65.97133035,"x":740,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Singapore","humidity":65.88068952,"x":745,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Singapore","humidity":65.99889438,"x":750,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Singapore","humidity":65.84633582,"x":755,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Singapore","humidity":66.79483855,"x":760,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Singapore","humidity":66.46391123,"x":765,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Singapore","humidity":66.41186881,"x":770,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Singapore","humidity":63.90405539,"x":775,"y":180,"height":210,"rt":163,"gt":92,"bt":163},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Singapore","humidity":60.23266121,"x":780,"y":180,"height":210,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Singapore","humidity":55.61336821,"x":785,"y":180,"height":210,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Singapore","humidity":51.52640199,"x":790,"y":180,"height":210,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Singapore","humidity":48.55408808,"x":795,"y":180,"height":210,"rt":124,"gt":131,"bt":124},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Singapore","humidity":49.65897913,"x":800,"y":180,"height":210,"rt":127,"gt":128,"bt":127},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Singapore","humidity":50.61870169,"x":805,"y":180,"height":210,"rt":129,"gt":126,"bt":129},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Singapore","humidity":51.2858015,"x":810,"y":180,"height":210,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Singapore","humidity":52.54398993,"x":815,"y":180,"height":210,"rt":134,"gt":121,"bt":134},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Singapore","humidity":53.1380932,"x":820,"y":180,"height":210,"rt":136,"gt":119,"bt":136},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Singapore","humidity":55.38351073,"x":825,"y":180,"height":210,"rt":141,"gt":114,"bt":141},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Singapore","humidity":57.5224835,"x":830,"y":180,"height":210,"rt":147,"gt":108,"bt":147},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Singapore","humidity":58.40910614,"x":835,"y":180,"height":210,"rt":149,"gt":106,"bt":149},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Singapore","humidity":60.04682225,"x":840,"y":180,"height":210,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Singapore","humidity":60.38057879,"x":845,"y":180,"height":210,"rt":154,"gt":101,"bt":154},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Singapore","humidity":61.03848927,"x":850,"y":180,"height":210,"rt":156,"gt":99,"bt":156},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Singapore","humidity":61.67862997,"x":855,"y":180,"height":210,"rt":157,"gt":98,"bt":157},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Singapore","humidity":62.76881344,"x":860,"y":180,"height":210,"rt":160,"gt":95,"bt":160},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Singapore","humidity":63.53663544,"x":865,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Singapore","humidity":64.93169406,"x":870,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Singapore","humidity":65.27313102,"x":875,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Singapore","humidity":65.71204959,"x":880,"y":180,"height":210,"rt":168,"gt":87,"bt":168},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Singapore","humidity":65.39122459,"x":885,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Singapore","humidity":65.45064055,"x":890,"y":180,"height":210,"rt":167,"gt":88,"bt":167},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Singapore","humidity":63.17866026,"x":895,"y":180,"height":210,"rt":161,"gt":94,"bt":161},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Singapore","humidity":59.48564904,"x":900,"y":180,"height":210,"rt":152,"gt":103,"bt":152},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Singapore","humidity":55.52467121,"x":905,"y":180,"height":210,"rt":142,"gt":113,"bt":142},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Singapore","humidity":52.21052107,"x":910,"y":180,"height":210,"rt":133,"gt":122,"bt":133},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Singapore","humidity":50.05024917,"x":915,"y":180,"height":210,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Singapore","humidity":50.12906329,"x":920,"y":180,"height":210,"rt":128,"gt":127,"bt":128},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Singapore","humidity":51.34921223,"x":925,"y":180,"height":210,"rt":131,"gt":124,"bt":131},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Singapore","humidity":51.74491713,"x":930,"y":180,"height":210,"rt":132,"gt":123,"bt":132},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Singapore","humidity":53.71690921,"x":935,"y":180,"height":210,"rt":137,"gt":118,"bt":137},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Singapore","humidity":60.06665875,"x":940,"y":180,"height":210,"rt":153,"gt":102,"bt":153},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Singapore","humidity":63.58183316,"x":945,"y":180,"height":210,"rt":162,"gt":93,"bt":162},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Singapore","humidity":64.32639751,"x":950,"y":180,"height":210,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Singapore","humidity":64.53287402,"x":955,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Singapore","humidity":64.85895629,"x":960,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Singapore","humidity":64.3480709,"x":965,"y":180,"height":210,"rt":164,"gt":91,"bt":164},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Singapore","humidity":64.9225892,"x":970,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Singapore","humidity":65.28633057,"x":975,"y":180,"height":210,"rt":166,"gt":89,"bt":166},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Singapore","humidity":66.09171171,"x":980,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Singapore","humidity":66.13234798,"x":985,"y":180,"height":210,"rt":169,"gt":86,"bt":169},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Singapore","humidity":66.51914472,"x":990,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Singapore","humidity":66.6396548,"x":995,"y":180,"height":210,"rt":170,"gt":85,"bt":170},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Singapore","humidity":67.58144125,"x":1000,"y":180,"height":210,"rt":172,"gt":83,"bt":172},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Singapore","humidity":68.37682307,"x":1005,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Singapore","humidity":68.18810244,"x":1010,"y":180,"height":210,"rt":174,"gt":81,"bt":174},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Singapore","humidity":64.87752665,"x":1015,"y":180,"height":210,"rt":165,"gt":90,"bt":165},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Singapore","humidity":60.93876919,"x":1020,"y":180,"height":210,"rt":155,"gt":100,"bt":155},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Singapore","humidity":58.70579791,"x":1025,"y":180,"height":210,"rt":150,"gt":105,"bt":150}
];
var dus = [
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Bangalore","dust":1450.626142,"x":200,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Bangalore","dust":1375.247847,"x":205,"y":0,"height":30,"rt":78,"gt":177,"bt":87},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Bangalore","dust":1300.050747,"x":210,"y":0,"height":30,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Bangalore","dust":1422.506172,"x":215,"y":0,"height":30,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Bangalore","dust":1602.760147,"x":220,"y":0,"height":30,"rt":91,"gt":164,"bt":80},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Bangalore","dust":1452.174008,"x":225,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Bangalore","dust":1448.701506,"x":230,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Bangalore","dust":1405.143251,"x":235,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Bangalore","dust":1396.603674,"x":240,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Bangalore","dust":1392.007906,"x":245,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Bangalore","dust":1363.31609,"x":250,"y":0,"height":30,"rt":77,"gt":178,"bt":87},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Bangalore","dust":1343.259826,"x":255,"y":0,"height":30,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Bangalore","dust":1389.80054,"x":260,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Bangalore","dust":1421.057171,"x":265,"y":0,"height":30,"rt":81,"gt":174,"bt":86},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Bangalore","dust":1460.913173,"x":270,"y":0,"height":30,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Bangalore","dust":1438.458021,"x":275,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Bangalore","dust":1448.841213,"x":280,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Bangalore","dust":1450.8342,"x":285,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Bangalore","dust":1451.960613,"x":290,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Bangalore","dust":1491.113838,"x":295,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Bangalore","dust":1556.875663,"x":300,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Bangalore","dust":1540.072991,"x":305,"y":0,"height":30,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Bangalore","dust":1551.188761,"x":310,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Bangalore","dust":1547.137785,"x":315,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Bangalore","dust":1511.675766,"x":320,"y":0,"height":30,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Bangalore","dust":1594.315188,"x":325,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Bangalore","dust":1976.046948,"x":330,"y":0,"height":30,"rt":112,"gt":143,"bt":70},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Bangalore","dust":1780.433771,"x":335,"y":0,"height":30,"rt":101,"gt":154,"bt":76},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Bangalore","dust":1685.901385,"x":340,"y":0,"height":30,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Bangalore","dust":1680.222504,"x":345,"y":0,"height":30,"rt":95,"gt":160,"bt":78},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Bangalore","dust":2005.295325,"x":350,"y":0,"height":30,"rt":114,"gt":141,"bt":69},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Bangalore","dust":2266.695662,"x":355,"y":0,"height":30,"rt":128,"gt":127,"bt":62},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Bangalore","dust":1792.645879,"x":360,"y":0,"height":30,"rt":102,"gt":153,"bt":75},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Bangalore","dust":2362.42279,"x":365,"y":0,"height":30,"rt":134,"gt":121,"bt":59},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Bangalore","dust":2181.50494,"x":370,"y":0,"height":30,"rt":124,"gt":131,"bt":64},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Bangalore","dust":1730.221468,"x":375,"y":0,"height":30,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Bangalore","dust":1856.396602,"x":380,"y":0,"height":30,"rt":105,"gt":150,"bt":73},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Bangalore","dust":1862.365387,"x":385,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Bangalore","dust":1594.439544,"x":390,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Bangalore","dust":1621.316678,"x":395,"y":0,"height":30,"rt":92,"gt":163,"bt":80},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Bangalore","dust":1633.705854,"x":400,"y":0,"height":30,"rt":93,"gt":162,"bt":80},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Bangalore","dust":1639.690915,"x":405,"y":0,"height":30,"rt":93,"gt":162,"bt":79},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Bangalore","dust":1566.028686,"x":410,"y":0,"height":30,"rt":89,"gt":166,"bt":81},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Bangalore","dust":1589.793671,"x":415,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Bangalore","dust":1675.100385,"x":420,"y":0,"height":30,"rt":95,"gt":160,"bt":78},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Bangalore","dust":1718.152908,"x":425,"y":0,"height":30,"rt":97,"gt":158,"bt":77},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Bangalore","dust":1744.257585,"x":430,"y":0,"height":30,"rt":99,"gt":156,"bt":77},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Bangalore","dust":1871.950237,"x":435,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Bangalore","dust":1882.779566,"x":440,"y":0,"height":30,"rt":107,"gt":148,"bt":73},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Bangalore","dust":1867.768253,"x":445,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Bangalore","dust":1935.794701,"x":450,"y":0,"height":30,"rt":110,"gt":145,"bt":71},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Bangalore","dust":1717.774178,"x":455,"y":0,"height":30,"rt":97,"gt":158,"bt":77},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Bangalore","dust":1478.423696,"x":460,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Bangalore","dust":1393.953691,"x":465,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Bangalore","dust":1449.585489,"x":470,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Bangalore","dust":1348.56131,"x":475,"y":0,"height":30,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Bangalore","dust":1444.327918,"x":480,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Bangalore","dust":1447.626684,"x":485,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Bangalore","dust":1417.057265,"x":490,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Bangalore","dust":1411.668961,"x":495,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Bangalore","dust":1394.951636,"x":500,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Bangalore","dust":1428.966105,"x":505,"y":0,"height":30,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Bangalore","dust":1453.461374,"x":510,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Bangalore","dust":1967.998258,"x":515,"y":0,"height":30,"rt":112,"gt":143,"bt":70},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Bangalore","dust":1421.607456,"x":520,"y":0,"height":30,"rt":81,"gt":174,"bt":86},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Bangalore","dust":1355.990073,"x":525,"y":0,"height":30,"rt":77,"gt":178,"bt":87},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Bangalore","dust":1402.482152,"x":530,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Bangalore","dust":1502.623337,"x":535,"y":0,"height":30,"rt":85,"gt":170,"bt":83},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Bangalore","dust":1632.383116,"x":540,"y":0,"height":30,"rt":93,"gt":162,"bt":80},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Bangalore","dust":1687.436628,"x":545,"y":0,"height":30,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Bangalore","dust":1538.21667,"x":550,"y":0,"height":30,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Bangalore","dust":1512.698386,"x":555,"y":0,"height":30,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Bangalore","dust":1543.636702,"x":560,"y":0,"height":30,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Bangalore","dust":1592.1685,"x":565,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Bangalore","dust":1571.548893,"x":570,"y":0,"height":30,"rt":89,"gt":166,"bt":81},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Bangalore","dust":1504.29919,"x":575,"y":0,"height":30,"rt":85,"gt":170,"bt":83},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Bangalore","dust":1248.761246,"x":580,"y":0,"height":30,"rt":71,"gt":184,"bt":90},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Bangalore","dust":1976.035243,"x":585,"y":0,"height":30,"rt":112,"gt":143,"bt":70},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Bangalore","dust":1872.974525,"x":590,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Bangalore","dust":1436.630454,"x":595,"y":0,"height":30,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Bangalore","dust":1533.450057,"x":600,"y":0,"height":30,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Bangalore","dust":1519.917079,"x":605,"y":0,"height":30,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Bangalore","dust":1711.79666,"x":610,"y":0,"height":30,"rt":97,"gt":158,"bt":77},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Bangalore","dust":1961.127069,"x":615,"y":0,"height":30,"rt":111,"gt":144,"bt":71},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Bangalore","dust":2104.298769,"x":620,"y":0,"height":30,"rt":119,"gt":136,"bt":67},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Bangalore","dust":2098.637371,"x":625,"y":0,"height":30,"rt":119,"gt":136,"bt":67},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Bangalore","dust":1726.982473,"x":630,"y":0,"height":30,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Bangalore","dust":1581.225577,"x":635,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Bangalore","dust":1522.687866,"x":640,"y":0,"height":30,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Bangalore","dust":1555.386305,"x":645,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Bangalore","dust":1557.77225,"x":650,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Bangalore","dust":1579.876802,"x":655,"y":0,"height":30,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Bangalore","dust":1629.040977,"x":660,"y":0,"height":30,"rt":92,"gt":163,"bt":80},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Bangalore","dust":1972.9699,"x":665,"y":0,"height":30,"rt":112,"gt":143,"bt":70},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Bangalore","dust":1863.375162,"x":670,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Bangalore","dust":1686.894831,"x":675,"y":0,"height":30,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Bangalore","dust":1839.69622,"x":680,"y":0,"height":30,"rt":104,"gt":151,"bt":74},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Bangalore","dust":1955.166101,"x":685,"y":0,"height":30,"rt":111,"gt":144,"bt":71},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Bangalore","dust":1399.837854,"x":690,"y":0,"height":30,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Bangalore","dust":1693.179815,"x":695,"y":0,"height":30,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Bangalore","dust":1745.294864,"x":700,"y":0,"height":30,"rt":99,"gt":156,"bt":77},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Bangalore","dust":1895.99006,"x":705,"y":0,"height":30,"rt":107,"gt":148,"bt":72},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Bangalore","dust":1641.257612,"x":710,"y":0,"height":30,"rt":93,"gt":162,"bt":79},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Bangalore","dust":1533.644182,"x":715,"y":0,"height":30,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Bangalore","dust":1709.858785,"x":720,"y":0,"height":30,"rt":97,"gt":158,"bt":78},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Bangalore","dust":1823.242945,"x":725,"y":0,"height":30,"rt":103,"gt":152,"bt":74},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Bangalore","dust":1706.339953,"x":730,"y":0,"height":30,"rt":97,"gt":158,"bt":78},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Bangalore","dust":1369.522077,"x":735,"y":0,"height":30,"rt":78,"gt":177,"bt":87},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Bangalore","dust":1469.374689,"x":740,"y":0,"height":30,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Bangalore","dust":1309.45909,"x":745,"y":0,"height":30,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Bangalore","dust":1223.962471,"x":750,"y":0,"height":30,"rt":69,"gt":186,"bt":91},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Bangalore","dust":1193.576543,"x":755,"y":0,"height":30,"rt":68,"gt":187,"bt":92},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Bangalore","dust":1171.361947,"x":760,"y":0,"height":30,"rt":66,"gt":189,"bt":92},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Bangalore","dust":1146.346547,"x":765,"y":0,"height":30,"rt":65,"gt":190,"bt":93},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Bangalore","dust":1226.235898,"x":770,"y":0,"height":30,"rt":69,"gt":186,"bt":91},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Bangalore","dust":1328.471708,"x":775,"y":0,"height":30,"rt":75,"gt":180,"bt":88},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Bangalore","dust":1456.303382,"x":780,"y":0,"height":30,"rt":83,"gt":172,"bt":85},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Bangalore","dust":1450.083117,"x":785,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Bangalore","dust":1360.718342,"x":790,"y":0,"height":30,"rt":77,"gt":178,"bt":87},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Bangalore","dust":1291.005319,"x":795,"y":0,"height":30,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Bangalore","dust":1290.562931,"x":800,"y":0,"height":30,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Bangalore","dust":1318.14783,"x":805,"y":0,"height":30,"rt":75,"gt":180,"bt":88},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Bangalore","dust":1239.980167,"x":810,"y":0,"height":30,"rt":70,"gt":185,"bt":91},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Bangalore","dust":1406.526873,"x":815,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Bangalore","dust":1242.410073,"x":820,"y":0,"height":30,"rt":70,"gt":185,"bt":90},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Bangalore","dust":1202.758301,"x":825,"y":0,"height":30,"rt":68,"gt":187,"bt":92},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Bangalore","dust":1255.270555,"x":830,"y":0,"height":30,"rt":71,"gt":184,"bt":90},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Bangalore","dust":1487.567277,"x":835,"y":0,"height":30,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Bangalore","dust":1289.218288,"x":840,"y":0,"height":30,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Bangalore","dust":1468.633797,"x":845,"y":0,"height":30,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Bangalore","dust":1668.452133,"x":850,"y":0,"height":30,"rt":95,"gt":160,"bt":79},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Bangalore","dust":1733.327237,"x":855,"y":0,"height":30,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Bangalore","dust":1965.590708,"x":860,"y":0,"height":30,"rt":111,"gt":144,"bt":70},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Bangalore","dust":1952.468181,"x":865,"y":0,"height":30,"rt":111,"gt":144,"bt":71},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Bangalore","dust":1351.993549,"x":870,"y":0,"height":30,"rt":77,"gt":178,"bt":87},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Bangalore","dust":1307.837232,"x":875,"y":0,"height":30,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Bangalore","dust":1328.453532,"x":880,"y":0,"height":30,"rt":75,"gt":180,"bt":88},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Bangalore","dust":1462.434098,"x":885,"y":0,"height":30,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Bangalore","dust":1424.542821,"x":890,"y":0,"height":30,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Bangalore","dust":1413.017538,"x":895,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Bangalore","dust":1443.595645,"x":900,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Bangalore","dust":1502.783227,"x":905,"y":0,"height":30,"rt":85,"gt":170,"bt":83},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Bangalore","dust":1422.679147,"x":910,"y":0,"height":30,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Bangalore","dust":1404.950836,"x":915,"y":0,"height":30,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Bangalore","dust":1786.086576,"x":920,"y":0,"height":30,"rt":101,"gt":154,"bt":75},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Bangalore","dust":1872.310948,"x":925,"y":0,"height":30,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Bangalore","dust":1810.684566,"x":930,"y":0,"height":30,"rt":103,"gt":152,"bt":75},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Bangalore","dust":1635.021369,"x":935,"y":0,"height":30,"rt":93,"gt":162,"bt":80},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Bangalore","dust":1706.625688,"x":940,"y":0,"height":30,"rt":97,"gt":158,"bt":78},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Bangalore","dust":1799.576834,"x":945,"y":0,"height":30,"rt":102,"gt":153,"bt":75},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Bangalore","dust":1859.779143,"x":950,"y":0,"height":30,"rt":105,"gt":150,"bt":73},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Bangalore","dust":1737.997494,"x":955,"y":0,"height":30,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Bangalore","dust":1559.559122,"x":960,"y":0,"height":30,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Bangalore","dust":1639.318547,"x":965,"y":0,"height":30,"rt":93,"gt":162,"bt":79},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Bangalore","dust":1729.619422,"x":970,"y":0,"height":30,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Bangalore","dust":1642.501393,"x":975,"y":0,"height":30,"rt":93,"gt":162,"bt":79},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Bangalore","dust":1767.023097,"x":980,"y":0,"height":30,"rt":100,"gt":155,"bt":76},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Bangalore","dust":2307.126794,"x":985,"y":0,"height":30,"rt":131,"gt":124,"bt":61},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Bangalore","dust":1622.045353,"x":990,"y":0,"height":30,"rt":92,"gt":163,"bt":80},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Bangalore","dust":1439.890115,"x":995,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Bangalore","dust":1460.008292,"x":1000,"y":0,"height":30,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Bangalore","dust":1445.005463,"x":1005,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Bangalore","dust":1444.02326,"x":1010,"y":0,"height":30,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Bangalore","dust":1576.907786,"x":1015,"y":0,"height":30,"rt":89,"gt":166,"bt":81},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Bangalore","dust":1607.971442,"x":1020,"y":0,"height":30,"rt":91,"gt":164,"bt":80},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Bangalore","dust":1775.767669,"x":1025,"y":0,"height":30,"rt":101,"gt":154,"bt":76},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Boston","dust":681.3149887,"x":200,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Boston","dust":730.931147,"x":205,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Boston","dust":681.6931482,"x":210,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Boston","dust":757.5677243,"x":215,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Boston","dust":687.7223715,"x":220,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Boston","dust":684.5498253,"x":225,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Boston","dust":744.2665074,"x":230,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Boston","dust":736.2482897,"x":235,"y":30,"height":60,"rt":42,"gt":213,"bt":105},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Boston","dust":736.247933,"x":240,"y":30,"height":60,"rt":42,"gt":213,"bt":105},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Boston","dust":760.2364095,"x":245,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Boston","dust":749.4052677,"x":250,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Boston","dust":669.9184836,"x":255,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Boston","dust":665.9332438,"x":260,"y":30,"height":60,"rt":38,"gt":217,"bt":107},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Boston","dust":723.989429,"x":265,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Boston","dust":748.0737568,"x":270,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Boston","dust":796.0285456,"x":275,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Boston","dust":738.8041556,"x":280,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Boston","dust":738.8708488,"x":285,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Boston","dust":783.166272,"x":290,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Boston","dust":896.020715,"x":295,"y":30,"height":60,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Boston","dust":938.7702763,"x":300,"y":30,"height":60,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Boston","dust":790.3447399,"x":305,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Boston","dust":620.5020212,"x":310,"y":30,"height":60,"rt":35,"gt":220,"bt":108},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Boston","dust":643.056642,"x":315,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Boston","dust":616.5226439,"x":320,"y":30,"height":60,"rt":35,"gt":220,"bt":108},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Boston","dust":636.5329915,"x":325,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Boston","dust":635.4153265,"x":330,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Boston","dust":630.5220086,"x":335,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Boston","dust":629.0727953,"x":340,"y":30,"height":60,"rt":36,"gt":219,"bt":108},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Boston","dust":630.4346606,"x":345,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Boston","dust":638.8515866,"x":350,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Boston","dust":667.1646167,"x":355,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Boston","dust":742.6990189,"x":360,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Boston","dust":774.6392641,"x":365,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Boston","dust":824.4432446,"x":370,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Boston","dust":837.5158171,"x":375,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Boston","dust":816.162733,"x":380,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Boston","dust":779.8781103,"x":385,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Boston","dust":818.0369281,"x":390,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Boston","dust":823.8061373,"x":395,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Boston","dust":792.4833329,"x":400,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Boston","dust":744.1798934,"x":405,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Boston","dust":764.3248304,"x":410,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Boston","dust":804.0365055,"x":415,"y":30,"height":60,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Boston","dust":810.8796027,"x":420,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Boston","dust":806.4368793,"x":425,"y":30,"height":60,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Boston","dust":694.1440201,"x":430,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Boston","dust":627.5409927,"x":435,"y":30,"height":60,"rt":36,"gt":219,"bt":108},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Boston","dust":651.7503535,"x":440,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Boston","dust":605.4086871,"x":445,"y":30,"height":60,"rt":34,"gt":221,"bt":108},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Boston","dust":571.8134734,"x":450,"y":30,"height":60,"rt":32,"gt":223,"bt":109},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Boston","dust":569.1290873,"x":455,"y":30,"height":60,"rt":32,"gt":223,"bt":109},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Boston","dust":579.4750543,"x":460,"y":30,"height":60,"rt":33,"gt":222,"bt":109},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Boston","dust":569.3399201,"x":465,"y":30,"height":60,"rt":32,"gt":223,"bt":109},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Boston","dust":558.7884417,"x":470,"y":30,"height":60,"rt":32,"gt":223,"bt":109},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Boston","dust":573.5560867,"x":475,"y":30,"height":60,"rt":33,"gt":222,"bt":109},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Boston","dust":588.5754641,"x":480,"y":30,"height":60,"rt":33,"gt":222,"bt":109},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Boston","dust":606.7327131,"x":485,"y":30,"height":60,"rt":34,"gt":221,"bt":108},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Boston","dust":685.1409162,"x":490,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Boston","dust":699.5674964,"x":495,"y":30,"height":60,"rt":40,"gt":215,"bt":106},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Boston","dust":716.5903284,"x":500,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Boston","dust":740.8008474,"x":505,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Boston","dust":761.8336742,"x":510,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Boston","dust":781.7897019,"x":515,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Boston","dust":743.4968819,"x":520,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Boston","dust":746.7689732,"x":525,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Boston","dust":777.1910857,"x":530,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Boston","dust":821.2370915,"x":535,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Boston","dust":813.1527326,"x":540,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Boston","dust":1134.903856,"x":545,"y":30,"height":60,"rt":64,"gt":191,"bt":93},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Boston","dust":821.5925671,"x":550,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Boston","dust":689.2644229,"x":555,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Boston","dust":654.6825685,"x":560,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Boston","dust":680.5056319,"x":565,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Boston","dust":684.6625021,"x":570,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Boston","dust":704.7823205,"x":575,"y":30,"height":60,"rt":40,"gt":215,"bt":105},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Boston","dust":677.2363826,"x":580,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Boston","dust":684.1834,"x":585,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Boston","dust":715.5616831,"x":590,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Boston","dust":1085.445612,"x":595,"y":30,"height":60,"rt":62,"gt":193,"bt":95},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Boston","dust":1873.894484,"x":600,"y":30,"height":60,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Boston","dust":1348.219248,"x":605,"y":30,"height":60,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Boston","dust":748.6086538,"x":610,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Boston","dust":595.0934165,"x":615,"y":30,"height":60,"rt":34,"gt":221,"bt":108},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Boston","dust":905.7139044,"x":620,"y":30,"height":60,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Boston","dust":637.2699552,"x":625,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Boston","dust":805.2578588,"x":630,"y":30,"height":60,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Boston","dust":745.8528143,"x":635,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Boston","dust":661.1778915,"x":640,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Boston","dust":642.5639104,"x":645,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Boston","dust":683.0529265,"x":650,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Boston","dust":685.1647071,"x":655,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Boston","dust":729.6490644,"x":660,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Boston","dust":741.9643122,"x":665,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Boston","dust":725.3780386,"x":670,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Boston","dust":663.6145161,"x":675,"y":30,"height":60,"rt":38,"gt":217,"bt":107},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Boston","dust":681.5775997,"x":680,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Boston","dust":636.4806551,"x":685,"y":30,"height":60,"rt":36,"gt":219,"bt":107},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Boston","dust":661.0387176,"x":690,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Boston","dust":660.0322105,"x":695,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Boston","dust":661.7836254,"x":700,"y":30,"height":60,"rt":38,"gt":217,"bt":107},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Boston","dust":654.6428028,"x":705,"y":30,"height":60,"rt":37,"gt":218,"bt":107},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Boston","dust":719.3431757,"x":710,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Boston","dust":735.1547088,"x":715,"y":30,"height":60,"rt":42,"gt":213,"bt":105},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Boston","dust":744.5372756,"x":720,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Boston","dust":726.4603899,"x":725,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Boston","dust":783.5206169,"x":730,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Boston","dust":789.1773568,"x":735,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Boston","dust":774.3188589,"x":740,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Boston","dust":703.5335341,"x":745,"y":30,"height":60,"rt":40,"gt":215,"bt":105},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Boston","dust":733.2871936,"x":750,"y":30,"height":60,"rt":42,"gt":213,"bt":105},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Boston","dust":739.3996054,"x":755,"y":30,"height":60,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Boston","dust":765.0251259,"x":760,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Boston","dust":835.821364,"x":765,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Boston","dust":876.5997219,"x":770,"y":30,"height":60,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Boston","dust":798.0256216,"x":775,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Boston","dust":759.3367582,"x":780,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Boston","dust":820.6303659,"x":785,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Boston","dust":799.6713025,"x":790,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Boston","dust":760.3681435,"x":795,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Boston","dust":687.9455636,"x":800,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Boston","dust":686.9232577,"x":805,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Boston","dust":700.5978467,"x":810,"y":30,"height":60,"rt":40,"gt":215,"bt":106},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Boston","dust":722.8425881,"x":815,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Boston","dust":816.6168223,"x":820,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Boston","dust":814.2482132,"x":825,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Boston","dust":837.0285167,"x":830,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Boston","dust":910.5681234,"x":835,"y":30,"height":60,"rt":52,"gt":203,"bt":100},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Boston","dust":875.2722874,"x":840,"y":30,"height":60,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Boston","dust":886.213446,"x":845,"y":30,"height":60,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Boston","dust":848.0665994,"x":850,"y":30,"height":60,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Boston","dust":789.7196411,"x":855,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Boston","dust":833.9430801,"x":860,"y":30,"height":60,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Boston","dust":884.7377861,"x":865,"y":30,"height":60,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Boston","dust":886.6962597,"x":870,"y":30,"height":60,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Boston","dust":819.0106105,"x":875,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Boston","dust":782.3452695,"x":880,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Boston","dust":794.032297,"x":885,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Boston","dust":776.2992813,"x":890,"y":30,"height":60,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Boston","dust":802.2770396,"x":895,"y":30,"height":60,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Boston","dust":718.5445169,"x":900,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Boston","dust":687.6850527,"x":905,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Boston","dust":675.7525056,"x":910,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Boston","dust":690.0953219,"x":915,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Boston","dust":678.8148389,"x":920,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Boston","dust":668.642995,"x":925,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Boston","dust":678.3269812,"x":930,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Boston","dust":673.3422036,"x":935,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Boston","dust":669.0676488,"x":940,"y":30,"height":60,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Boston","dust":696.4725217,"x":945,"y":30,"height":60,"rt":39,"gt":216,"bt":106},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Boston","dust":1295.094049,"x":950,"y":30,"height":60,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Boston","dust":1069.018015,"x":955,"y":30,"height":60,"rt":61,"gt":194,"bt":95},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Boston","dust":818.8238309,"x":960,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Boston","dust":886.2996321,"x":965,"y":30,"height":60,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Boston","dust":1460.121051,"x":970,"y":30,"height":60,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Boston","dust":811.8027719,"x":975,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Boston","dust":819.838031,"x":980,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Boston","dust":858.6848025,"x":985,"y":30,"height":60,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Boston","dust":965.3660527,"x":990,"y":30,"height":60,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Boston","dust":1582.903908,"x":995,"y":30,"height":60,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Boston","dust":902.5875123,"x":1000,"y":30,"height":60,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Boston","dust":753.42601,"x":1005,"y":30,"height":60,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Boston","dust":724.8011113,"x":1010,"y":30,"height":60,"rt":41,"gt":214,"bt":105},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Boston","dust":812.302673,"x":1015,"y":30,"height":60,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Boston","dust":902.1840092,"x":1020,"y":30,"height":60,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Boston","dust":1332.668399,"x":1025,"y":30,"height":60,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Geneva","dust":869.746451,"x":200,"y":60,"height":90,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Geneva","dust":899.6311895,"x":205,"y":60,"height":90,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Geneva","dust":878.3518179,"x":210,"y":60,"height":90,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Geneva","dust":941.322103,"x":215,"y":60,"height":90,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Geneva","dust":1115.645381,"x":220,"y":60,"height":90,"rt":63,"gt":192,"bt":94},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Geneva","dust":2138.250803,"x":225,"y":60,"height":90,"rt":121,"gt":134,"bt":66},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Geneva","dust":3282.818803,"x":230,"y":60,"height":90,"rt":186,"gt":69,"bt":34},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Geneva","dust":1927.140713,"x":235,"y":60,"height":90,"rt":109,"gt":146,"bt":71},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Geneva","dust":1145.644723,"x":240,"y":60,"height":90,"rt":65,"gt":190,"bt":93},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Geneva","dust":936.1296251,"x":245,"y":60,"height":90,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Geneva","dust":969.5101962,"x":250,"y":60,"height":90,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Geneva","dust":1342.576963,"x":255,"y":60,"height":90,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Geneva","dust":1529.269486,"x":260,"y":60,"height":90,"rt":87,"gt":168,"bt":83},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Geneva","dust":1902.566891,"x":265,"y":60,"height":90,"rt":108,"gt":147,"bt":72},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Geneva","dust":2169.4747,"x":270,"y":60,"height":90,"rt":123,"gt":132,"bt":65},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Geneva","dust":2912.00447,"x":275,"y":60,"height":90,"rt":165,"gt":90,"bt":44},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Geneva","dust":3628.94374,"x":280,"y":60,"height":90,"rt":206,"gt":49,"bt":24},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Geneva","dust":1856.805252,"x":285,"y":60,"height":90,"rt":105,"gt":150,"bt":73},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Geneva","dust":3032.049855,"x":290,"y":60,"height":90,"rt":172,"gt":83,"bt":41},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Geneva","dust":2504.730249,"x":295,"y":60,"height":90,"rt":142,"gt":113,"bt":55},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Geneva","dust":1885.295659,"x":300,"y":60,"height":90,"rt":107,"gt":148,"bt":73},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Geneva","dust":1399.644369,"x":305,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Geneva","dust":1393.882854,"x":310,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Geneva","dust":1400.208906,"x":315,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Geneva","dust":1392.303401,"x":320,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Geneva","dust":1454.372353,"x":325,"y":60,"height":90,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Geneva","dust":1444.55889,"x":330,"y":60,"height":90,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Geneva","dust":1587.471404,"x":335,"y":60,"height":90,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Geneva","dust":1737.237445,"x":340,"y":60,"height":90,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Geneva","dust":2029.69518,"x":345,"y":60,"height":90,"rt":115,"gt":140,"bt":69},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Geneva","dust":3148.406333,"x":350,"y":60,"height":90,"rt":178,"gt":77,"bt":38},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Geneva","dust":3669.366228,"x":355,"y":60,"height":90,"rt":208,"gt":47,"bt":23},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Geneva","dust":2983.631055,"x":360,"y":60,"height":90,"rt":169,"gt":86,"bt":42},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Geneva","dust":2569.933401,"x":365,"y":60,"height":90,"rt":146,"gt":109,"bt":54},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Geneva","dust":2326.777447,"x":370,"y":60,"height":90,"rt":132,"gt":123,"bt":60},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Geneva","dust":1843.563319,"x":375,"y":60,"height":90,"rt":104,"gt":151,"bt":74},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Geneva","dust":2946.944758,"x":380,"y":60,"height":90,"rt":167,"gt":88,"bt":43},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Geneva","dust":4138.410781,"x":385,"y":60,"height":90,"rt":235,"gt":20,"bt":10},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Geneva","dust":3956.000972,"x":390,"y":60,"height":90,"rt":224,"gt":31,"bt":15},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Geneva","dust":3330.374914,"x":395,"y":60,"height":90,"rt":189,"gt":66,"bt":32},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Geneva","dust":3100.371285,"x":400,"y":60,"height":90,"rt":176,"gt":79,"bt":39},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Geneva","dust":2217.146244,"x":405,"y":60,"height":90,"rt":126,"gt":129,"bt":63},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Geneva","dust":1542.939553,"x":410,"y":60,"height":90,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Geneva","dust":1566.729478,"x":415,"y":60,"height":90,"rt":89,"gt":166,"bt":81},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Geneva","dust":1305.087374,"x":420,"y":60,"height":90,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Geneva","dust":1685.817168,"x":425,"y":60,"height":90,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Geneva","dust":2291.942728,"x":430,"y":60,"height":90,"rt":130,"gt":125,"bt":61},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Geneva","dust":1768.49205,"x":435,"y":60,"height":90,"rt":100,"gt":155,"bt":76},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Geneva","dust":1750.330457,"x":440,"y":60,"height":90,"rt":99,"gt":156,"bt":76},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Geneva","dust":1816.4316,"x":445,"y":60,"height":90,"rt":103,"gt":152,"bt":75},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Geneva","dust":1867.772514,"x":450,"y":60,"height":90,"rt":106,"gt":149,"bt":73},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Geneva","dust":2026.715122,"x":455,"y":60,"height":90,"rt":115,"gt":140,"bt":69},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Geneva","dust":2176.251134,"x":460,"y":60,"height":90,"rt":123,"gt":132,"bt":65},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Geneva","dust":2237.771063,"x":465,"y":60,"height":90,"rt":127,"gt":128,"bt":63},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Geneva","dust":2313.162208,"x":470,"y":60,"height":90,"rt":131,"gt":124,"bt":61},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Geneva","dust":2397.839791,"x":475,"y":60,"height":90,"rt":136,"gt":119,"bt":58},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Geneva","dust":2727.405436,"x":480,"y":60,"height":90,"rt":155,"gt":100,"bt":49},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Geneva","dust":3274.831763,"x":485,"y":60,"height":90,"rt":186,"gt":69,"bt":34},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Geneva","dust":3720.981275,"x":490,"y":60,"height":90,"rt":211,"gt":44,"bt":22},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Geneva","dust":3846.639843,"x":495,"y":60,"height":90,"rt":218,"gt":37,"bt":18},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Geneva","dust":4463.501187,"x":500,"y":60,"height":90,"rt":253,"gt":2,"bt":1},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Geneva","dust":4325.620219,"x":505,"y":60,"height":90,"rt":245,"gt":10,"bt":5},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Geneva","dust":3983.091627,"x":510,"y":60,"height":90,"rt":226,"gt":29,"bt":14},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Geneva","dust":3801.654623,"x":515,"y":60,"height":90,"rt":215,"gt":40,"bt":19},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Geneva","dust":3421.28673,"x":520,"y":60,"height":90,"rt":194,"gt":61,"bt":30},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Geneva","dust":2605.256777,"x":525,"y":60,"height":90,"rt":148,"gt":107,"bt":53},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Geneva","dust":2235.55743,"x":530,"y":60,"height":90,"rt":127,"gt":128,"bt":63},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Geneva","dust":1894.549128,"x":535,"y":60,"height":90,"rt":107,"gt":148,"bt":72},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Geneva","dust":1730.529216,"x":540,"y":60,"height":90,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Geneva","dust":1605.833825,"x":545,"y":60,"height":90,"rt":91,"gt":164,"bt":80},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Geneva","dust":1628.677926,"x":550,"y":60,"height":90,"rt":92,"gt":163,"bt":80},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Geneva","dust":1643.245303,"x":555,"y":60,"height":90,"rt":93,"gt":162,"bt":79},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Geneva","dust":1603.787029,"x":560,"y":60,"height":90,"rt":91,"gt":164,"bt":80},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Geneva","dust":1699.388894,"x":565,"y":60,"height":90,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Geneva","dust":1746.919266,"x":570,"y":60,"height":90,"rt":99,"gt":156,"bt":76},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Geneva","dust":2524.691332,"x":575,"y":60,"height":90,"rt":143,"gt":112,"bt":55},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Geneva","dust":3334.28392,"x":580,"y":60,"height":90,"rt":189,"gt":66,"bt":32},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Geneva","dust":2213.20213,"x":585,"y":60,"height":90,"rt":125,"gt":130,"bt":64},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Geneva","dust":1544.727928,"x":590,"y":60,"height":90,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Geneva","dust":1425.902079,"x":595,"y":60,"height":90,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Geneva","dust":1407.98029,"x":600,"y":60,"height":90,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Geneva","dust":1458.281527,"x":605,"y":60,"height":90,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Geneva","dust":1740.818394,"x":610,"y":60,"height":90,"rt":99,"gt":156,"bt":77},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Geneva","dust":1897.975985,"x":615,"y":60,"height":90,"rt":108,"gt":147,"bt":72},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Geneva","dust":2057.717297,"x":620,"y":60,"height":90,"rt":117,"gt":138,"bt":68},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Geneva","dust":2058.095567,"x":625,"y":60,"height":90,"rt":117,"gt":138,"bt":68},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Geneva","dust":2069.561542,"x":630,"y":60,"height":90,"rt":117,"gt":138,"bt":68},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Geneva","dust":2599.701748,"x":635,"y":60,"height":90,"rt":147,"gt":108,"bt":53},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Geneva","dust":3405.430045,"x":640,"y":60,"height":90,"rt":193,"gt":62,"bt":30},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Geneva","dust":3517.167585,"x":645,"y":60,"height":90,"rt":199,"gt":56,"bt":27},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Geneva","dust":2371.318949,"x":650,"y":60,"height":90,"rt":134,"gt":121,"bt":59},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Geneva","dust":1706.842857,"x":655,"y":60,"height":90,"rt":97,"gt":158,"bt":78},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Geneva","dust":1460.862292,"x":660,"y":60,"height":90,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Geneva","dust":1398.441278,"x":665,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Geneva","dust":1329.218351,"x":670,"y":60,"height":90,"rt":75,"gt":180,"bt":88},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Geneva","dust":1411.441379,"x":675,"y":60,"height":90,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Geneva","dust":1291.816856,"x":680,"y":60,"height":90,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Geneva","dust":1455.924472,"x":685,"y":60,"height":90,"rt":83,"gt":172,"bt":85},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Geneva","dust":1469.967262,"x":690,"y":60,"height":90,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Geneva","dust":2819.086293,"x":695,"y":60,"height":90,"rt":160,"gt":95,"bt":47},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Geneva","dust":2453.500345,"x":700,"y":60,"height":90,"rt":139,"gt":116,"bt":57},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Geneva","dust":1880.99855,"x":705,"y":60,"height":90,"rt":107,"gt":148,"bt":73},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Geneva","dust":1730.446671,"x":710,"y":60,"height":90,"rt":98,"gt":157,"bt":77},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Geneva","dust":1459.099469,"x":715,"y":60,"height":90,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Geneva","dust":1472.581629,"x":720,"y":60,"height":90,"rt":83,"gt":172,"bt":84},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Geneva","dust":1454.608972,"x":725,"y":60,"height":90,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Geneva","dust":1290.3377,"x":730,"y":60,"height":90,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Geneva","dust":1346.445666,"x":735,"y":60,"height":90,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Geneva","dust":1436.521139,"x":740,"y":60,"height":90,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Geneva","dust":1494.548622,"x":745,"y":60,"height":90,"rt":85,"gt":170,"bt":83},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Geneva","dust":1488.585357,"x":750,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Geneva","dust":1803.387943,"x":755,"y":60,"height":90,"rt":102,"gt":153,"bt":75},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Geneva","dust":2325.989058,"x":760,"y":60,"height":90,"rt":132,"gt":123,"bt":60},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Geneva","dust":3321.957369,"x":765,"y":60,"height":90,"rt":188,"gt":67,"bt":33},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Geneva","dust":3247.463805,"x":770,"y":60,"height":90,"rt":184,"gt":71,"bt":35},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Geneva","dust":2234.557078,"x":775,"y":60,"height":90,"rt":127,"gt":128,"bt":63},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Geneva","dust":1431.942954,"x":780,"y":60,"height":90,"rt":81,"gt":174,"bt":85},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Geneva","dust":1337.775407,"x":785,"y":60,"height":90,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Geneva","dust":1313.648568,"x":790,"y":60,"height":90,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Geneva","dust":1310.651129,"x":795,"y":60,"height":90,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Geneva","dust":1230.395697,"x":800,"y":60,"height":90,"rt":70,"gt":185,"bt":91},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Geneva","dust":1293.731479,"x":805,"y":60,"height":90,"rt":73,"gt":182,"bt":89},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Geneva","dust":1531.996303,"x":810,"y":60,"height":90,"rt":87,"gt":168,"bt":82},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Geneva","dust":3066.878393,"x":815,"y":60,"height":90,"rt":174,"gt":81,"bt":40},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Geneva","dust":1717.400289,"x":820,"y":60,"height":90,"rt":97,"gt":158,"bt":77},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Geneva","dust":1590.602078,"x":825,"y":60,"height":90,"rt":90,"gt":165,"bt":81},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Geneva","dust":1560.521691,"x":830,"y":60,"height":90,"rt":88,"gt":167,"bt":82},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Geneva","dust":1488.144918,"x":835,"y":60,"height":90,"rt":84,"gt":171,"bt":84},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Geneva","dust":1372.832026,"x":840,"y":60,"height":90,"rt":78,"gt":177,"bt":87},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Geneva","dust":1248.488491,"x":845,"y":60,"height":90,"rt":71,"gt":184,"bt":90},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Geneva","dust":1246.07649,"x":850,"y":60,"height":90,"rt":71,"gt":184,"bt":90},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Geneva","dust":1272.505969,"x":855,"y":60,"height":90,"rt":72,"gt":183,"bt":90},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Geneva","dust":1332.086454,"x":860,"y":60,"height":90,"rt":75,"gt":180,"bt":88},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Geneva","dust":1414.51588,"x":865,"y":60,"height":90,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Geneva","dust":1398.446914,"x":870,"y":60,"height":90,"rt":79,"gt":176,"bt":86},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Geneva","dust":1406.098453,"x":875,"y":60,"height":90,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Geneva","dust":1697.462533,"x":880,"y":60,"height":90,"rt":96,"gt":159,"bt":78},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Geneva","dust":2170.591558,"x":885,"y":60,"height":90,"rt":123,"gt":132,"bt":65},
{"timestamp":"2015-03-18T23:00:00.000Z","city":"Geneva","dust":3302.690918,"x":890,"y":60,"height":90,"rt":187,"gt":68,"bt":33},
{"timestamp":"2015-03-19T00:00:00.000Z","city":"Geneva","dust":3610.947646,"x":895,"y":60,"height":90,"rt":205,"gt":50,"bt":25},
{"timestamp":"2015-03-19T01:00:00.000Z","city":"Geneva","dust":2507.224635,"x":900,"y":60,"height":90,"rt":142,"gt":113,"bt":55},
{"timestamp":"2015-03-19T02:00:00.000Z","city":"Geneva","dust":1519.667003,"x":905,"y":60,"height":90,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-19T03:00:00.000Z","city":"Geneva","dust":1362.329586,"x":910,"y":60,"height":90,"rt":77,"gt":178,"bt":87},
{"timestamp":"2015-03-19T04:00:00.000Z","city":"Geneva","dust":1441.387612,"x":915,"y":60,"height":90,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-19T05:00:00.000Z","city":"Geneva","dust":1523.511587,"x":920,"y":60,"height":90,"rt":86,"gt":169,"bt":83},
{"timestamp":"2015-03-19T06:00:00.000Z","city":"Geneva","dust":1419.475838,"x":925,"y":60,"height":90,"rt":80,"gt":175,"bt":86},
{"timestamp":"2015-03-19T07:00:00.000Z","city":"Geneva","dust":2224.064234,"x":930,"y":60,"height":90,"rt":126,"gt":129,"bt":63},
{"timestamp":"2015-03-19T08:00:00.000Z","city":"Geneva","dust":2834.989574,"x":935,"y":60,"height":90,"rt":161,"gt":94,"bt":46},
{"timestamp":"2015-03-19T09:00:00.000Z","city":"Geneva","dust":1749.58498,"x":940,"y":60,"height":90,"rt":99,"gt":156,"bt":76},
{"timestamp":"2015-03-19T10:00:00.000Z","city":"Geneva","dust":1439.795587,"x":945,"y":60,"height":90,"rt":82,"gt":173,"bt":85},
{"timestamp":"2015-03-19T11:00:00.000Z","city":"Geneva","dust":1502.38947,"x":950,"y":60,"height":90,"rt":85,"gt":170,"bt":83},
{"timestamp":"2015-03-19T12:00:00.000Z","city":"Geneva","dust":1340.080442,"x":955,"y":60,"height":90,"rt":76,"gt":179,"bt":88},
{"timestamp":"2015-03-19T13:00:00.000Z","city":"Geneva","dust":1311.388061,"x":960,"y":60,"height":90,"rt":74,"gt":181,"bt":89},
{"timestamp":"2015-03-19T14:00:00.000Z","city":"Geneva","dust":1262.793751,"x":965,"y":60,"height":90,"rt":72,"gt":183,"bt":90},
{"timestamp":"2015-03-19T15:00:00.000Z","city":"Geneva","dust":1078.285879,"x":970,"y":60,"height":90,"rt":61,"gt":194,"bt":95},
{"timestamp":"2015-03-19T16:00:00.000Z","city":"Geneva","dust":883.5988944,"x":975,"y":60,"height":90,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-19T17:00:00.000Z","city":"Geneva","dust":1052.753265,"x":980,"y":60,"height":90,"rt":60,"gt":195,"bt":96},
{"timestamp":"2015-03-19T18:00:00.000Z","city":"Geneva","dust":1096.835961,"x":985,"y":60,"height":90,"rt":62,"gt":193,"bt":95},
{"timestamp":"2015-03-19T19:00:00.000Z","city":"Geneva","dust":1120.011184,"x":990,"y":60,"height":90,"rt":63,"gt":192,"bt":94},
{"timestamp":"2015-03-19T20:00:00.000Z","city":"Geneva","dust":1175.610597,"x":995,"y":60,"height":90,"rt":67,"gt":188,"bt":92},
{"timestamp":"2015-03-19T21:00:00.000Z","city":"Geneva","dust":1160.313445,"x":1000,"y":60,"height":90,"rt":66,"gt":189,"bt":93},
{"timestamp":"2015-03-19T22:00:00.000Z","city":"Geneva","dust":1208.083556,"x":1005,"y":60,"height":90,"rt":68,"gt":187,"bt":91},
{"timestamp":"2015-03-19T23:00:00.000Z","city":"Geneva","dust":1457.207023,"x":1010,"y":60,"height":90,"rt":83,"gt":172,"bt":85},
{"timestamp":"2015-03-20T00:00:00.000Z","city":"Geneva","dust":1660.353241,"x":1015,"y":60,"height":90,"rt":94,"gt":161,"bt":79},
{"timestamp":"2015-03-20T01:00:00.000Z","city":"Geneva","dust":2400.978559,"x":1020,"y":60,"height":90,"rt":136,"gt":119,"bt":58},
{"timestamp":"2015-03-20T02:00:00.000Z","city":"Geneva","dust":3767.976725,"x":1025,"y":60,"height":90,"rt":214,"gt":41,"bt":20},
{"timestamp":"2015-03-13T05:00:00.000Z","city":"Rio de Janeiro","dust":781.5997461,"x":200,"y":90,"height":120,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-13T06:00:00.000Z","city":"Rio de Janeiro","dust":782.6122965,"x":205,"y":90,"height":120,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-13T07:00:00.000Z","city":"Rio de Janeiro","dust":808.9088838,"x":210,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-13T08:00:00.000Z","city":"Rio de Janeiro","dust":829.510058,"x":215,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-13T09:00:00.000Z","city":"Rio de Janeiro","dust":855.7374623,"x":220,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-13T10:00:00.000Z","city":"Rio de Janeiro","dust":901.0402878,"x":225,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T11:00:00.000Z","city":"Rio de Janeiro","dust":879.4850514,"x":230,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-13T12:00:00.000Z","city":"Rio de Janeiro","dust":902.4265119,"x":235,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T13:00:00.000Z","city":"Rio de Janeiro","dust":907.713608,"x":240,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T14:00:00.000Z","city":"Rio de Janeiro","dust":961.9971001,"x":245,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-13T15:00:00.000Z","city":"Rio de Janeiro","dust":905.4593692,"x":250,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T16:00:00.000Z","city":"Rio de Janeiro","dust":896.5419962,"x":255,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T17:00:00.000Z","city":"Rio de Janeiro","dust":892.8654108,"x":260,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-13T18:00:00.000Z","city":"Rio de Janeiro","dust":871.0884273,"x":265,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-13T19:00:00.000Z","city":"Rio de Janeiro","dust":829.719053,"x":270,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-13T20:00:00.000Z","city":"Rio de Janeiro","dust":844.4702292,"x":275,"y":90,"height":120,"rt":48,"gt":207,"bt":102},
{"timestamp":"2015-03-13T21:00:00.000Z","city":"Rio de Janeiro","dust":819.6542565,"x":280,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-13T22:00:00.000Z","city":"Rio de Janeiro","dust":841.3282316,"x":285,"y":90,"height":120,"rt":48,"gt":207,"bt":102},
{"timestamp":"2015-03-13T23:00:00.000Z","city":"Rio de Janeiro","dust":850.9454386,"x":290,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-14T00:00:00.000Z","city":"Rio de Janeiro","dust":825.521231,"x":295,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T01:00:00.000Z","city":"Rio de Janeiro","dust":826.0139147,"x":300,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T02:00:00.000Z","city":"Rio de Janeiro","dust":829.9205919,"x":305,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-14T03:00:00.000Z","city":"Rio de Janeiro","dust":818.0408664,"x":310,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-14T04:00:00.000Z","city":"Rio de Janeiro","dust":804.1009813,"x":315,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-14T05:00:00.000Z","city":"Rio de Janeiro","dust":794.7121887,"x":320,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-14T06:00:00.000Z","city":"Rio de Janeiro","dust":795.3881336,"x":325,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-14T07:00:00.000Z","city":"Rio de Janeiro","dust":800.4590667,"x":330,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-14T08:00:00.000Z","city":"Rio de Janeiro","dust":805.1979507,"x":335,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-14T09:00:00.000Z","city":"Rio de Janeiro","dust":812.6287289,"x":340,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-14T10:00:00.000Z","city":"Rio de Janeiro","dust":939.0723945,"x":345,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-14T11:00:00.000Z","city":"Rio de Janeiro","dust":907.1310851,"x":350,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-14T12:00:00.000Z","city":"Rio de Janeiro","dust":881.3720954,"x":355,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-14T13:00:00.000Z","city":"Rio de Janeiro","dust":906.0508902,"x":360,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-14T14:00:00.000Z","city":"Rio de Janeiro","dust":933.9694227,"x":365,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-14T15:00:00.000Z","city":"Rio de Janeiro","dust":940.0500723,"x":370,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-14T16:00:00.000Z","city":"Rio de Janeiro","dust":1053.866752,"x":375,"y":90,"height":120,"rt":60,"gt":195,"bt":96},
{"timestamp":"2015-03-14T17:00:00.000Z","city":"Rio de Janeiro","dust":986.4262257,"x":380,"y":90,"height":120,"rt":56,"gt":199,"bt":98},
{"timestamp":"2015-03-14T18:00:00.000Z","city":"Rio de Janeiro","dust":905.443783,"x":385,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-14T19:00:00.000Z","city":"Rio de Janeiro","dust":881.257425,"x":390,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-14T20:00:00.000Z","city":"Rio de Janeiro","dust":883.0682776,"x":395,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-14T21:00:00.000Z","city":"Rio de Janeiro","dust":880.5631259,"x":400,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-14T22:00:00.000Z","city":"Rio de Janeiro","dust":900.1841885,"x":405,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-14T23:00:00.000Z","city":"Rio de Janeiro","dust":886.1263502,"x":410,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-15T00:00:00.000Z","city":"Rio de Janeiro","dust":878.1363533,"x":415,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-15T01:00:00.000Z","city":"Rio de Janeiro","dust":865.9404578,"x":420,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-15T02:00:00.000Z","city":"Rio de Janeiro","dust":869.7115216,"x":425,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-15T03:00:00.000Z","city":"Rio de Janeiro","dust":865.3720757,"x":430,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-15T04:00:00.000Z","city":"Rio de Janeiro","dust":948.8881423,"x":435,"y":90,"height":120,"rt":54,"gt":201,"bt":99},
{"timestamp":"2015-03-15T05:00:00.000Z","city":"Rio de Janeiro","dust":907.3836112,"x":440,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T06:00:00.000Z","city":"Rio de Janeiro","dust":856.6963011,"x":445,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-15T07:00:00.000Z","city":"Rio de Janeiro","dust":889.2066999,"x":450,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-15T08:00:00.000Z","city":"Rio de Janeiro","dust":875.0734212,"x":455,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-15T09:00:00.000Z","city":"Rio de Janeiro","dust":900.6477839,"x":460,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T10:00:00.000Z","city":"Rio de Janeiro","dust":919.5354822,"x":465,"y":90,"height":120,"rt":52,"gt":203,"bt":99},
{"timestamp":"2015-03-15T11:00:00.000Z","city":"Rio de Janeiro","dust":964.1714891,"x":470,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-15T12:00:00.000Z","city":"Rio de Janeiro","dust":905.1310653,"x":475,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T13:00:00.000Z","city":"Rio de Janeiro","dust":902.8692365,"x":480,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T14:00:00.000Z","city":"Rio de Janeiro","dust":936.3116161,"x":485,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-15T15:00:00.000Z","city":"Rio de Janeiro","dust":916.6069541,"x":490,"y":90,"height":120,"rt":52,"gt":203,"bt":100},
{"timestamp":"2015-03-15T16:00:00.000Z","city":"Rio de Janeiro","dust":877.2369518,"x":495,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-15T17:00:00.000Z","city":"Rio de Janeiro","dust":849.8338439,"x":500,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-15T18:00:00.000Z","city":"Rio de Janeiro","dust":901.6581809,"x":505,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T19:00:00.000Z","city":"Rio de Janeiro","dust":892.5086545,"x":510,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-15T20:00:00.000Z","city":"Rio de Janeiro","dust":820.6832829,"x":515,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-15T21:00:00.000Z","city":"Rio de Janeiro","dust":803.3895264,"x":520,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-15T22:00:00.000Z","city":"Rio de Janeiro","dust":812.6308106,"x":525,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-15T23:00:00.000Z","city":"Rio de Janeiro","dust":825.2281961,"x":530,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-16T00:00:00.000Z","city":"Rio de Janeiro","dust":814.6579054,"x":535,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-16T01:00:00.000Z","city":"Rio de Janeiro","dust":821.5427287,"x":540,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-16T02:00:00.000Z","city":"Rio de Janeiro","dust":786.6046076,"x":545,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T03:00:00.000Z","city":"Rio de Janeiro","dust":802.630955,"x":550,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T04:00:00.000Z","city":"Rio de Janeiro","dust":802.705875,"x":555,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T05:00:00.000Z","city":"Rio de Janeiro","dust":793.8396975,"x":560,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T06:00:00.000Z","city":"Rio de Janeiro","dust":796.9301899,"x":565,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T07:00:00.000Z","city":"Rio de Janeiro","dust":921.6819504,"x":570,"y":90,"height":120,"rt":52,"gt":203,"bt":99},
{"timestamp":"2015-03-16T08:00:00.000Z","city":"Rio de Janeiro","dust":874.8888029,"x":575,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-16T09:00:00.000Z","city":"Rio de Janeiro","dust":900.2767882,"x":580,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-16T10:00:00.000Z","city":"Rio de Janeiro","dust":971.0343161,"x":585,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-16T11:00:00.000Z","city":"Rio de Janeiro","dust":919.0610916,"x":590,"y":90,"height":120,"rt":52,"gt":203,"bt":99},
{"timestamp":"2015-03-16T12:00:00.000Z","city":"Rio de Janeiro","dust":958.2066512,"x":595,"y":90,"height":120,"rt":54,"gt":201,"bt":98},
{"timestamp":"2015-03-16T13:00:00.000Z","city":"Rio de Janeiro","dust":932.7770787,"x":600,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-16T14:00:00.000Z","city":"Rio de Janeiro","dust":952.0559019,"x":605,"y":90,"height":120,"rt":54,"gt":201,"bt":99},
{"timestamp":"2015-03-16T15:00:00.000Z","city":"Rio de Janeiro","dust":955.1356535,"x":610,"y":90,"height":120,"rt":54,"gt":201,"bt":98},
{"timestamp":"2015-03-16T16:00:00.000Z","city":"Rio de Janeiro","dust":892.1451213,"x":615,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-16T17:00:00.000Z","city":"Rio de Janeiro","dust":933.712451,"x":620,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-16T18:00:00.000Z","city":"Rio de Janeiro","dust":953.6324745,"x":625,"y":90,"height":120,"rt":54,"gt":201,"bt":99},
{"timestamp":"2015-03-16T19:00:00.000Z","city":"Rio de Janeiro","dust":929.0920786,"x":630,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-16T20:00:00.000Z","city":"Rio de Janeiro","dust":847.5704642,"x":635,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-16T21:00:00.000Z","city":"Rio de Janeiro","dust":857.1921287,"x":640,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-16T22:00:00.000Z","city":"Rio de Janeiro","dust":790.4889222,"x":645,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-16T23:00:00.000Z","city":"Rio de Janeiro","dust":862.9420061,"x":650,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-17T00:00:00.000Z","city":"Rio de Janeiro","dust":807.0549728,"x":655,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-17T01:00:00.000Z","city":"Rio de Janeiro","dust":780.1730158,"x":660,"y":90,"height":120,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-17T02:00:00.000Z","city":"Rio de Janeiro","dust":794.1468149,"x":665,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-17T03:00:00.000Z","city":"Rio de Janeiro","dust":765.5165013,"x":670,"y":90,"height":120,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-17T04:00:00.000Z","city":"Rio de Janeiro","dust":764.4395881,"x":675,"y":90,"height":120,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-17T05:00:00.000Z","city":"Rio de Janeiro","dust":831.0320118,"x":680,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-17T06:00:00.000Z","city":"Rio de Janeiro","dust":811.5148369,"x":685,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-17T07:00:00.000Z","city":"Rio de Janeiro","dust":786.0456703,"x":690,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-17T08:00:00.000Z","city":"Rio de Janeiro","dust":746.0448312,"x":695,"y":90,"height":120,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-17T09:00:00.000Z","city":"Rio de Janeiro","dust":755.1677182,"x":700,"y":90,"height":120,"rt":43,"gt":212,"bt":104},
{"timestamp":"2015-03-17T10:00:00.000Z","city":"Rio de Janeiro","dust":745.5031981,"x":705,"y":90,"height":120,"rt":42,"gt":213,"bt":104},
{"timestamp":"2015-03-17T11:00:00.000Z","city":"Rio de Janeiro","dust":670.237623,"x":710,"y":90,"height":120,"rt":38,"gt":217,"bt":106},
{"timestamp":"2015-03-17T12:00:00.000Z","city":"Rio de Janeiro","dust":782.7582605,"x":715,"y":90,"height":120,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-17T13:00:00.000Z","city":"Rio de Janeiro","dust":810.6457785,"x":720,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-17T14:00:00.000Z","city":"Rio de Janeiro","dust":883.6189414,"x":725,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-17T15:00:00.000Z","city":"Rio de Janeiro","dust":885.5181022,"x":730,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-17T16:00:00.000Z","city":"Rio de Janeiro","dust":890.9717025,"x":735,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-17T17:00:00.000Z","city":"Rio de Janeiro","dust":886.0377854,"x":740,"y":90,"height":120,"rt":50,"gt":205,"bt":100},
{"timestamp":"2015-03-17T18:00:00.000Z","city":"Rio de Janeiro","dust":813.274296,"x":745,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-17T19:00:00.000Z","city":"Rio de Janeiro","dust":826.3748373,"x":750,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-17T20:00:00.000Z","city":"Rio de Janeiro","dust":849.8562814,"x":755,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-17T21:00:00.000Z","city":"Rio de Janeiro","dust":895.5572064,"x":760,"y":90,"height":120,"rt":51,"gt":204,"bt":100},
{"timestamp":"2015-03-17T22:00:00.000Z","city":"Rio de Janeiro","dust":869.5157928,"x":765,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-17T23:00:00.000Z","city":"Rio de Janeiro","dust":881.6673402,"x":770,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-18T00:00:00.000Z","city":"Rio de Janeiro","dust":821.5498714,"x":775,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-18T01:00:00.000Z","city":"Rio de Janeiro","dust":799.5975619,"x":780,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T02:00:00.000Z","city":"Rio de Janeiro","dust":814.04562,"x":785,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T03:00:00.000Z","city":"Rio de Janeiro","dust":791.8804679,"x":790,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T04:00:00.000Z","city":"Rio de Janeiro","dust":786.9358985,"x":795,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T05:00:00.000Z","city":"Rio de Janeiro","dust":803.6043659,"x":800,"y":90,"height":120,"rt":46,"gt":209,"bt":103},
{"timestamp":"2015-03-18T06:00:00.000Z","city":"Rio de Janeiro","dust":778.7612613,"x":805,"y":90,"height":120,"rt":44,"gt":211,"bt":103},
{"timestamp":"2015-03-18T07:00:00.000Z","city":"Rio de Janeiro","dust":820.0844029,"x":810,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T08:00:00.000Z","city":"Rio de Janeiro","dust":794.2117407,"x":815,"y":90,"height":120,"rt":45,"gt":210,"bt":103},
{"timestamp":"2015-03-18T09:00:00.000Z","city":"Rio de Janeiro","dust":818.2366437,"x":820,"y":90,"height":120,"rt":46,"gt":209,"bt":102},
{"timestamp":"2015-03-18T10:00:00.000Z","city":"Rio de Janeiro","dust":847.5304284,"x":825,"y":90,"height":120,"rt":48,"gt":207,"bt":101},
{"timestamp":"2015-03-18T11:00:00.000Z","city":"Rio de Janeiro","dust":834.9765005,"x":830,"y":90,"height":120,"rt":47,"gt":208,"bt":102},
{"timestamp":"2015-03-18T12:00:00.000Z","city":"Rio de Janeiro","dust":875.7546121,"x":835,"y":90,"height":120,"rt":50,"gt":205,"bt":101},
{"timestamp":"2015-03-18T13:00:00.000Z","city":"Rio de Janeiro","dust":968.0549647,"x":840,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-18T14:00:00.000Z","city":"Rio de Janeiro","dust":966.7352742,"x":845,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-18T15:00:00.000Z","city":"Rio de Janeiro","dust":1046.413777,"x":850,"y":90,"height":120,"rt":59,"gt":196,"bt":96},
{"timestamp":"2015-03-18T16:00:00.000Z","city":"Rio de Janeiro","dust":962.1834411,"x":855,"y":90,"height":120,"rt":55,"gt":200,"bt":98},
{"timestamp":"2015-03-18T17:00:00.000Z","city":"Rio de Janeiro","dust":940.8310645,"x":860,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-18T18:00:00.000Z","city":"Rio de Janeiro","dust":916.6080387,"x":865,"y":90,"height":120,"rt":52,"gt":203,"bt":100},
{"timestamp":"2015-03-18T19:00:00.000Z","city":"Rio de Janeiro","dust":929.304147,"x":870,"y":90,"height":120,"rt":53,"gt":202,"bt":99},
{"timestamp":"2015-03-18T20:00:00.000Z","city":"Rio de Janeiro","dust":858.0119653,"x":875,"y":90,"height":120,"rt":49,"gt":206,"bt":101},
{"timestamp":"2015-03-18T21:00:00.000Z","city":"Rio de Janeiro","dust":838.278201,"x":880,"y":90,"height":120,"rt":48,"gt":207,"bt":102},
{"timestamp":"2015-03-18T22:00:00.000Z","city":"Rio de Janeiro","dust":848.120875,"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment