Skip to content

Instantly share code, notes, and snippets.

@eSlivinski
Last active March 14, 2017 01:49
Show Gist options
  • Save eSlivinski/fdaf7efa230a83ec427966bc3ce31f26 to your computer and use it in GitHub Desktop.
Save eSlivinski/fdaf7efa230a83ec427966bc3ce31f26 to your computer and use it in GitHub Desktop.
Fatal Force Hexbins
!function(){d3.hexbin=function(){function u(n){var r={};return n.forEach(function(n,t){var a=s.call(u,n,t)/o,e=Math.round(a),c=h.call(u,n,t)/i-(1&e?.5:0),f=Math.round(c),l=a-e;if(3*Math.abs(l)>1){var v=c-f,g=f+(f>c?-1:1)/2,m=e+(e>a?-1:1),M=c-g,d=a-m;v*v+l*l>M*M+d*d&&(f=g+(1&e?1:-1)/2,e=m)}var j=f+"-"+e,p=r[j];p?p.push(n):(p=r[j]=[n],p.i=f,p.j=e,p.x=(f+(1&e?.5:0))*i,p.y=e*o)}),d3.values(r)}function a(r){var t=0,u=0;return n.map(function(n){var a=Math.sin(n)*r,e=-Math.cos(n)*r,i=a-t,o=e-u;return t=a,u=e,[i,o]})}var e,i,o,c=1,f=1,h=r,s=t;return u.x=function(n){return arguments.length?(h=n,u):h},u.y=function(n){return arguments.length?(s=n,u):s},u.hexagon=function(n){return arguments.length<1&&(n=e),"m"+a(n).join("l")+"z"},u.centers=function(){for(var n=[],r=0,t=!1,u=0;f+e>r;r+=o,t=!t,++u)for(var a=t?i/2:0,h=0;c+i/2>a;a+=i,++h){var s=[a,r];s.i=h,s.j=u,n.push(s)}return n},u.mesh=function(){var n=a(e).slice(0,4).join("l");return u.centers().map(function(r){return"M"+r+"m"+n}).join("")},u.size=function(n){return arguments.length?(c=+n[0],f=+n[1],u):[c,f]},u.radius=function(n){return arguments.length?(e=+n,i=2*e*Math.sin(Math.PI/3),o=1.5*e,u):e},u.radius(1)};var n=d3.range(0,2*Math.PI,Math.PI/3),r=function(n){return n[0]},t=function(n){return n[1]}}();
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<script src="http://d3js.org/d3.v4.js"></script>
<script src="https://d3js.org/d3-queue.v3.min.js"></script>
<script src="./d3.hexbin.min.js"></script>
<style>
.states path {
fill: #ddd;
stroke: #fff;
stroke-width: 2px;
}
.hex-mesh path{
stroke: black;
stroke-opacity: 0.4;
stroke-width: 1;
fill-opacity: 0;
}
.hexagons path{
stroke-width: 2;
stroke: white;
}
</style>
</head>
<body>
<script>
var width = 960,
height = 500;
var svg = d3.select('body')
.append('svg')
.attr('width', width)
.attr('height', height);
var projection = d3.geoAlbersUsa();
var path = d3.geoPath()
.projection(projection);
var color = d3.scaleLinear()
.range(['#fff ', '#e31a1c'])
.domain([0, 20])
.interpolate(d3.interpolateLab);
var hexbin = d3.hexbin()
.size([width, height])
.radius(20);
var states = svg.append('g')
.attr('class', 'states');
var hexagon = svg.append('g')
.attr('class', 'hexagons');
var mesh = svg.append('g')
.attr('class', 'hex-mesh')
.append('path')
.attr('d', hexbin.mesh());
function render (geometry, shootings) {
states.selectAll('path')
.data(geometry.features)
.enter().append('path')
.attr('d', path);
hexagon.selectAll('path')
.data(hexbin(shootings.map(d => { return d.properties.projected; })))
.enter().append('path')
.attr('transform', d => { return 'translate(' + d.x + ',' + d.y + ')'; })
.attr('fill-opacity', 0)
.attr('d', hexbin.hexagon(1))
.transition()
.attr('fill', d => { return color(d.length); })
.attr('fill-opacity', 1)
.transition()
.attr('d', hexbin.hexagon(hexbin.radius()));
}
d3.queue()
.defer(d3.json, 'us.geojson')
.defer(d3.json, 'police-shootings-2015-2017.geojson') // https://www.washingtonpost.com/graphics/national/police-shootings-2015
.awaitAll((err, results) => {
if (err) { return console.error(err); }
shootings = results[1].features
.map(d => {
d.properties.projected = projection(d.geometry.coordinates);
return d;
})
.filter(d => { return d.properties.projected; });
render(results[0], shootings);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.121592,47.246826]},"properties":{"id":3,"date":"2015-01-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8916961,45.4874214]},"properties":{"id":4,"date":"2015-01-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.280554,37.694766]},"properties":{"id":5,"date":"2015-01-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.422001,37.76291]},"properties":{"id":8,"date":"2015-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.692261,40.383937]},"properties":{"id":9,"date":"2015-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.423454,35.876991]},"properties":{"id":11,"date":"2015-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.840959,33.327887]},"properties":{"id":13,"date":"2015-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.563904,38.703755]},"properties":{"id":15,"date":"2015-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.118875,40.80925]},"properties":{"id":16,"date":"2015-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.991408,40.412936]},"properties":{"id":17,"date":"2015-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.298909,37.929798]},"properties":{"id":19,"date":"2015-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.368801,28.954889]},"properties":{"id":21,"date":"2015-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.885407,39.99874]},"properties":{"id":22,"date":"2015-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.608994,41.581526]},"properties":{"id":25,"date":"2015-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.012433,30.021509]},"properties":{"id":27,"date":"2015-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.315018,45.85939]},"properties":{"id":29,"date":"2015-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.871568,40.771699]},"properties":{"id":32,"date":"2015-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.358981,33.111333]},"properties":{"id":36,"date":"2015-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.083141,41.083187]},"properties":{"id":37,"date":"2015-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.965797,34.542149]},"properties":{"id":38,"date":"2015-01-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.438816,31.857692]},"properties":{"id":325,"date":"2015-01-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.30361,39.691905]},"properties":{"id":42,"date":"2015-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.18265,33.950769]},"properties":{"id":43,"date":"2015-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.116317,36.185136]},"properties":{"id":45,"date":"2015-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.586248,35.094656]},"properties":{"id":46,"date":"2015-01-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.542476,28.911926]},"properties":{"id":48,"date":"2015-01-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.094123,44.957673]},"properties":{"id":49,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.794297,38.31704]},"properties":{"id":50,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.347536,36.782704]},"properties":{"id":51,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.301213,40.405205]},"properties":{"id":52,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.427894,29.031478]},"properties":{"id":54,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.88737,40.539832]},"properties":{"id":55,"date":"2015-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.99107,39.826282]},"properties":{"id":56,"date":"2015-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.772395,39.725675]},"properties":{"id":57,"date":"2015-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.357998,44.825491]},"properties":{"id":60,"date":"2015-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.997297,38.265646]},"properties":{"id":63,"date":"2015-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.440665,30.748486]},"properties":{"id":64,"date":"2015-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.068594,32.407111]},"properties":{"id":67,"date":"2015-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.05951,37.588029]},"properties":{"id":68,"date":"2015-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.394405,35.766225]},"properties":{"id":74,"date":"2015-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.232686,34.038256]},"properties":{"id":75,"date":"2015-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.333804,32.810519]},"properties":{"id":78,"date":"2015-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.041995,33.084657]},"properties":{"id":80,"date":"2015-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.920878,37.565241]},"properties":{"id":83,"date":"2015-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.931608,42.256717]},"properties":{"id":84,"date":"2015-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.908609,33.509395]},"properties":{"id":85,"date":"2015-01-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.958179,33.741702]},"properties":{"id":86,"date":"2015-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.123302,26.558696]},"properties":{"id":88,"date":"2015-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.250128,38.664913]},"properties":{"id":90,"date":"2015-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.336722,42.908098]},"properties":{"id":98,"date":"2015-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.028485,31.080258]},"properties":{"id":99,"date":"2015-01-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.746459,32.495318]},"properties":{"id":100,"date":"2015-01-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.788524,30.167126]},"properties":{"id":336,"date":"2015-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.212207,26.149665]},"properties":{"id":101,"date":"2015-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.369147,33.577557]},"properties":{"id":102,"date":"2015-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.380045,32.67783]},"properties":{"id":341,"date":"2015-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.780411,43.825778]},"properties":{"id":105,"date":"2015-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.647576,39.284239]},"properties":{"id":107,"date":"2015-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.573574,38.285393]},"properties":{"id":108,"date":"2015-01-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.928751,39.749036]},"properties":{"id":110,"date":"2015-01-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.909385,39.754033]},"properties":{"id":20,"date":"2015-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.385761,45.035723]},"properties":{"id":324,"date":"2015-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.666311,33.16618]},"properties":{"id":352,"date":"2015-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.335135,35.589237]},"properties":{"id":353,"date":"2015-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.112983,33.494985]},"properties":{"id":348,"date":"2015-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.32633,33.053857]},"properties":{"id":349,"date":"2015-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.996643,39.87932]},"properties":{"id":350,"date":"2015-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.990449,41.242784]},"properties":{"id":111,"date":"2015-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.827708,33.470281]},"properties":{"id":345,"date":"2015-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.315657,38.02921]},"properties":{"id":346,"date":"2015-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.784456,29.557915]},"properties":{"id":347,"date":"2015-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.050127,36.121177]},"properties":{"id":342,"date":"2015-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.659753,42.89423]},"properties":{"id":112,"date":"2015-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.51273,45.789929]},"properties":{"id":113,"date":"2015-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.720377,29.86129]},"properties":{"id":338,"date":"2015-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.820805,39.380084]},"properties":{"id":339,"date":"2015-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.872836,43.598911]},"properties":{"id":528,"date":"2015-02-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.712841,40.273404]},"properties":{"id":114,"date":"2015-02-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.176872,34.417432]},"properties":{"id":115,"date":"2015-02-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.209533,38.74984]},"properties":{"id":117,"date":"2015-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.28415,37.826664]},"properties":{"id":118,"date":"2015-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.818442,37.999348]},"properties":{"id":119,"date":"2015-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.845223,31.523448]},"properties":{"id":120,"date":"2015-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.330427,30.465764]},"properties":{"id":116,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.305522,28.499573]},"properties":{"id":123,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978345,33.378178]},"properties":{"id":124,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.978345,33.378178]},"properties":{"id":125,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.207888,31.397087]},"properties":{"id":126,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.932323,35.164432]},"properties":{"id":127,"date":"2015-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.650399,33.953297]},"properties":{"id":128,"date":"2015-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.515092,35.404233]},"properties":{"id":129,"date":"2015-02-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.057442,33.993874]},"properties":{"id":532,"date":"2015-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.227419,35.265999]},"properties":{"id":554,"date":"2015-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.858767,61.207695]},"properties":{"id":131,"date":"2015-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.89063,30.243993]},"properties":{"id":132,"date":"2015-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00091,41.152031]},"properties":{"id":133,"date":"2015-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.329358,28.482014]},"properties":{"id":134,"date":"2015-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.712082,33.787111]},"properties":{"id":135,"date":"2015-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.103745,46.159452]},"properties":{"id":136,"date":"2015-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.750514,32.655099]},"properties":{"id":137,"date":"2015-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.101408,46.228334]},"properties":{"id":138,"date":"2015-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.054309,35.024626]},"properties":{"id":139,"date":"2015-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.45411,39.572635]},"properties":{"id":140,"date":"2015-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.875651,37.316219]},"properties":{"id":141,"date":"2015-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.72364,32.864135]},"properties":{"id":142,"date":"2015-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.333459,34.164632]},"properties":{"id":145,"date":"2015-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.640238,39.071462]},"properties":{"id":146,"date":"2015-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.907947,40.328755]},"properties":{"id":147,"date":"2015-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.571903,35.94982]},"properties":{"id":148,"date":"2015-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.6283242,32.614424]},"properties":{"id":154,"date":"2015-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.439504,39.298901]},"properties":{"id":149,"date":"2015-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.47401,27.553541]},"properties":{"id":155,"date":"2015-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.207524,25.950868]},"properties":{"id":150,"date":"2015-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.204544,34.804241]},"properties":{"id":151,"date":"2015-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.43747,45.175076]},"properties":{"id":153,"date":"2015-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.089809,32.358795]},"properties":{"id":156,"date":"2015-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.222359,43.578926]},"properties":{"id":157,"date":"2015-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6238217,40.1025309]},"properties":{"id":158,"date":"2015-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.169415,35.228567]},"properties":{"id":130,"date":"2015-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.319432,37.22525]},"properties":{"id":159,"date":"2015-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.700777,42.514069]},"properties":{"id":160,"date":"2015-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.283913,42.614279]},"properties":{"id":161,"date":"2015-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.830582,29.368635]},"properties":{"id":162,"date":"2015-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.819062,35.249899]},"properties":{"id":163,"date":"2015-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.401484,29.983431]},"properties":{"id":584,"date":"2015-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.099857,32.873841]},"properties":{"id":165,"date":"2015-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.823544,33.482154]},"properties":{"id":166,"date":"2015-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.724055,33.564085]},"properties":{"id":255,"date":"2015-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.665221,33.448276]},"properties":{"id":167,"date":"2015-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.99188,39.792772]},"properties":{"id":168,"date":"2015-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.645496,27.989686]},"properties":{"id":170,"date":"2015-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.432531,40.631809]},"properties":{"id":266,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.933308,41.244051]},"properties":{"id":371,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.956482,30.454942]},"properties":{"id":172,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.69472,33.911411]},"properties":{"id":174,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.597835,34.631146]},"properties":{"id":175,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.362488,32.530105]},"properties":{"id":176,"date":"2015-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.058383,44.526743]},"properties":{"id":177,"date":"2015-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.552124,35.497367]},"properties":{"id":178,"date":"2015-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.055218,36.241326]},"properties":{"id":179,"date":"2015-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.378833,39.462937]},"properties":{"id":180,"date":"2015-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.950414,28.103782]},"properties":{"id":181,"date":"2015-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.413943,37.750904]},"properties":{"id":182,"date":"2015-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.092452,30.424762]},"properties":{"id":183,"date":"2015-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.902277,31.550067]},"properties":{"id":184,"date":"2015-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.879136,33.747056]},"properties":{"id":185,"date":"2015-02-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.407687,34.632654]},"properties":{"id":186,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.836983,42.75564]},"properties":{"id":187,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.232134,38.597794]},"properties":{"id":188,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.989562,32.229651]},"properties":{"id":189,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.293625,38.946463]},"properties":{"id":190,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.54755,35.917642]},"properties":{"id":191,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.450926,33.619301]},"properties":{"id":192,"date":"2015-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.604247,30.78854]},"properties":{"id":268,"date":"2015-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.244634,34.043131]},"properties":{"id":194,"date":"2015-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.621853,29.704199]},"properties":{"id":195,"date":"2015-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.074437,41.522475]},"properties":{"id":196,"date":"2015-03-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.608743,38.379864]},"properties":{"id":197,"date":"2015-03-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.930819,33.440229]},"properties":{"id":198,"date":"2015-03-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.254315,28.887012]},"properties":{"id":199,"date":"2015-03-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.28585,37.948268]},"properties":{"id":249,"date":"2015-03-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.904166,42.96829]},"properties":{"id":200,"date":"2015-03-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.344693,34.150659]},"properties":{"id":201,"date":"2015-03-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.681924,40.874654]},"properties":{"id":202,"date":"2015-03-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.915611,39.735111]},"properties":{"id":269,"date":"2015-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.958504,29.742555]},"properties":{"id":270,"date":"2015-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.365147,43.082687]},"properties":{"id":203,"date":"2015-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.043319,33.469376]},"properties":{"id":271,"date":"2015-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.582619,35.426257]},"properties":{"id":272,"date":"2015-03-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.456051,39.818378]},"properties":{"id":273,"date":"2015-03-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.939793,33.818692]},"properties":{"id":204,"date":"2015-03-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.62607,35.268563]},"properties":{"id":274,"date":"2015-03-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.009883,40.245719]},"properties":{"id":275,"date":"2015-03-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.748768,28.351206]},"properties":{"id":276,"date":"2015-03-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.267137,33.880312]},"properties":{"id":205,"date":"2015-03-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.169322,30.536475]},"properties":{"id":278,"date":"2015-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.183981,32.165325]},"properties":{"id":536,"date":"2015-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.6546866,34.0501046]},"properties":{"id":883,"date":"2015-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.641036,41.45028]},"properties":{"id":206,"date":"2015-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.000152,35.157842]},"properties":{"id":277,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.867651,33.742882]},"properties":{"id":279,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.025931,35.203911]},"properties":{"id":281,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2195876,33.939359]},"properties":{"id":796,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8905859,30.8620675]},"properties":{"id":307,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.849294,33.416897]},"properties":{"id":581,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.815786,39.573459]},"properties":{"id":248,"date":"2015-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.982951,38.882436]},"properties":{"id":282,"date":"2015-03-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.486698,38.947445]},"properties":{"id":283,"date":"2015-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.430002,34.077616]},"properties":{"id":289,"date":"2015-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.228991,33.971236]},"properties":{"id":351,"date":"2015-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.273739,38.306261]},"properties":{"id":207,"date":"2015-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.535726,29.513213]},"properties":{"id":287,"date":"2015-03-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.596311,40.331421]},"properties":{"id":208,"date":"2015-03-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.83459,42.58309]},"properties":{"id":209,"date":"2015-03-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.302843,31.325691]},"properties":{"id":210,"date":"2015-03-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.025476,44.953799]},"properties":{"id":212,"date":"2015-03-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.241636,35.203731]},"properties":{"id":213,"date":"2015-03-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.103563,30.814732]},"properties":{"id":290,"date":"2015-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.504253,38.681963]},"properties":{"id":292,"date":"2015-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.898735,42.330173]},"properties":{"id":216,"date":"2015-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.750935,34.64017]},"properties":{"id":217,"date":"2015-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.422157,37.789426]},"properties":{"id":221,"date":"2015-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.014812,35.376069]},"properties":{"id":294,"date":"2015-03-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.202814,33.581697]},"properties":{"id":225,"date":"2015-03-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.279421,30.461026]},"properties":{"id":226,"date":"2015-03-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.680175,30.379217]},"properties":{"id":265,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.273211,49.000065]},"properties":{"id":295,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.3361,35.354986]},"properties":{"id":306,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.287003,34.565591]},"properties":{"id":228,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.609386,41.528541]},"properties":{"id":229,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.579801,43.704131]},"properties":{"id":230,"date":"2015-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.137945,36.466341]},"properties":{"id":531,"date":"2015-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.264891,29.992531]},"properties":{"id":308,"date":"2015-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.323037,34.505601]},"properties":{"id":310,"date":"2015-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.047068,43.190436]},"properties":{"id":309,"date":"2015-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.07341,39.533776]},"properties":{"id":311,"date":"2015-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.998932,40.02951]},"properties":{"id":312,"date":"2015-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.000822,34.713102]},"properties":{"id":235,"date":"2015-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.222267,38.132809]},"properties":{"id":231,"date":"2015-03-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.529939,45.505858]},"properties":{"id":233,"date":"2015-03-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.238465,40.739672]},"properties":{"id":234,"date":"2015-03-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.959126,37.361221]},"properties":{"id":237,"date":"2015-03-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.4746,43.782426]},"properties":{"id":313,"date":"2015-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.369659,36.818692]},"properties":{"id":238,"date":"2015-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.840691,37.302106]},"properties":{"id":247,"date":"2015-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.476755,33.865535]},"properties":{"id":239,"date":"2015-03-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.462456,33.819009]},"properties":{"id":240,"date":"2015-03-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.291746,33.939976]},"properties":{"id":241,"date":"2015-03-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.202927,33.638279]},"properties":{"id":242,"date":"2015-03-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.91005,38.818043]},"properties":{"id":246,"date":"2015-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.271171,33.793498]},"properties":{"id":250,"date":"2015-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.242317,33.049707]},"properties":{"id":256,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.327529,27.43475]},"properties":{"id":257,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.002883,35.396041]},"properties":{"id":258,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.878142,42.055899]},"properties":{"id":316,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.182998,34.22821]},"properties":{"id":245,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.840693,39.469297]},"properties":{"id":251,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.08941,42.313267]},"properties":{"id":254,"date":"2015-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.255029,39.08304]},"properties":{"id":264,"date":"2015-03-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.888502,37.734754]},"properties":{"id":252,"date":"2015-03-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.18118,44.090624]},"properties":{"id":262,"date":"2015-03-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.839753,35.973875]},"properties":{"id":244,"date":"2015-03-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.489546,28.102231]},"properties":{"id":259,"date":"2015-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.970698,29.733042]},"properties":{"id":261,"date":"2015-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.770193,39.115463]},"properties":{"id":263,"date":"2015-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.337333,33.901906]},"properties":{"id":267,"date":"2015-04-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.709921,40.216873]},"properties":{"id":533,"date":"2015-04-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.581629,41.499587]},"properties":{"id":286,"date":"2015-04-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.676659,37.176036]},"properties":{"id":288,"date":"2015-04-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.940328,36.183726]},"properties":{"id":291,"date":"2015-04-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.406698,31.345502]},"properties":{"id":303,"date":"2015-04-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.1282,39.191124]},"properties":{"id":299,"date":"2015-04-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.844957,42.452298]},"properties":{"id":296,"date":"2015-04-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.013735,32.899087]},"properties":{"id":297,"date":"2015-04-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.852427,33.835615]},"properties":{"id":300,"date":"2015-04-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.193081,35.055841]},"properties":{"id":302,"date":"2015-04-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.143506,33.654717]},"properties":{"id":301,"date":"2015-04-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.41425,35.127169]},"properties":{"id":304,"date":"2015-04-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.273261,39.681067]},"properties":{"id":298,"date":"2015-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.048258,29.876832]},"properties":{"id":318,"date":"2015-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.049359,43.64155]},"properties":{"id":322,"date":"2015-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.057457,35.339394]},"properties":{"id":319,"date":"2015-04-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.427013,29.489357]},"properties":{"id":329,"date":"2015-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.332535,30.845134]},"properties":{"id":330,"date":"2015-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.211775,34.040606]},"properties":{"id":331,"date":"2015-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.994957,37.403931]},"properties":{"id":359,"date":"2015-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.277412,35.953857]},"properties":{"id":534,"date":"2015-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.8349,30.413264]},"properties":{"id":332,"date":"2015-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.878633,40.879479]},"properties":{"id":333,"date":"2015-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.157926,39.858871]},"properties":{"id":340,"date":"2015-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.006144,35.022788]},"properties":{"id":343,"date":"2015-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.202172,39.935415]},"properties":{"id":335,"date":"2015-04-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.761759,39.053661]},"properties":{"id":377,"date":"2015-04-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.13404,36.091966]},"properties":{"id":358,"date":"2015-04-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.1085291,39.8126751]},"properties":{"id":355,"date":"2015-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.340452,35.403603]},"properties":{"id":357,"date":"2015-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.490827,35.064416]},"properties":{"id":362,"date":"2015-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.134558,38.892104]},"properties":{"id":356,"date":"2015-04-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.822983,32.662268]},"properties":{"id":363,"date":"2015-04-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.71751,35.834138]},"properties":{"id":364,"date":"2015-04-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.211959,25.843845]},"properties":{"id":365,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.911625,34.904487]},"properties":{"id":366,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.173269,29.806365]},"properties":{"id":367,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.325555,38.948255]},"properties":{"id":368,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.192156,38.446499]},"properties":{"id":369,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.721067,34.05118]},"properties":{"id":374,"date":"2015-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.280529,35.499847]},"properties":{"id":373,"date":"2015-04-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.572477,41.760724]},"properties":{"id":380,"date":"2015-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.95429,33.743991]},"properties":{"id":381,"date":"2015-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.243924,38.724247]},"properties":{"id":382,"date":"2015-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.038849,33.480313]},"properties":{"id":376,"date":"2015-04-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.701538,30.17102]},"properties":{"id":379,"date":"2015-04-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.660236,37.867728]},"properties":{"id":378,"date":"2015-04-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.9829,41.122104]},"properties":{"id":383,"date":"2015-04-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.349538,26.281792]},"properties":{"id":399,"date":"2015-04-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.251946,40.712673]},"properties":{"id":537,"date":"2015-04-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.484506,47.160076]},"properties":{"id":393,"date":"2015-04-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.199674,34.072798]},"properties":{"id":398,"date":"2015-04-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.204508,34.072003]},"properties":{"id":495,"date":"2015-04-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.340321,36.829591]},"properties":{"id":391,"date":"2015-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.916773,31.401187]},"properties":{"id":394,"date":"2015-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.793892,40.710297]},"properties":{"id":395,"date":"2015-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.303887,32.769225]},"properties":{"id":396,"date":"2015-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.256724,39.938444]},"properties":{"id":397,"date":"2015-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.438197,34.323236]},"properties":{"id":392,"date":"2015-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.156507,34.13286]},"properties":{"id":400,"date":"2015-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.173635,33.781475]},"properties":{"id":409,"date":"2015-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.791958,38.375375]},"properties":{"id":401,"date":"2015-04-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.997364,44.914371]},"properties":{"id":402,"date":"2015-04-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.886605,36.897402]},"properties":{"id":403,"date":"2015-04-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.492588,37.175885]},"properties":{"id":412,"date":"2015-04-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.000952,28.878408]},"properties":{"id":408,"date":"2015-04-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98232,40.724506]},"properties":{"id":411,"date":"2015-04-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.812379,28.567171]},"properties":{"id":414,"date":"2015-04-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.771596,35.744802]},"properties":{"id":404,"date":"2015-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.6005424,36.2109161]},"properties":{"id":406,"date":"2015-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.955684,33.695945]},"properties":{"id":407,"date":"2015-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.236052,42.365591]},"properties":{"id":405,"date":"2015-04-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.51561,40.738593]},"properties":{"id":413,"date":"2015-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9658257,30.0189954]},"properties":{"id":417,"date":"2015-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.941253,37.730881]},"properties":{"id":420,"date":"2015-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.948591,35.040058]},"properties":{"id":415,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.799998,33.389516]},"properties":{"id":416,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.492433,38.369664]},"properties":{"id":419,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.390458,33.75207]},"properties":{"id":421,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.501518,36.610572]},"properties":{"id":422,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.778947,36.053877]},"properties":{"id":423,"date":"2015-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.205822,32.754206]},"properties":{"id":418,"date":"2015-04-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.342258,31.694173]},"properties":{"id":424,"date":"2015-04-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.602986,39.280057]},"properties":{"id":425,"date":"2015-05-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.995847,40.305774]},"properties":{"id":426,"date":"2015-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.641765,32.958448]},"properties":{"id":427,"date":"2015-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.641765,32.958448]},"properties":{"id":428,"date":"2015-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.68746,35.051983]},"properties":{"id":445,"date":"2015-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.2449759,37.3798439]},"properties":{"id":447,"date":"2015-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.16833,46.201778]},"properties":{"id":431,"date":"2015-05-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.472262,33.987696]},"properties":{"id":429,"date":"2015-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.043956,34.05356]},"properties":{"id":430,"date":"2015-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.745746,37.057798]},"properties":{"id":434,"date":"2015-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.526112,35.950723]},"properties":{"id":432,"date":"2015-05-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.086759,33.933369]},"properties":{"id":433,"date":"2015-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.979711,41.518463]},"properties":{"id":435,"date":"2015-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.050411,33.873891]},"properties":{"id":436,"date":"2015-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.923299,33.07865]},"properties":{"id":439,"date":"2015-05-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.007593,43.265635]},"properties":{"id":443,"date":"2015-05-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.072407,29.860026]},"properties":{"id":451,"date":"2015-05-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.265777,45.070109]},"properties":{"id":454,"date":"2015-05-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.488687,47.228535]},"properties":{"id":453,"date":"2015-05-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.875006,38.902499]},"properties":{"id":455,"date":"2015-05-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.395163,32.660536]},"properties":{"id":437,"date":"2015-05-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.480936,29.972866]},"properties":{"id":444,"date":"2015-05-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.738718,30.213334]},"properties":{"id":441,"date":"2015-05-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-157.862176,21.310467]},"properties":{"id":449,"date":"2015-05-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.613061,33.654715]},"properties":{"id":450,"date":"2015-05-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.641413,42.228542]},"properties":{"id":456,"date":"2015-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.277539,29.850058]},"properties":{"id":470,"date":"2015-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.068521,42.250249]},"properties":{"id":460,"date":"2015-05-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.434249,38.551542]},"properties":{"id":462,"date":"2015-05-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.634034,41.603352]},"properties":{"id":463,"date":"2015-05-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.15397,32.801899]},"properties":{"id":458,"date":"2015-05-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.658717,27.820077]},"properties":{"id":459,"date":"2015-05-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.67333,33.356905]},"properties":{"id":461,"date":"2015-05-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.105305,38.872856]},"properties":{"id":457,"date":"2015-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.007669,34.967473]},"properties":{"id":464,"date":"2015-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.555976,39.073965]},"properties":{"id":465,"date":"2015-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.299642,40.041863]},"properties":{"id":466,"date":"2015-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.429444,40.965494]},"properties":{"id":467,"date":"2015-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.122682,37.724156]},"properties":{"id":468,"date":"2015-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.449958,44.3018461]},"properties":{"id":486,"date":"2015-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.957061,41.324411]},"properties":{"id":489,"date":"2015-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.422942,31.903775]},"properties":{"id":469,"date":"2015-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.18358,26.107071]},"properties":{"id":483,"date":"2015-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.077528,32.857918]},"properties":{"id":484,"date":"2015-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.04095,40.900994]},"properties":{"id":485,"date":"2015-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.937825,32.778311]},"properties":{"id":487,"date":"2015-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.075084,40.032601]},"properties":{"id":472,"date":"2015-05-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.187415,42.385913]},"properties":{"id":529,"date":"2015-05-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.514663,38.657984]},"properties":{"id":473,"date":"2015-05-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.329803,34.093521]},"properties":{"id":474,"date":"2015-05-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.720787,30.332257]},"properties":{"id":475,"date":"2015-05-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.564043,34.613838]},"properties":{"id":476,"date":"2015-05-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.013642,47.837626]},"properties":{"id":530,"date":"2015-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.888847,40.656563]},"properties":{"id":477,"date":"2015-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.707624,32.517043]},"properties":{"id":479,"date":"2015-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.112811,40.444117]},"properties":{"id":480,"date":"2015-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.455392,35.63424]},"properties":{"id":481,"date":"2015-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.206452,33.343521]},"properties":{"id":482,"date":"2015-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.139309,33.7854079]},"properties":{"id":491,"date":"2015-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.698862,32.750634]},"properties":{"id":492,"date":"2015-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.797142,34.794412]},"properties":{"id":488,"date":"2015-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.976296,39.894384]},"properties":{"id":490,"date":"2015-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.048814,33.590491]},"properties":{"id":493,"date":"2015-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.215882,42.140074]},"properties":{"id":494,"date":"2015-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.124794,40.812432]},"properties":{"id":497,"date":"2015-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.890589,35.841826]},"properties":{"id":498,"date":"2015-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.445911,42.360091]},"properties":{"id":499,"date":"2015-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.985595,34.690357]},"properties":{"id":500,"date":"2015-05-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.709123,36.125751]},"properties":{"id":501,"date":"2015-05-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.831604,42.311359]},"properties":{"id":503,"date":"2015-05-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.616483,31.734272]},"properties":{"id":504,"date":"2015-05-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.694284,43.207533]},"properties":{"id":505,"date":"2015-06-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.139682,42.275833]},"properties":{"id":507,"date":"2015-06-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.516524,32.868563]},"properties":{"id":508,"date":"2015-06-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.223092,35.786907]},"properties":{"id":512,"date":"2015-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.756058,34.750903]},"properties":{"id":513,"date":"2015-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.864153,32.301148]},"properties":{"id":509,"date":"2015-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.214294,29.618996]},"properties":{"id":510,"date":"2015-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.740952,40.952859]},"properties":{"id":511,"date":"2015-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4388783,34.9704155]},"properties":{"id":520,"date":"2015-06-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.9067469,39.6232558]},"properties":{"id":521,"date":"2015-06-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.243407,37.809127]},"properties":{"id":515,"date":"2015-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.249607,27.058852]},"properties":{"id":516,"date":"2015-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.750688,36.905427]},"properties":{"id":518,"date":"2015-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.139482,32.009043]},"properties":{"id":519,"date":"2015-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.326154,39.734296]},"properties":{"id":522,"date":"2015-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.606162,28.083921]},"properties":{"id":514,"date":"2015-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.750305,45.902914]},"properties":{"id":517,"date":"2015-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.086203,39.721729]},"properties":{"id":523,"date":"2015-06-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.922284,33.847196]},"properties":{"id":524,"date":"2015-06-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.25749,33.631252]},"properties":{"id":526,"date":"2015-06-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.66226,41.036948]},"properties":{"id":525,"date":"2015-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.61725,30.03092]},"properties":{"id":535,"date":"2015-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.546177,39.164122]},"properties":{"id":538,"date":"2015-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.697756,41.622663]},"properties":{"id":539,"date":"2015-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.896429,40.856199]},"properties":{"id":540,"date":"2015-06-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.104532,26.275531]},"properties":{"id":541,"date":"2015-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.943078,35.632731]},"properties":{"id":542,"date":"2015-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.199831,25.786838]},"properties":{"id":543,"date":"2015-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.355016,29.523022]},"properties":{"id":544,"date":"2015-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.039547,40.907284]},"properties":{"id":545,"date":"2015-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.164584,40.468534]},"properties":{"id":553,"date":"2015-06-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.156098,41.097792]},"properties":{"id":546,"date":"2015-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.760271,38.235232]},"properties":{"id":548,"date":"2015-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.70821,32.647691]},"properties":{"id":549,"date":"2015-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.343291,37.976622]},"properties":{"id":547,"date":"2015-06-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.792442,28.359501]},"properties":{"id":551,"date":"2015-06-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.950847,38.950958]},"properties":{"id":550,"date":"2015-06-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.313233,36.304636]},"properties":{"id":559,"date":"2015-06-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.8634312,47.9370408]},"properties":{"id":563,"date":"2015-06-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.6245477,32.8861991]},"properties":{"id":557,"date":"2015-06-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.135383,32.731976]},"properties":{"id":561,"date":"2015-06-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.968495,40.576223]},"properties":{"id":564,"date":"2015-06-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.100653,42.351006]},"properties":{"id":558,"date":"2015-06-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.393678,39.155709]},"properties":{"id":560,"date":"2015-06-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.704157,40.426674]},"properties":{"id":565,"date":"2015-06-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.572648,41.766403]},"properties":{"id":582,"date":"2015-06-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.900155,34.129037]},"properties":{"id":555,"date":"2015-06-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.442497,30.03043]},"properties":{"id":556,"date":"2015-06-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.886735,36.2287]},"properties":{"id":566,"date":"2015-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.289535,38.676657]},"properties":{"id":570,"date":"2015-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.019717,33.414508]},"properties":{"id":573,"date":"2015-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.004869,40.409201]},"properties":{"id":576,"date":"2015-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.120332,39.825807]},"properties":{"id":572,"date":"2015-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.943841,38.062555]},"properties":{"id":574,"date":"2015-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.795244,32.736069]},"properties":{"id":575,"date":"2015-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.1580575,41.277536]},"properties":{"id":726,"date":"2015-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.517373,37.178882]},"properties":{"id":569,"date":"2015-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.806171,39.410563]},"properties":{"id":567,"date":"2015-06-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.6585046,37.0799399]},"properties":{"id":568,"date":"2015-06-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2847872,44.7427097]},"properties":{"id":579,"date":"2015-06-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.640225,29.417823]},"properties":{"id":583,"date":"2015-06-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.979138,35.909191]},"properties":{"id":580,"date":"2015-06-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.536193,45.535679]},"properties":{"id":577,"date":"2015-06-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.068862,43.208264]},"properties":{"id":585,"date":"2015-06-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.388293,35.193835]},"properties":{"id":586,"date":"2015-06-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.167534,45.22953]},"properties":{"id":587,"date":"2015-07-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.384426,42.646088]},"properties":{"id":589,"date":"2015-07-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.0137967,42.0534082]},"properties":{"id":588,"date":"2015-07-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.163719,32.9897]},"properties":{"id":601,"date":"2015-07-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.626254,30.30027]},"properties":{"id":603,"date":"2015-07-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.8542568,37.8590061]},"properties":{"id":604,"date":"2015-07-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.893713,34.024073]},"properties":{"id":597,"date":"2015-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1866,34.671167]},"properties":{"id":598,"date":"2015-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.088236,39.963289]},"properties":{"id":599,"date":"2015-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.13447,25.812879]},"properties":{"id":602,"date":"2015-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.443568,35.413921]},"properties":{"id":591,"date":"2015-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.279706,36.196225]},"properties":{"id":595,"date":"2015-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.399516,36.983553]},"properties":{"id":596,"date":"2015-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.042973,36.05696]},"properties":{"id":600,"date":"2015-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.872041,37.661852]},"properties":{"id":592,"date":"2015-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.740237,30.269022]},"properties":{"id":593,"date":"2015-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.701623,30.380473]},"properties":{"id":594,"date":"2015-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.070855,33.833295]},"properties":{"id":605,"date":"2015-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.575619,35.417777]},"properties":{"id":590,"date":"2015-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.9760423,44.1528706]},"properties":{"id":606,"date":"2015-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.579068,37.338978]},"properties":{"id":607,"date":"2015-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.124075,33.857135]},"properties":{"id":610,"date":"2015-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4057039,34.3219445]},"properties":{"id":619,"date":"2015-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.519222,29.594962]},"properties":{"id":608,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.82125,33.405056]},"properties":{"id":609,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.826959,32.757752]},"properties":{"id":611,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.012501,35.307451]},"properties":{"id":614,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.1373,26.259277]},"properties":{"id":615,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.4279915,39.3690872]},"properties":{"id":616,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.42198,39.137061]},"properties":{"id":617,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.906395,37.717746]},"properties":{"id":618,"date":"2015-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.7837437,45.4693759]},"properties":{"id":620,"date":"2015-07-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.425816,36.446479]},"properties":{"id":621,"date":"2015-07-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.8399014,37.8387499]},"properties":{"id":622,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0996066,33.596559]},"properties":{"id":623,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6078365,41.7585177]},"properties":{"id":624,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.127311,37.150232]},"properties":{"id":625,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3441923,34.0588499]},"properties":{"id":627,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5652463,39.0010806]},"properties":{"id":634,"date":"2015-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2167042,36.1442927]},"properties":{"id":626,"date":"2015-07-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.97013,33.57638]},"properties":{"id":630,"date":"2015-07-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6077663,41.7019119]},"properties":{"id":1152,"date":"2015-07-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.5575539,39.0917625]},"properties":{"id":637,"date":"2015-07-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0472867,39.7010007]},"properties":{"id":628,"date":"2015-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2014266,26.1176093]},"properties":{"id":631,"date":"2015-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.910238,30.246799]},"properties":{"id":632,"date":"2015-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8145245,41.8812343]},"properties":{"id":633,"date":"2015-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.3544196,42.8343714]},"properties":{"id":636,"date":"2015-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.211553,33.822846]},"properties":{"id":629,"date":"2015-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.274896,41.200215]},"properties":{"id":635,"date":"2015-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.944284,42.472188]},"properties":{"id":638,"date":"2015-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4720381,33.9991424]},"properties":{"id":645,"date":"2015-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9162065,28.578895]},"properties":{"id":639,"date":"2015-07-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.98394,41.289265]},"properties":{"id":641,"date":"2015-07-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.250071,44.102598]},"properties":{"id":643,"date":"2015-07-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2275536,33.9391876]},"properties":{"id":642,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0186791,43.0358905]},"properties":{"id":646,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.4934912,25.4624512]},"properties":{"id":647,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.6435385,39.0481417]},"properties":{"id":648,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.2453109,35.095938]},"properties":{"id":649,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.825779,41.117392]},"properties":{"id":656,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.375427,31.288369]},"properties":{"id":664,"date":"2015-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3038141,47.6757769]},"properties":{"id":644,"date":"2015-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3343361,28.5219489]},"properties":{"id":651,"date":"2015-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.639611,34.8835718]},"properties":{"id":655,"date":"2015-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.8737015,35.0502805]},"properties":{"id":657,"date":"2015-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4718885,25.8966104]},"properties":{"id":660,"date":"2015-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.1003017,40.5652185]},"properties":{"id":650,"date":"2015-07-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1515748,33.5531156]},"properties":{"id":652,"date":"2015-07-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.0404477,39.3980308]},"properties":{"id":654,"date":"2015-07-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5131639,39.122309]},"properties":{"id":653,"date":"2015-07-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.3571403,29.8298194]},"properties":{"id":658,"date":"2015-07-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.027441,37.555662]},"properties":{"id":759,"date":"2015-07-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.798504,34.313096]},"properties":{"id":661,"date":"2015-07-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1286219,26.1899812]},"properties":{"id":662,"date":"2015-07-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8925517,31.6789812]},"properties":{"id":663,"date":"2015-07-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.646491,42.600488]},"properties":{"id":666,"date":"2015-07-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.489309,35.49476]},"properties":{"id":667,"date":"2015-07-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.9862459,40.0968461]},"properties":{"id":669,"date":"2015-07-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.214178,39.803949]},"properties":{"id":668,"date":"2015-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.4102487,44.9848821]},"properties":{"id":670,"date":"2015-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.9469694,33.7075087]},"properties":{"id":671,"date":"2015-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.390157,42.720478]},"properties":{"id":672,"date":"2015-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.0177221,38.9747153]},"properties":{"id":673,"date":"2015-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.397924,34.143487]},"properties":{"id":674,"date":"2015-07-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.433153,36.32937]},"properties":{"id":675,"date":"2015-07-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.017458,29.9561081]},"properties":{"id":676,"date":"2015-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.7349113,30.8486992]},"properties":{"id":677,"date":"2015-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1055401,36.1587751]},"properties":{"id":678,"date":"2015-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.2798227,29.504692]},"properties":{"id":685,"date":"2015-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.7886827,32.4817823]},"properties":{"id":679,"date":"2015-07-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.974247,34.692876]},"properties":{"id":680,"date":"2015-07-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.229094,34.077354]},"properties":{"id":681,"date":"2015-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.6277183,29.5421832]},"properties":{"id":682,"date":"2015-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.270719,40.018097]},"properties":{"id":683,"date":"2015-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.181398,35.886102]},"properties":{"id":684,"date":"2015-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.7969929,32.3116465]},"properties":{"id":686,"date":"2015-07-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8295535,41.7379601]},"properties":{"id":687,"date":"2015-07-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.728094,38.906114]},"properties":{"id":688,"date":"2015-07-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.26951,41.235559]},"properties":{"id":689,"date":"2015-07-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.3313028,32.7538003]},"properties":{"id":690,"date":"2015-07-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0551664,33.9722568]},"properties":{"id":691,"date":"2015-07-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6431762,35.0726273]},"properties":{"id":692,"date":"2015-07-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.5230274,33.3954821]},"properties":{"id":693,"date":"2015-07-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.840688,38.4022609]},"properties":{"id":694,"date":"2015-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9734557,32.2723509]},"properties":{"id":696,"date":"2015-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.5568848,29.6892421]},"properties":{"id":695,"date":"2015-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2690445,37.827245]},"properties":{"id":697,"date":"2015-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.5707645,40.2786075]},"properties":{"id":698,"date":"2015-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.7906698,37.5105731]},"properties":{"id":699,"date":"2015-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.3782679,40.1761816]},"properties":{"id":700,"date":"2015-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.464884,33.299285]},"properties":{"id":701,"date":"2015-08-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.175485,40.3077479]},"properties":{"id":702,"date":"2015-08-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.7520548,38.2532957]},"properties":{"id":703,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0255356,42.9718786]},"properties":{"id":704,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-156.4829529,20.8937133]},"properties":{"id":705,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4665641,37.5481134]},"properties":{"id":706,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.651596,36.050966]},"properties":{"id":707,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4837917,47.2062105]},"properties":{"id":708,"date":"2015-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5944659,38.9903317]},"properties":{"id":710,"date":"2015-08-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.4444018,31.812637]},"properties":{"id":737,"date":"2015-08-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.0929599,32.6797381]},"properties":{"id":711,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2446208,36.1060165]},"properties":{"id":712,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8984732,36.8079823]},"properties":{"id":713,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.8813099,47.1895881]},"properties":{"id":718,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.3695992,35.5839464]},"properties":{"id":720,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1556208,33.8746426]},"properties":{"id":721,"date":"2015-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9440641,29.7890721]},"properties":{"id":716,"date":"2015-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2474043,32.9808199]},"properties":{"id":719,"date":"2015-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.239754,35.192662]},"properties":{"id":722,"date":"2015-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.399818,47.706302]},"properties":{"id":723,"date":"2015-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.0801706,39.8165885]},"properties":{"id":715,"date":"2015-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.1281327,34.1567127]},"properties":{"id":717,"date":"2015-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.789091,41.325885]},"properties":{"id":724,"date":"2015-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8429155,37.3545135]},"properties":{"id":727,"date":"2015-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7560165,33.3647109]},"properties":{"id":725,"date":"2015-08-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.5614669,48.2822476]},"properties":{"id":728,"date":"2015-08-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.1726693,31.5802124]},"properties":{"id":730,"date":"2015-08-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.3843953,31.8820929]},"properties":{"id":729,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2711137,37.8043637]},"properties":{"id":731,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3426031,34.0087173]},"properties":{"id":732,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0152381,33.7452239]},"properties":{"id":733,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.5134508,41.6324759]},"properties":{"id":735,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.1312705,32.7739332]},"properties":{"id":736,"date":"2015-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1606914,40.6304677]},"properties":{"id":738,"date":"2015-08-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.7213746,29.7896555]},"properties":{"id":739,"date":"2015-08-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9157632,38.8649747]},"properties":{"id":740,"date":"2015-08-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.446582,41.789977]},"properties":{"id":750,"date":"2015-08-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.8766773,42.0643109]},"properties":{"id":741,"date":"2015-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0272917,37.3951177]},"properties":{"id":742,"date":"2015-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.869951,35.702449]},"properties":{"id":743,"date":"2015-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7216672,39.184333]},"properties":{"id":744,"date":"2015-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8343472,37.2946755]},"properties":{"id":745,"date":"2015-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.1219223,30.0510888]},"properties":{"id":746,"date":"2015-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.313025,29.798948]},"properties":{"id":748,"date":"2015-08-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.827687,37.27313]},"properties":{"id":749,"date":"2015-08-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.256387,38.65799]},"properties":{"id":751,"date":"2015-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.264679,42.603892]},"properties":{"id":752,"date":"2015-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2022917,48.1171945]},"properties":{"id":753,"date":"2015-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.874526,35.51177]},"properties":{"id":754,"date":"2015-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.62694,39.552788]},"properties":{"id":881,"date":"2015-08-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.4931077,33.2065212]},"properties":{"id":755,"date":"2015-08-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.5932493,34.0191305]},"properties":{"id":756,"date":"2015-08-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.9244678,47.2863452]},"properties":{"id":758,"date":"2015-08-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.951399,39.610105]},"properties":{"id":760,"date":"2015-08-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.510901,36.007869]},"properties":{"id":761,"date":"2015-08-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.6289689,47.2629251]},"properties":{"id":762,"date":"2015-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.707312,42.722536]},"properties":{"id":763,"date":"2015-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0469562,35.4111788]},"properties":{"id":764,"date":"2015-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4127728,37.6732498]},"properties":{"id":765,"date":"2015-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.1702474,38.2654872]},"properties":{"id":766,"date":"2015-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8447439,30.3326945]},"properties":{"id":768,"date":"2015-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.5123874,34.2738264]},"properties":{"id":769,"date":"2015-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.138422,40.099276]},"properties":{"id":771,"date":"2015-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.928093,35.8960319]},"properties":{"id":772,"date":"2015-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.255132,36.168349]},"properties":{"id":767,"date":"2015-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.035169,35.605524]},"properties":{"id":770,"date":"2015-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.607983,39.95848]},"properties":{"id":773,"date":"2015-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.3023128,28.0614065]},"properties":{"id":774,"date":"2015-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1344777,33.465952]},"properties":{"id":775,"date":"2015-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.184719,25.89676]},"properties":{"id":779,"date":"2015-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.5936466,36.2674228]},"properties":{"id":776,"date":"2015-08-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.5804473,35.5174913]},"properties":{"id":777,"date":"2015-08-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9872081,40.6055128]},"properties":{"id":780,"date":"2015-08-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.753377,32.7705294]},"properties":{"id":781,"date":"2015-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.25075,37.811731]},"properties":{"id":782,"date":"2015-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.100023,32.792155]},"properties":{"id":783,"date":"2015-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4512204,34.2048165]},"properties":{"id":784,"date":"2015-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.651068,29.668598]},"properties":{"id":785,"date":"2015-08-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6495267,40.1097845]},"properties":{"id":786,"date":"2015-08-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.824723,40.907951]},"properties":{"id":788,"date":"2015-08-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.782756,32.525535]},"properties":{"id":793,"date":"2015-08-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.125455,36.220015]},"properties":{"id":787,"date":"2015-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.615925,29.553669]},"properties":{"id":789,"date":"2015-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6708972,41.8507347]},"properties":{"id":795,"date":"2015-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.7676753,35.9763023]},"properties":{"id":790,"date":"2015-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9596175,32.146699]},"properties":{"id":791,"date":"2015-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.028366,40.406711]},"properties":{"id":792,"date":"2015-08-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2220993,37.2693947]},"properties":{"id":794,"date":"2015-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4451699,41.3384121]},"properties":{"id":797,"date":"2015-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.418632,32.8274929]},"properties":{"id":798,"date":"2015-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.5432889,34.7198622]},"properties":{"id":799,"date":"2015-09-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7636466,36.7348173]},"properties":{"id":1409,"date":"2015-09-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.01442,43.714156]},"properties":{"id":800,"date":"2015-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.615001,38.546989]},"properties":{"id":801,"date":"2015-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.704011,41.186909]},"properties":{"id":802,"date":"2015-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.6338266,32.9169936]},"properties":{"id":803,"date":"2015-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.5176898,42.8665867]},"properties":{"id":804,"date":"2015-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.882454,35.983854]},"properties":{"id":805,"date":"2015-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.6467919,34.0338143]},"properties":{"id":806,"date":"2015-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.1245624,36.7898637]},"properties":{"id":807,"date":"2015-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.1245624,36.7898637]},"properties":{"id":808,"date":"2015-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2364132,25.769483]},"properties":{"id":809,"date":"2015-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.7270069,32.484794]},"properties":{"id":810,"date":"2015-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.1222135,32.7059904]},"properties":{"id":811,"date":"2015-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7005613,36.7887459]},"properties":{"id":813,"date":"2015-09-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-147.778687,64.8273825]},"properties":{"id":836,"date":"2015-09-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.054241,44.4976]},"properties":{"id":812,"date":"2015-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.541746,39.045498]},"properties":{"id":815,"date":"2015-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-147.5433627,64.8057856]},"properties":{"id":816,"date":"2015-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0290802,34.0785555]},"properties":{"id":879,"date":"2015-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.9918278,44.6682149]},"properties":{"id":817,"date":"2015-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.4400048,34.070435]},"properties":{"id":818,"date":"2015-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.2800142,39.8358379]},"properties":{"id":819,"date":"2015-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2722194,38.1341477]},"properties":{"id":820,"date":"2015-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.113869,33.954832]},"properties":{"id":823,"date":"2015-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.3932792,39.8344004]},"properties":{"id":824,"date":"2015-09-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.062357,39.957802]},"properties":{"id":831,"date":"2015-09-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.259913,33.177915]},"properties":{"id":822,"date":"2015-09-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.092313,35.9649659]},"properties":{"id":878,"date":"2015-09-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.926869,41.4686687]},"properties":{"id":821,"date":"2015-09-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.7697204,34.933409]},"properties":{"id":825,"date":"2015-09-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.305296,29.00309]},"properties":{"id":827,"date":"2015-09-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8797279,36.9685286]},"properties":{"id":828,"date":"2015-09-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0185716,34.8840547]},"properties":{"id":829,"date":"2015-09-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9527242,29.9303733]},"properties":{"id":830,"date":"2015-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4376413,34.2296357]},"properties":{"id":832,"date":"2015-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.45327,25.727061]},"properties":{"id":833,"date":"2015-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2666882,34.132316]},"properties":{"id":834,"date":"2015-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.44485,31.26787]},"properties":{"id":837,"date":"2015-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.8019089,44.305285]},"properties":{"id":835,"date":"2015-09-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.4257931,43.8864845]},"properties":{"id":838,"date":"2015-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.4190016,37.3861278]},"properties":{"id":839,"date":"2015-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3651854,34.210503]},"properties":{"id":843,"date":"2015-09-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.3877899,36.0770048]},"properties":{"id":844,"date":"2015-09-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.7488112,30.2844731]},"properties":{"id":842,"date":"2015-09-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.2116098,31.623234]},"properties":{"id":846,"date":"2015-09-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.8748617,38.4800873]},"properties":{"id":845,"date":"2015-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.7912754,39.5222009]},"properties":{"id":847,"date":"2015-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.7745358,32.8947435]},"properties":{"id":840,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.844042,36.62168]},"properties":{"id":848,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.844042,36.62168]},"properties":{"id":849,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.6317284,33.6571774]},"properties":{"id":850,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.424131,29.184353]},"properties":{"id":851,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8435717,28.0758228]},"properties":{"id":852,"date":"2015-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.2072134,36.2950169]},"properties":{"id":853,"date":"2015-09-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.495998,30.523184]},"properties":{"id":854,"date":"2015-09-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.389392,40.480593]},"properties":{"id":855,"date":"2015-09-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1398333,36.2308948]},"properties":{"id":856,"date":"2015-09-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8839903,40.7416036]},"properties":{"id":857,"date":"2015-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6371806,33.1776613]},"properties":{"id":858,"date":"2015-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8295609,39.4682262]},"properties":{"id":859,"date":"2015-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2709936,36.7177278]},"properties":{"id":861,"date":"2015-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.572597,39.745415]},"properties":{"id":862,"date":"2015-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.373965,25.583624]},"properties":{"id":860,"date":"2015-09-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.694087,38.703828]},"properties":{"id":863,"date":"2015-09-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.1342938,44.9225869]},"properties":{"id":865,"date":"2015-09-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.5090893,41.099081]},"properties":{"id":866,"date":"2015-09-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.716727,41.897401]},"properties":{"id":867,"date":"2015-09-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.5893524,34.4156043]},"properties":{"id":868,"date":"2015-09-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.1246143,30.5066783]},"properties":{"id":869,"date":"2015-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.3671499,32.9511739]},"properties":{"id":870,"date":"2015-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2592009,34.024898]},"properties":{"id":871,"date":"2015-09-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.2665106,34.960916]},"properties":{"id":874,"date":"2015-09-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.2778329,33.1666299]},"properties":{"id":875,"date":"2015-09-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.4185505,45.3468976]},"properties":{"id":872,"date":"2015-09-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0655806,32.5619118]},"properties":{"id":873,"date":"2015-09-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.2143885,44.072224]},"properties":{"id":877,"date":"2015-09-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2956791,45.8721887]},"properties":{"id":880,"date":"2015-09-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.213911,37.826305]},"properties":{"id":876,"date":"2015-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.233299,31.4672643]},"properties":{"id":888,"date":"2015-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.403089,34.096913]},"properties":{"id":889,"date":"2015-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8617951,45.4926848]},"properties":{"id":890,"date":"2015-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.882634,35.057285]},"properties":{"id":892,"date":"2015-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.46618,34.18665]},"properties":{"id":886,"date":"2015-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6197958,34.7889994]},"properties":{"id":887,"date":"2015-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7130299,41.867285]},"properties":{"id":891,"date":"2015-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.2019181,32.8173221]},"properties":{"id":893,"date":"2015-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2688016,40.5731813]},"properties":{"id":894,"date":"2015-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4362291,41.0424645]},"properties":{"id":895,"date":"2015-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4132333,35.4496605]},"properties":{"id":957,"date":"2015-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8942969,36.6032989]},"properties":{"id":896,"date":"2015-10-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1088159,26.6684248]},"properties":{"id":897,"date":"2015-10-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8797016,39.1950801]},"properties":{"id":898,"date":"2015-10-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.819205,33.47655]},"properties":{"id":910,"date":"2015-10-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.8891144,42.563704]},"properties":{"id":902,"date":"2015-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.4186956,41.2846072]},"properties":{"id":903,"date":"2015-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.6034298,34.4011253]},"properties":{"id":904,"date":"2015-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.2440919,43.4457028]},"properties":{"id":905,"date":"2015-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0934973,41.8049343]},"properties":{"id":906,"date":"2015-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2851502,34.1083205]},"properties":{"id":899,"date":"2015-10-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.229354,30.174006]},"properties":{"id":900,"date":"2015-10-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.307976,34.949107]},"properties":{"id":901,"date":"2015-10-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.4418384,31.8673862]},"properties":{"id":907,"date":"2015-10-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.4221523,34.5989654]},"properties":{"id":908,"date":"2015-10-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.4499026,31.5911445]},"properties":{"id":909,"date":"2015-10-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.760219,34.178151]},"properties":{"id":912,"date":"2015-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.4149583,39.4131104]},"properties":{"id":913,"date":"2015-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2347012,33.7177536]},"properties":{"id":914,"date":"2015-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.844431,36.613488]},"properties":{"id":915,"date":"2015-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.954979,31.433832]},"properties":{"id":918,"date":"2015-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.412514,25.506927]},"properties":{"id":916,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.8638711,39.9221981]},"properties":{"id":917,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2587402,36.1292017]},"properties":{"id":919,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.709879,41.421425]},"properties":{"id":920,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.187414,47.7071605]},"properties":{"id":921,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4147796,37.7787235]},"properties":{"id":922,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4648693,29.84873]},"properties":{"id":923,"date":"2015-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9160741,34.0312067]},"properties":{"id":924,"date":"2015-10-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.6594003,34.0329706]},"properties":{"id":926,"date":"2015-10-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.4103308,33.5107611]},"properties":{"id":927,"date":"2015-10-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.9201493,37.6665446]},"properties":{"id":929,"date":"2015-10-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.748652,39.973248]},"properties":{"id":930,"date":"2015-10-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0816796,26.7580015]},"properties":{"id":931,"date":"2015-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.768702,36.802866]},"properties":{"id":932,"date":"2015-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2811941,33.9347485]},"properties":{"id":934,"date":"2015-10-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.5778386,38.2269468]},"properties":{"id":935,"date":"2015-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1592326,32.7136279]},"properties":{"id":936,"date":"2015-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.1661766,33.250833]},"properties":{"id":937,"date":"2015-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.030814,30.408879]},"properties":{"id":938,"date":"2015-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.713337,41.970086]},"properties":{"id":939,"date":"2015-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.496064,32.665193]},"properties":{"id":940,"date":"2015-10-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.4618506,36.3508925]},"properties":{"id":941,"date":"2015-10-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.629604,42.8568457]},"properties":{"id":944,"date":"2015-10-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.745533,32.517631]},"properties":{"id":943,"date":"2015-10-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.336728,38.63901]},"properties":{"id":945,"date":"2015-10-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.859815,37.2844849]},"properties":{"id":946,"date":"2015-10-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0798961,41.7465693]},"properties":{"id":1283,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3397376,34.0187272]},"properties":{"id":947,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9428942,26.7386351]},"properties":{"id":948,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.4635704,33.8086877]},"properties":{"id":950,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.0442769,39.897504]},"properties":{"id":951,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.095052,42.582866]},"properties":{"id":952,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-151.2828787,60.2872877]},"properties":{"id":953,"date":"2015-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.601184,34.499742]},"properties":{"id":949,"date":"2015-10-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.3891908,39.4079855]},"properties":{"id":954,"date":"2015-10-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.0269651,38.9828366]},"properties":{"id":955,"date":"2015-10-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.515638,28.030209]},"properties":{"id":956,"date":"2015-10-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1107311,32.0609436]},"properties":{"id":960,"date":"2015-10-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.223519,32.7263838]},"properties":{"id":958,"date":"2015-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.4379454,34.039161]},"properties":{"id":959,"date":"2015-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.5660089,30.318145]},"properties":{"id":961,"date":"2015-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.998253,44.885208]},"properties":{"id":962,"date":"2015-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.8626865,39.9218687]},"properties":{"id":964,"date":"2015-10-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.5520839,35.550705]},"properties":{"id":965,"date":"2015-10-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.364892,36.669471]},"properties":{"id":966,"date":"2015-10-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.627707,32.810276]},"properties":{"id":967,"date":"2015-10-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4892273,29.975806]},"properties":{"id":968,"date":"2015-10-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.2505173,35.7975986]},"properties":{"id":971,"date":"2015-10-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8179054,38.8380159]},"properties":{"id":969,"date":"2015-10-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.3595098,32.6102684]},"properties":{"id":970,"date":"2015-10-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.3755576,44.8910749]},"properties":{"id":972,"date":"2015-11-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-124.1547186,40.8055537]},"properties":{"id":973,"date":"2015-11-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.407051,44.812591]},"properties":{"id":974,"date":"2015-11-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.968148,38.855158]},"properties":{"id":975,"date":"2015-11-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.050002,31.125122]},"properties":{"id":980,"date":"2015-11-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.256192,37.239271]},"properties":{"id":977,"date":"2015-11-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3557264,29.7333557]},"properties":{"id":978,"date":"2015-11-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.42512,37.365459]},"properties":{"id":979,"date":"2015-11-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.239198,32.79706]},"properties":{"id":981,"date":"2015-11-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.940546,39.634314]},"properties":{"id":983,"date":"2015-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.430642,36.409327]},"properties":{"id":984,"date":"2015-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.341376,38.538167]},"properties":{"id":985,"date":"2015-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0202074,32.9638215]},"properties":{"id":987,"date":"2015-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6976652,45.5303187]},"properties":{"id":986,"date":"2015-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.137291,36.037902]},"properties":{"id":988,"date":"2015-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0399077,34.9814938]},"properties":{"id":992,"date":"2015-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9790188,34.9488013]},"properties":{"id":989,"date":"2015-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.4533046,27.6027253]},"properties":{"id":991,"date":"2015-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.6752198,38.5917947]},"properties":{"id":993,"date":"2015-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.9142041,37.2548986]},"properties":{"id":994,"date":"2015-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.512026,34.211696]},"properties":{"id":1001,"date":"2015-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.878051,38.909308]},"properties":{"id":1161,"date":"2015-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8483384,39.7169773]},"properties":{"id":995,"date":"2015-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.832197,39.957864]},"properties":{"id":996,"date":"2015-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.77823,45.098058]},"properties":{"id":1013,"date":"2015-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6832523,35.0618824]},"properties":{"id":997,"date":"2015-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.420826,37.748111]},"properties":{"id":998,"date":"2015-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.7337019,33.5701589]},"properties":{"id":999,"date":"2015-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.677462,39.342767]},"properties":{"id":1000,"date":"2015-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.052948,37.3840005]},"properties":{"id":1002,"date":"2015-11-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.874002,35.957223]},"properties":{"id":1005,"date":"2015-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.5110577,34.0291769]},"properties":{"id":1007,"date":"2015-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3952506,32.1718481]},"properties":{"id":1008,"date":"2015-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3996569,34.0054]},"properties":{"id":1006,"date":"2015-11-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.165618,37.7536515]},"properties":{"id":1003,"date":"2015-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.9544807,35.2587649]},"properties":{"id":1004,"date":"2015-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.179143,40.027704]},"properties":{"id":1009,"date":"2015-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.3009749,44.991783]},"properties":{"id":1012,"date":"2015-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9899722,31.2582142]},"properties":{"id":1228,"date":"2015-11-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.89539,34.7792735]},"properties":{"id":1014,"date":"2015-11-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8387196,32.6377267]},"properties":{"id":1141,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.396938,25.575612]},"properties":{"id":1010,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.0517414,33.9764849]},"properties":{"id":1011,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.433987,29.904167]},"properties":{"id":1015,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.723064,31.431719]},"properties":{"id":1016,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.3572646,39.6108492]},"properties":{"id":1018,"date":"2015-11-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2518056,25.8969625]},"properties":{"id":1017,"date":"2015-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.7416374,42.0320742]},"properties":{"id":1019,"date":"2015-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.5548826,27.4475964]},"properties":{"id":1020,"date":"2015-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.3520872,27.4381155]},"properties":{"id":1021,"date":"2015-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.92376,38.894928]},"properties":{"id":1022,"date":"2015-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.741632,33.917814]},"properties":{"id":1024,"date":"2015-11-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.026532,34.898357]},"properties":{"id":1023,"date":"2015-11-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.511673,33.852949]},"properties":{"id":1026,"date":"2015-11-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.436372,34.062543]},"properties":{"id":1025,"date":"2015-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.795906,39.500704]},"properties":{"id":1027,"date":"2015-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.017234,39.710643]},"properties":{"id":1029,"date":"2015-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4020208,27.7255254]},"properties":{"id":1028,"date":"2015-11-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.0661237,39.9467276]},"properties":{"id":1030,"date":"2015-11-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2522427,45.0408064]},"properties":{"id":1031,"date":"2015-11-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1374765,36.1221685]},"properties":{"id":1032,"date":"2015-11-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.0974121,39.9032723]},"properties":{"id":1033,"date":"2015-11-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.337375,37.239698]},"properties":{"id":1034,"date":"2015-11-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.2928904,34.1161529]},"properties":{"id":1035,"date":"2015-11-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.277901,37.0498135]},"properties":{"id":1046,"date":"2015-11-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.62376,39.752164]},"properties":{"id":1104,"date":"2015-11-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.5011483,36.5316873]},"properties":{"id":1039,"date":"2015-11-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.545907,32.6422014]},"properties":{"id":1040,"date":"2015-11-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.570806,40.550018]},"properties":{"id":1036,"date":"2015-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5776791,39.7577785]},"properties":{"id":1037,"date":"2015-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.297957,33.593265]},"properties":{"id":1038,"date":"2015-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0211965,35.3752905]},"properties":{"id":1041,"date":"2015-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6225715,40.842459]},"properties":{"id":1042,"date":"2015-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.7763187,39.7036455]},"properties":{"id":1043,"date":"2015-11-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.3872812,33.7790024]},"properties":{"id":1044,"date":"2015-11-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.1631776,31.740291]},"properties":{"id":1227,"date":"2015-11-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.8174809,44.7887196]},"properties":{"id":1045,"date":"2015-12-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0817418,33.9171654]},"properties":{"id":1047,"date":"2015-12-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0369621,39.7548685]},"properties":{"id":1049,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2897652,34.1083449]},"properties":{"id":1050,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.24833,34.077474]},"properties":{"id":1051,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3970644,37.7208762]},"properties":{"id":1052,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.5851145,29.1852504]},"properties":{"id":1053,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.734326,32.255839]},"properties":{"id":1054,"date":"2015-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.0740255,41.0630102]},"properties":{"id":1055,"date":"2015-12-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6725434,33.4663419]},"properties":{"id":1056,"date":"2015-12-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0073821,40.430139]},"properties":{"id":1057,"date":"2015-12-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.9546194,32.807437]},"properties":{"id":1058,"date":"2015-12-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1414995,25.7880611]},"properties":{"id":1059,"date":"2015-12-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.4660559,44.1873941]},"properties":{"id":1060,"date":"2015-12-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2391548,38.8110761]},"properties":{"id":1061,"date":"2015-12-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2513215,33.6978244]},"properties":{"id":1062,"date":"2015-12-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3320708,47.6062095]},"properties":{"id":1063,"date":"2015-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.498244,41.540809]},"properties":{"id":1064,"date":"2015-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.7522123,41.3215616]},"properties":{"id":1065,"date":"2015-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87866,40.923942]},"properties":{"id":1067,"date":"2015-12-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.7350896,41.4862384]},"properties":{"id":1068,"date":"2015-12-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.224325,37.566894]},"properties":{"id":1069,"date":"2015-12-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3169136,36.3084275]},"properties":{"id":1070,"date":"2015-12-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.198245,39.741276]},"properties":{"id":1071,"date":"2015-12-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.284291,34.9172]},"properties":{"id":1072,"date":"2015-12-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.7909,36.674365]},"properties":{"id":1073,"date":"2015-12-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.971015,33.7294126]},"properties":{"id":1074,"date":"2015-12-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.8749467,32.3087647]},"properties":{"id":1075,"date":"2015-12-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.0281497,39.8272418]},"properties":{"id":1076,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.3074481,34.9893461]},"properties":{"id":1078,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2094314,33.9169225]},"properties":{"id":1079,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4878023,34.2331475]},"properties":{"id":1081,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.182374,40.9908982]},"properties":{"id":1082,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3220043,34.1083538]},"properties":{"id":1083,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8611109,39.726341]},"properties":{"id":1086,"date":"2015-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.1009712,32.7278031]},"properties":{"id":1077,"date":"2015-12-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.1330683,33.2148412]},"properties":{"id":1080,"date":"2015-12-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.762054,47.001786]},"properties":{"id":1084,"date":"2015-12-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0509246,39.7765512]},"properties":{"id":1089,"date":"2015-12-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9054522,30.0383558]},"properties":{"id":1085,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.371538,39.3044487]},"properties":{"id":1088,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.84488,35.8523947]},"properties":{"id":1090,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0574743,36.2435701]},"properties":{"id":1091,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1888972,33.8028977]},"properties":{"id":1092,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.5728961,36.995024]},"properties":{"id":1093,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.090233,36.229309]},"properties":{"id":1094,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1585449,37.894959]},"properties":{"id":1095,"date":"2015-12-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2023307,35.3802507]},"properties":{"id":1096,"date":"2015-12-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0508694,34.219294]},"properties":{"id":1097,"date":"2015-12-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3398,41.162549]},"properties":{"id":1098,"date":"2015-12-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.998503,37.638551]},"properties":{"id":1099,"date":"2015-12-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.4617193,41.6179863]},"properties":{"id":1100,"date":"2015-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.0917842,35.9082639]},"properties":{"id":1101,"date":"2015-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.5730665,36.4072485]},"properties":{"id":1102,"date":"2015-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.018972,37.392497]},"properties":{"id":1103,"date":"2015-12-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.306771,33.842661]},"properties":{"id":1105,"date":"2015-12-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.044555,34.571541]},"properties":{"id":1106,"date":"2015-12-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.855461,35.206558]},"properties":{"id":1107,"date":"2015-12-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9714992,33.7237872]},"properties":{"id":1108,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.7073045,33.7554431]},"properties":{"id":1109,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.864048,30.239415]},"properties":{"id":1110,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.380667,41.569025]},"properties":{"id":1111,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.189987,28.886907]},"properties":{"id":1112,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.884679,39.732843]},"properties":{"id":1113,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2904112,39.1889394]},"properties":{"id":1119,"date":"2015-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5460293,39.0949291]},"properties":{"id":1114,"date":"2015-12-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.213987,44.483233]},"properties":{"id":1115,"date":"2015-12-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.383566,28.4665]},"properties":{"id":1116,"date":"2015-12-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.5658348,35.0756535]},"properties":{"id":1117,"date":"2015-12-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.1944202,42.3510593]},"properties":{"id":1118,"date":"2015-12-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.7217475,32.1658515]},"properties":{"id":1120,"date":"2015-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.9718259,30.6940085]},"properties":{"id":1122,"date":"2015-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5782764,42.6732535]},"properties":{"id":1126,"date":"2015-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0056944,36.0693639]},"properties":{"id":1127,"date":"2015-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.8512352,35.3521284]},"properties":{"id":1129,"date":"2015-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.1555052,37.4479455]},"properties":{"id":1125,"date":"2015-12-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0616904,33.6800398]},"properties":{"id":1121,"date":"2015-12-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.743598,41.892567]},"properties":{"id":1123,"date":"2015-12-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.743598,41.892567]},"properties":{"id":1124,"date":"2015-12-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9395327,43.6196837]},"properties":{"id":1151,"date":"2015-12-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.6427963,30.8890188]},"properties":{"id":1128,"date":"2015-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9215375,33.3805423]},"properties":{"id":1132,"date":"2015-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.612994,29.848755]},"properties":{"id":1143,"date":"2015-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.5963979,36.72683]},"properties":{"id":1131,"date":"2015-12-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.0220827,37.0903238]},"properties":{"id":1133,"date":"2015-12-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0561782,34.0728633]},"properties":{"id":1134,"date":"2015-12-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8124118,36.7503276]},"properties":{"id":1135,"date":"2015-12-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.2163073,41.7985111]},"properties":{"id":1136,"date":"2015-12-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2722278,36.13299]},"properties":{"id":1137,"date":"2015-12-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1596288,32.7545261]},"properties":{"id":1139,"date":"2016-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.5731973,45.6558482]},"properties":{"id":1138,"date":"2016-01-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.4503797,32.2354051]},"properties":{"id":1195,"date":"2016-01-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.7113883,43.5466694]},"properties":{"id":1198,"date":"2016-01-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.8854467,35.2184263]},"properties":{"id":1140,"date":"2016-01-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2103364,30.4938174]},"properties":{"id":1142,"date":"2016-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.519672,35.512391]},"properties":{"id":1144,"date":"2016-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3320708,47.6062095]},"properties":{"id":1145,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.3366915,36.3202407]},"properties":{"id":1146,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.9134937,35.241966]},"properties":{"id":1147,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3680536,40.613264]},"properties":{"id":1148,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.947469,37.584059]},"properties":{"id":1149,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.3104621,39.9288119]},"properties":{"id":1160,"date":"2016-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8340547,42.4555769]},"properties":{"id":1150,"date":"2016-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.9183926,33.6833483]},"properties":{"id":1153,"date":"2016-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.1800219,37.78667]},"properties":{"id":1154,"date":"2016-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.4886167,42.6089996]},"properties":{"id":1157,"date":"2016-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.67653,34.1327969]},"properties":{"id":1158,"date":"2016-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6688723,46.1601021]},"properties":{"id":1156,"date":"2016-01-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.9586012,39.7176411]},"properties":{"id":1159,"date":"2016-01-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4494678,34.290397]},"properties":{"id":1162,"date":"2016-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5852806,39.1183448]},"properties":{"id":1163,"date":"2016-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0159159,39.754862]},"properties":{"id":1164,"date":"2016-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.0335489,40.398426]},"properties":{"id":1165,"date":"2016-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.8979625,61.1916115]},"properties":{"id":1166,"date":"2016-01-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.188148,36.856488]},"properties":{"id":1167,"date":"2016-01-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.5583746,35.8366814]},"properties":{"id":1183,"date":"2016-01-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.9541781,47.1966113]},"properties":{"id":1197,"date":"2016-01-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.1429333,37.8311576]},"properties":{"id":1168,"date":"2016-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4599348,34.4195637]},"properties":{"id":1169,"date":"2016-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.8549533,38.9139781]},"properties":{"id":1180,"date":"2016-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.2768825,42.4843891]},"properties":{"id":1196,"date":"2016-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3583453,34.1038296]},"properties":{"id":1172,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.6013006,29.4146026]},"properties":{"id":1173,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8259035,45.4462748]},"properties":{"id":1176,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9625269,32.7947731]},"properties":{"id":1177,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2684485,39.1909105]},"properties":{"id":1179,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.6769225,26.6828726]},"properties":{"id":1181,"date":"2016-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.24395,38.592544]},"properties":{"id":1170,"date":"2016-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.459862,34.230149]},"properties":{"id":1171,"date":"2016-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.036476,33.9502887]},"properties":{"id":1174,"date":"2016-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8125725,40.6751804]},"properties":{"id":1175,"date":"2016-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6846301,33.4146614]},"properties":{"id":1188,"date":"2016-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.926479,32.2217429]},"properties":{"id":1178,"date":"2016-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3001096,28.4685903]},"properties":{"id":1182,"date":"2016-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8590268,42.3607626]},"properties":{"id":1184,"date":"2016-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0975882,33.582099]},"properties":{"id":1186,"date":"2016-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0791739,37.5923511]},"properties":{"id":1189,"date":"2016-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6898692,32.6980409]},"properties":{"id":1185,"date":"2016-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1637245,33.836081]},"properties":{"id":1187,"date":"2016-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.1830763,31.0253924]},"properties":{"id":1190,"date":"2016-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.94849,30.5439542]},"properties":{"id":1191,"date":"2016-01-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.5706297,34.8703686]},"properties":{"id":1194,"date":"2016-01-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.1403189,30.0474332]},"properties":{"id":1202,"date":"2016-01-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.5824846,35.2873206]},"properties":{"id":1201,"date":"2016-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.6523269,32.8517989]},"properties":{"id":1200,"date":"2016-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8037276,39.4767711]},"properties":{"id":1199,"date":"2016-01-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0541032,43.5862606]},"properties":{"id":1203,"date":"2016-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.1687532,34.6590302]},"properties":{"id":1204,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0332842,35.1079171]},"properties":{"id":1205,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.9922642,35.6543928]},"properties":{"id":1206,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.5741957,34.3537852]},"properties":{"id":1207,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2312926,35.8156302]},"properties":{"id":1208,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.2082094,42.3217506]},"properties":{"id":1209,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.0964687,32.5719733]},"properties":{"id":1210,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.48448,33.9226828]},"properties":{"id":1212,"date":"2016-01-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4540829,47.233859]},"properties":{"id":1213,"date":"2016-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.0167064,41.2270079]},"properties":{"id":1214,"date":"2016-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6252489,45.409291]},"properties":{"id":1215,"date":"2016-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.9492584,42.4654777]},"properties":{"id":1216,"date":"2016-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.0064127,32.8347787]},"properties":{"id":1218,"date":"2016-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.066714,32.486181]},"properties":{"id":1226,"date":"2016-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.666495,41.761132]},"properties":{"id":1221,"date":"2016-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0321361,40.5920508]},"properties":{"id":1222,"date":"2016-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.269153,34.9847336]},"properties":{"id":1224,"date":"2016-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.4250713,39.1211752]},"properties":{"id":1230,"date":"2016-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.914344,35.296118]},"properties":{"id":1288,"date":"2016-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.8819942,40.4417355]},"properties":{"id":1220,"date":"2016-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.419449,26.4184624]},"properties":{"id":1223,"date":"2016-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.3909386,32.873273]},"properties":{"id":1225,"date":"2016-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0522222,37.5296238]},"properties":{"id":1229,"date":"2016-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9246651,38.8935346]},"properties":{"id":1219,"date":"2016-02-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.5834068,35.0937578]},"properties":{"id":1232,"date":"2016-02-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2913103,38.5959083]},"properties":{"id":1231,"date":"2016-02-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9525958,35.5323354]},"properties":{"id":1233,"date":"2016-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.0534837,29.1681388]},"properties":{"id":1234,"date":"2016-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.6256931,43.1875054]},"properties":{"id":1235,"date":"2016-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6586096,33.4368498]},"properties":{"id":1236,"date":"2016-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.4929019,29.5285142]},"properties":{"id":1237,"date":"2016-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.510934,38.9179445]},"properties":{"id":1238,"date":"2016-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.17868,41.729083]},"properties":{"id":1243,"date":"2016-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.4900669,31.7567792]},"properties":{"id":1250,"date":"2016-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-155.0655101,19.6955732]},"properties":{"id":1242,"date":"2016-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.0539119,30.5209376]},"properties":{"id":1246,"date":"2016-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.9042427,36.0305194]},"properties":{"id":1248,"date":"2016-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.9264162,45.9934724]},"properties":{"id":1249,"date":"2016-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2943457,34.063411]},"properties":{"id":1240,"date":"2016-02-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.0560979,39.9453717]},"properties":{"id":1239,"date":"2016-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.933681,34.949608]},"properties":{"id":1241,"date":"2016-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2791202,39.9946037]},"properties":{"id":1244,"date":"2016-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.4019118,39.8357755]},"properties":{"id":1245,"date":"2016-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.6672871,30.3962942]},"properties":{"id":1247,"date":"2016-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0869109,29.9390996]},"properties":{"id":1252,"date":"2016-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9340536,33.8432419]},"properties":{"id":1251,"date":"2016-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-155.0655101,19.6955732]},"properties":{"id":1256,"date":"2016-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.8591687,38.1927521]},"properties":{"id":1253,"date":"2016-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.3086744,39.4693787]},"properties":{"id":1254,"date":"2016-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-156.7383987,71.3012553]},"properties":{"id":1255,"date":"2016-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.1564427,45.0062926]},"properties":{"id":1257,"date":"2016-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.1822177,32.2824739]},"properties":{"id":1260,"date":"2016-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1925582,35.5606849]},"properties":{"id":1258,"date":"2016-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0797459,34.6820213]},"properties":{"id":1261,"date":"2016-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.8637656,40.0639957]},"properties":{"id":1263,"date":"2016-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.078382,42.3081465]},"properties":{"id":1262,"date":"2016-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4455386,32.7230006]},"properties":{"id":1273,"date":"2016-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.143792,43.069074]},"properties":{"id":1276,"date":"2016-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.133354,30.467697]},"properties":{"id":1266,"date":"2016-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.6995061,41.649079]},"properties":{"id":1268,"date":"2016-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.4649039,32.260059]},"properties":{"id":1270,"date":"2016-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.3959677,37.6731343]},"properties":{"id":1272,"date":"2016-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4574373,34.1959754]},"properties":{"id":1280,"date":"2016-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.499082,27.457218]},"properties":{"id":1269,"date":"2016-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1633746,34.0217108]},"properties":{"id":1271,"date":"2016-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.4262444,32.165763]},"properties":{"id":1282,"date":"2016-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.7411563,33.8718008]},"properties":{"id":1274,"date":"2016-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.2669382,41.1815672]},"properties":{"id":1275,"date":"2016-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.4685232,37.1183001]},"properties":{"id":1278,"date":"2016-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.249018,34.580045]},"properties":{"id":1279,"date":"2016-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.605141,39.155033]},"properties":{"id":1281,"date":"2016-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.45012,34.198929]},"properties":{"id":1284,"date":"2016-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.8542055,33.748017]},"properties":{"id":1285,"date":"2016-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.8498154,33.7480738]},"properties":{"id":1286,"date":"2016-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.5776532,32.944048]},"properties":{"id":1287,"date":"2016-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.963561,40.2672079]},"properties":{"id":1295,"date":"2016-02-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.2106876,36.3487196]},"properties":{"id":1297,"date":"2016-02-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9523201,33.8083824]},"properties":{"id":1291,"date":"2016-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.719762,35.079544]},"properties":{"id":1294,"date":"2016-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.559244,47.120297]},"properties":{"id":1296,"date":"2016-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.1900415,34.8117565]},"properties":{"id":1298,"date":"2016-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.30551,47.690561]},"properties":{"id":1289,"date":"2016-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1083092,33.4950176]},"properties":{"id":1290,"date":"2016-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3617385,33.9616106]},"properties":{"id":1292,"date":"2016-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3617385,33.9616106]},"properties":{"id":1293,"date":"2016-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.7781378,61.5850541]},"properties":{"id":1305,"date":"2016-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0346296,39.7657533]},"properties":{"id":1301,"date":"2016-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.0076905,35.3721912]},"properties":{"id":1302,"date":"2016-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.324115,26.23781]},"properties":{"id":1303,"date":"2016-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.011083,39.837376]},"properties":{"id":1304,"date":"2016-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.1754063,30.4364446]},"properties":{"id":1306,"date":"2016-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.1428079,37.7758097]},"properties":{"id":1309,"date":"2016-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3163561,29.7128912]},"properties":{"id":1310,"date":"2016-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1686527,33.5963782]},"properties":{"id":1317,"date":"2016-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.2883021,39.0005169]},"properties":{"id":1307,"date":"2016-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.475033,39.446133]},"properties":{"id":1313,"date":"2016-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2206346,33.46574]},"properties":{"id":1314,"date":"2016-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0998234,33.8874655]},"properties":{"id":1316,"date":"2016-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.3846995,42.7964607]},"properties":{"id":1318,"date":"2016-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6957789,40.3729976]},"properties":{"id":1312,"date":"2016-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.2999689,32.3668052]},"properties":{"id":1315,"date":"2016-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.2246073,39.4154714]},"properties":{"id":1319,"date":"2016-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4252262,38.1357058]},"properties":{"id":1320,"date":"2016-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.9949896,37.2407326]},"properties":{"id":1322,"date":"2016-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.1555329,44.0674667]},"properties":{"id":1324,"date":"2016-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.7020707,29.4982232]},"properties":{"id":1325,"date":"2016-02-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.2544223,33.8370433]},"properties":{"id":1321,"date":"2016-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.2310149,44.0805434]},"properties":{"id":1323,"date":"2016-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.6329557,35.7657357]},"properties":{"id":1327,"date":"2016-02-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.6407998,28.0279374]},"properties":{"id":1328,"date":"2016-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.0910811,32.8308423]},"properties":{"id":1329,"date":"2016-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.6458818,30.4473634]},"properties":{"id":1330,"date":"2016-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.3329978,39.492107]},"properties":{"id":1331,"date":"2016-03-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.9219698,40.3267407]},"properties":{"id":1341,"date":"2016-03-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7771923,33.3298711]},"properties":{"id":1335,"date":"2016-03-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.6910292,34.659264]},"properties":{"id":1338,"date":"2016-03-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.1082256,37.1899688]},"properties":{"id":1342,"date":"2016-03-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.715136,42.935915]},"properties":{"id":1334,"date":"2016-03-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.1428899,30.0585652]},"properties":{"id":1336,"date":"2016-03-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.513266,32.86397]},"properties":{"id":1332,"date":"2016-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.7427999,46.8089534]},"properties":{"id":1333,"date":"2016-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1755234,33.9406938]},"properties":{"id":1340,"date":"2016-03-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.6228607,43.2376877]},"properties":{"id":1339,"date":"2016-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.8783621,37.3236301]},"properties":{"id":1343,"date":"2016-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.6823859,39.055423]},"properties":{"id":1344,"date":"2016-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.5006904,45.7832856]},"properties":{"id":1345,"date":"2016-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.277226,32.4218459]},"properties":{"id":1348,"date":"2016-03-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.4624204,28.0836467]},"properties":{"id":1347,"date":"2016-03-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.8853078,30.3960318]},"properties":{"id":1349,"date":"2016-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8624577,39.6778416]},"properties":{"id":1351,"date":"2016-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2027059,33.8776896]},"properties":{"id":1352,"date":"2016-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.374062,31.88807]},"properties":{"id":1353,"date":"2016-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.8352628,37.9452861]},"properties":{"id":1354,"date":"2016-03-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.2436771,36.9296513]},"properties":{"id":1350,"date":"2016-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6197416,37.8152985]},"properties":{"id":1355,"date":"2016-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.9557681,40.1453942]},"properties":{"id":1375,"date":"2016-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0276806,37.5400141]},"properties":{"id":1515,"date":"2016-03-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3366259,29.7938739]},"properties":{"id":1357,"date":"2016-03-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4875028,29.9939251]},"properties":{"id":1365,"date":"2016-03-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.809211,36.10772]},"properties":{"id":1476,"date":"2016-03-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.247159,34.146325]},"properties":{"id":1356,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.8557398,32.9400024]},"properties":{"id":1358,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2560299,35.7972998]},"properties":{"id":1359,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.6113501,33.9245454]},"properties":{"id":1360,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.3680192,39.8449881]},"properties":{"id":1361,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.574207,45.681534]},"properties":{"id":1362,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8752434,38.9181535]},"properties":{"id":1379,"date":"2016-03-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7181233,41.8710302]},"properties":{"id":1364,"date":"2016-03-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.8911907,36.8523734]},"properties":{"id":1366,"date":"2016-03-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.5095105,37.9929525]},"properties":{"id":1369,"date":"2016-03-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.3878409,32.7297114]},"properties":{"id":1371,"date":"2016-03-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2411736,33.9811937]},"properties":{"id":1367,"date":"2016-03-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.4835662,29.3629003]},"properties":{"id":1368,"date":"2016-03-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.1875065,34.9054732]},"properties":{"id":1374,"date":"2016-03-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.3181481,44.7758782]},"properties":{"id":1370,"date":"2016-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.499128,27.888896]},"properties":{"id":1372,"date":"2016-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4241775,29.9895175]},"properties":{"id":1376,"date":"2016-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4241775,29.9895175]},"properties":{"id":1377,"date":"2016-03-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.6597663,37.8818312]},"properties":{"id":1386,"date":"2016-03-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1549771,43.5026001]},"properties":{"id":1401,"date":"2016-03-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.1912023,36.9266438]},"properties":{"id":1382,"date":"2016-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0595535,30.4260685]},"properties":{"id":1387,"date":"2016-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7934329,41.9920104]},"properties":{"id":1388,"date":"2016-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.408102,37.144677]},"properties":{"id":1392,"date":"2016-03-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.2888827,37.2911428]},"properties":{"id":1380,"date":"2016-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.967619,40.070744]},"properties":{"id":1391,"date":"2016-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.13327,41.0496397]},"properties":{"id":1393,"date":"2016-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.4050733,29.6412729]},"properties":{"id":1394,"date":"2016-03-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.2159081,44.4769147]},"properties":{"id":1395,"date":"2016-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.5278929,41.1135038]},"properties":{"id":1396,"date":"2016-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.547168,40.279356]},"properties":{"id":1397,"date":"2016-03-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.4218831,25.5967062]},"properties":{"id":1398,"date":"2016-03-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.481184,38.2806442]},"properties":{"id":1399,"date":"2016-03-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.9840744,39.7892022]},"properties":{"id":1400,"date":"2016-03-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7906315,36.770475]},"properties":{"id":1402,"date":"2016-03-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9498488,35.2282173]},"properties":{"id":1403,"date":"2016-03-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.0334924,42.2719767]},"properties":{"id":1404,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.3690642,41.8905226]},"properties":{"id":1405,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1738387,34.060435]},"properties":{"id":1406,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.5641459,38.275292]},"properties":{"id":1407,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6169756,35.0857279]},"properties":{"id":1408,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.2715427,39.0372594]},"properties":{"id":1415,"date":"2016-03-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.3168795,42.6317613]},"properties":{"id":1412,"date":"2016-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.0990223,37.2778886]},"properties":{"id":1413,"date":"2016-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.882302,33.7112497]},"properties":{"id":1414,"date":"2016-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.4262272,28.0543391]},"properties":{"id":1416,"date":"2016-03-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.3846289,38.988896]},"properties":{"id":1410,"date":"2016-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.6973571,35.0241873]},"properties":{"id":1411,"date":"2016-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.5544644,33.3850317]},"properties":{"id":1417,"date":"2016-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.6336414,35.331015]},"properties":{"id":1418,"date":"2016-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.1610438,30.2329914]},"properties":{"id":1419,"date":"2016-03-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6545142,38.9760297]},"properties":{"id":1420,"date":"2016-03-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.4143178,34.7832967]},"properties":{"id":1421,"date":"2016-03-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.7102493,46.5330129]},"properties":{"id":1422,"date":"2016-03-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1393004,34.015047]},"properties":{"id":1423,"date":"2016-03-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2248179,33.523427]},"properties":{"id":1436,"date":"2016-03-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.963137,33.2820236]},"properties":{"id":1514,"date":"2016-03-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.2960023,36.3281937]},"properties":{"id":1846,"date":"2016-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6104761,39.3090543]},"properties":{"id":1424,"date":"2016-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6104761,39.3090543]},"properties":{"id":1425,"date":"2016-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4109144,37.5337209]},"properties":{"id":1426,"date":"2016-03-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.6693606,29.8726008]},"properties":{"id":1427,"date":"2016-04-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.3275094,31.8654485]},"properties":{"id":1435,"date":"2016-04-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.2348848,39.8241116]},"properties":{"id":1432,"date":"2016-04-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.620118,29.7356385]},"properties":{"id":1845,"date":"2016-04-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.684578,32.3731182]},"properties":{"id":1430,"date":"2016-04-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.7510993,30.2700601]},"properties":{"id":1431,"date":"2016-04-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.5457554,44.8238702]},"properties":{"id":1433,"date":"2016-04-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2441632,44.9623822]},"properties":{"id":1428,"date":"2016-04-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.62698,42.133173]},"properties":{"id":1437,"date":"2016-04-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.1167549,39.7967697]},"properties":{"id":1438,"date":"2016-04-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.6699913,38.8765984]},"properties":{"id":1439,"date":"2016-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.4358944,36.3702172]},"properties":{"id":1441,"date":"2016-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4528976,34.3076508]},"properties":{"id":1442,"date":"2016-04-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4161416,37.7620219]},"properties":{"id":1443,"date":"2016-04-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9600457,41.2122454]},"properties":{"id":1445,"date":"2016-04-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.4402336,38.48158]},"properties":{"id":1444,"date":"2016-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.6070993,42.8974434]},"properties":{"id":1448,"date":"2016-04-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.1434149,40.0397245]},"properties":{"id":1453,"date":"2016-04-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.9618005,37.6485577]},"properties":{"id":1449,"date":"2016-04-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.936392,42.775573]},"properties":{"id":1451,"date":"2016-04-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2256681,34.0490485]},"properties":{"id":1452,"date":"2016-04-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1541185,36.1484123]},"properties":{"id":1454,"date":"2016-04-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7109419,41.8674429]},"properties":{"id":1455,"date":"2016-04-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.9902238,39.736878]},"properties":{"id":1456,"date":"2016-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.9349313,37.9574638]},"properties":{"id":1457,"date":"2016-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.80766,30.8740806]},"properties":{"id":1458,"date":"2016-04-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2948176,38.024229]},"properties":{"id":1459,"date":"2016-04-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.6393505,30.7182238]},"properties":{"id":1460,"date":"2016-04-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.4932042,36.0348056]},"properties":{"id":1462,"date":"2016-04-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.5743332,38.3767002]},"properties":{"id":1463,"date":"2016-04-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.332598,33.6694329]},"properties":{"id":1465,"date":"2016-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.6032935,34.6044978]},"properties":{"id":1469,"date":"2016-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.3385001,40.1929468]},"properties":{"id":1471,"date":"2016-04-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.1438812,42.4732216]},"properties":{"id":1473,"date":"2016-04-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2426028,39.7421183]},"properties":{"id":1464,"date":"2016-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.553939,31.872423]},"properties":{"id":1466,"date":"2016-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.0215015,39.4808778]},"properties":{"id":1467,"date":"2016-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8054241,40.6790399]},"properties":{"id":1470,"date":"2016-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.6831073,42.7396273]},"properties":{"id":1472,"date":"2016-04-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9006243,39.0038238]},"properties":{"id":1475,"date":"2016-04-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5644528,33.7980172]},"properties":{"id":1479,"date":"2016-04-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.935756,35.245681]},"properties":{"id":1474,"date":"2016-04-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2194797,38.6540079]},"properties":{"id":1477,"date":"2016-04-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.8494742,34.17204]},"properties":{"id":1478,"date":"2016-04-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.4836483,25.4930974]},"properties":{"id":1480,"date":"2016-04-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.7950441,35.0174328]},"properties":{"id":1481,"date":"2016-04-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.0418946,42.4028949]},"properties":{"id":1482,"date":"2016-04-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8368958,30.2207339]},"properties":{"id":1484,"date":"2016-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1829659,42.589216]},"properties":{"id":1485,"date":"2016-04-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.3437382,27.4566181]},"properties":{"id":1483,"date":"2016-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8411985,33.2537657]},"properties":{"id":1486,"date":"2016-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.1523353,45.140245]},"properties":{"id":1487,"date":"2016-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.27761,36.859553]},"properties":{"id":1488,"date":"2016-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.152658,36.098472]},"properties":{"id":1527,"date":"2016-04-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.417936,35.284624]},"properties":{"id":1489,"date":"2016-04-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.081614,39.7239094]},"properties":{"id":1490,"date":"2016-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.233319,36.816833]},"properties":{"id":1491,"date":"2016-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.5267234,35.1456334]},"properties":{"id":1492,"date":"2016-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8226262,29.6489801]},"properties":{"id":1493,"date":"2016-04-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8720169,40.6780612]},"properties":{"id":1840,"date":"2016-04-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2684994,33.8536287]},"properties":{"id":1494,"date":"2016-04-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.043952,39.828783]},"properties":{"id":1495,"date":"2016-04-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2060853,25.775735]},"properties":{"id":1498,"date":"2016-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.3163044,43.5532428]},"properties":{"id":1499,"date":"2016-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.4120315,47.6555603]},"properties":{"id":1500,"date":"2016-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.1859102,29.8430528]},"properties":{"id":1501,"date":"2016-04-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.1848103,32.2987573]},"properties":{"id":1506,"date":"2016-04-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.620051,44.979107]},"properties":{"id":1504,"date":"2016-04-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.654923,40.114955]},"properties":{"id":1505,"date":"2016-04-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.3873431,33.0314508]},"properties":{"id":1507,"date":"2016-04-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4022727,28.5357058]},"properties":{"id":1502,"date":"2016-05-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.1280702,35.8513945]},"properties":{"id":1503,"date":"2016-05-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.33559,34.9015446]},"properties":{"id":1842,"date":"2016-05-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.2638562,36.3426596]},"properties":{"id":1510,"date":"2016-05-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.2498339,39.9883724]},"properties":{"id":1509,"date":"2016-05-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3607765,47.4937811]},"properties":{"id":1511,"date":"2016-05-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.090189,33.477817]},"properties":{"id":1512,"date":"2016-05-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.8756729,42.9279591]},"properties":{"id":1513,"date":"2016-05-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0495915,29.9142104]},"properties":{"id":1516,"date":"2016-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0058937,43.1340836]},"properties":{"id":1517,"date":"2016-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4418332,28.5507262]},"properties":{"id":1518,"date":"2016-05-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.536788,40.409852]},"properties":{"id":1519,"date":"2016-05-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0650894,48.048004]},"properties":{"id":1523,"date":"2016-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.6630476,27.7495758]},"properties":{"id":1525,"date":"2016-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.0143427,46.6856865]},"properties":{"id":1529,"date":"2016-05-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1910731,33.7953015]},"properties":{"id":1522,"date":"2016-05-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.417906,31.928917]},"properties":{"id":1844,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.0963098,44.9639717]},"properties":{"id":1520,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.8443671,30.4584812]},"properties":{"id":1524,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7262609,41.8040499]},"properties":{"id":1526,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.5157535,27.6648274]},"properties":{"id":1528,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.640011,31.6222914]},"properties":{"id":1531,"date":"2016-05-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.050878,41.863238]},"properties":{"id":1532,"date":"2016-05-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0558267,32.705065]},"properties":{"id":1533,"date":"2016-05-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6906989,40.3845809]},"properties":{"id":1534,"date":"2016-05-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6655688,34.8611959]},"properties":{"id":1535,"date":"2016-05-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2019535,34.0261949]},"properties":{"id":1539,"date":"2016-05-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.6525939,30.331442]},"properties":{"id":1536,"date":"2016-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1387937,33.4659466]},"properties":{"id":1537,"date":"2016-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1341757,28.8998427]},"properties":{"id":1538,"date":"2016-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.1905807,33.5914938]},"properties":{"id":1540,"date":"2016-05-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.400355,37.5470719]},"properties":{"id":1541,"date":"2016-05-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.4486579,33.580288]},"properties":{"id":1542,"date":"2016-05-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.4803506,41.9606693]},"properties":{"id":1544,"date":"2016-05-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9865631,40.7616616]},"properties":{"id":1543,"date":"2016-05-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.1814795,38.1989458]},"properties":{"id":1545,"date":"2016-05-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9784261,33.3777365]},"properties":{"id":1546,"date":"2016-05-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1237902,36.198608]},"properties":{"id":1547,"date":"2016-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4309488,37.7323593]},"properties":{"id":1548,"date":"2016-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2762639,38.674054]},"properties":{"id":1549,"date":"2016-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.1013964,37.3352367]},"properties":{"id":1550,"date":"2016-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2304707,25.8440512]},"properties":{"id":1551,"date":"2016-05-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.1725607,41.2920439]},"properties":{"id":1559,"date":"2016-05-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6145247,45.351393]},"properties":{"id":1553,"date":"2016-05-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.124797,25.981389]},"properties":{"id":1554,"date":"2016-05-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8529304,30.2337939]},"properties":{"id":1562,"date":"2016-05-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.2820854,40.0273005]},"properties":{"id":1563,"date":"2016-05-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6552844,35.1977995]},"properties":{"id":1560,"date":"2016-05-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4690633,45.5066362]},"properties":{"id":1561,"date":"2016-05-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.5096836,35.0694603]},"properties":{"id":1567,"date":"2016-05-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.5300845,35.4664734]},"properties":{"id":1565,"date":"2016-05-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2409532,25.9338346]},"properties":{"id":1566,"date":"2016-05-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.011915,44.962617]},"properties":{"id":1568,"date":"2016-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.5589829,41.5863379]},"properties":{"id":1569,"date":"2016-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.6500879,29.4178217]},"properties":{"id":1570,"date":"2016-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.097188,38.6323543]},"properties":{"id":1571,"date":"2016-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.9414543,30.707898]},"properties":{"id":1581,"date":"2016-05-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.1600547,39.72732]},"properties":{"id":1580,"date":"2016-05-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.0187907,33.6070215]},"properties":{"id":1576,"date":"2016-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.601025,35.128322]},"properties":{"id":1582,"date":"2016-05-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.573155,29.77435]},"properties":{"id":1573,"date":"2016-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3004632,28.9775904]},"properties":{"id":1577,"date":"2016-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.3228656,34.998283]},"properties":{"id":1578,"date":"2016-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.9069847,36.4665269]},"properties":{"id":1579,"date":"2016-05-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.7764323,45.3891143]},"properties":{"id":1574,"date":"2016-05-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9011857,32.2398059]},"properties":{"id":1575,"date":"2016-05-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.342104,43.967656]},"properties":{"id":1585,"date":"2016-05-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2206346,33.46574]},"properties":{"id":1584,"date":"2016-06-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.20142,37.604118]},"properties":{"id":1587,"date":"2016-06-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.2820727,36.8482438]},"properties":{"id":1588,"date":"2016-06-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7568762,35.2906087]},"properties":{"id":1589,"date":"2016-06-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.4394444,61.5813889]},"properties":{"id":1590,"date":"2016-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.138614,33.8630083]},"properties":{"id":1591,"date":"2016-06-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6344708,41.7354186]},"properties":{"id":1592,"date":"2016-06-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.4007841,40.1734021]},"properties":{"id":1598,"date":"2016-06-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9906464,26.556355]},"properties":{"id":1593,"date":"2016-06-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.9771473,40.0091729]},"properties":{"id":1595,"date":"2016-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-155.0655771,19.6848905]},"properties":{"id":1597,"date":"2016-06-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3836162,35.9465885]},"properties":{"id":1596,"date":"2016-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.8742152,37.49316]},"properties":{"id":1599,"date":"2016-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.6568942,37.4315734]},"properties":{"id":1601,"date":"2016-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.189633,33.5930657]},"properties":{"id":1604,"date":"2016-06-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5475427,39.0624427]},"properties":{"id":1602,"date":"2016-06-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.7877009,33.5146936]},"properties":{"id":1603,"date":"2016-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.708418,39.971617]},"properties":{"id":1605,"date":"2016-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.9863068,29.9545084]},"properties":{"id":1606,"date":"2016-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6876933,46.6086225]},"properties":{"id":1607,"date":"2016-06-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3329883,33.988995]},"properties":{"id":1838,"date":"2016-06-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.935051,35.9660779]},"properties":{"id":1611,"date":"2016-06-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6452255,38.2948926]},"properties":{"id":1613,"date":"2016-06-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.5985259,46.5670179]},"properties":{"id":1614,"date":"2016-06-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.193266,33.99442]},"properties":{"id":1616,"date":"2016-06-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3767987,28.5196046]},"properties":{"id":1608,"date":"2016-06-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0014837,40.3140118]},"properties":{"id":1609,"date":"2016-06-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.8209769,37.0948707]},"properties":{"id":1617,"date":"2016-06-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9542946,42.8017864]},"properties":{"id":1619,"date":"2016-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.09595,30.706347]},"properties":{"id":1620,"date":"2016-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.1991445,41.6558407]},"properties":{"id":1621,"date":"2016-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.6614861,45.6387281]},"properties":{"id":1623,"date":"2016-06-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2886635,43.6470361]},"properties":{"id":1618,"date":"2016-06-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.9535558,38.9991748]},"properties":{"id":1622,"date":"2016-06-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.8628157,35.1701263]},"properties":{"id":1624,"date":"2016-06-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9328114,36.1771225]},"properties":{"id":1626,"date":"2016-06-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.545812,46.006577]},"properties":{"id":1628,"date":"2016-06-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0540213,39.8517585]},"properties":{"id":1629,"date":"2016-06-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.6890282,41.6395282]},"properties":{"id":1630,"date":"2016-06-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.6272623,34.7357907]},"properties":{"id":1633,"date":"2016-06-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.3326813,38.633566]},"properties":{"id":1634,"date":"2016-06-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.7196663,34.2446438]},"properties":{"id":1637,"date":"2016-06-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.866212,40.817126]},"properties":{"id":1631,"date":"2016-06-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.625483,30.42065]},"properties":{"id":1635,"date":"2016-06-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.0823224,32.2826553]},"properties":{"id":1632,"date":"2016-06-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.3237571,34.4937449]},"properties":{"id":1638,"date":"2016-06-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.916933,42.9219467]},"properties":{"id":1640,"date":"2016-06-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.3053197,42.8501061]},"properties":{"id":1642,"date":"2016-06-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.472989,35.428688]},"properties":{"id":1643,"date":"2016-06-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.7670096,38.7952052]},"properties":{"id":1641,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.7213507,33.5340103]},"properties":{"id":1644,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2646628,26.6630163]},"properties":{"id":1645,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0960962,34.962475]},"properties":{"id":1646,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.370077,33.810982]},"properties":{"id":1647,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.1983865,29.916769]},"properties":{"id":1651,"date":"2016-06-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0376019,43.1012738]},"properties":{"id":1648,"date":"2016-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.0080442,38.5471934]},"properties":{"id":1649,"date":"2016-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.0642154,32.8728772]},"properties":{"id":1662,"date":"2016-06-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1636266,40.9114951]},"properties":{"id":1650,"date":"2016-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.234579,36.041263]},"properties":{"id":1657,"date":"2016-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.8998969,29.6931119]},"properties":{"id":1658,"date":"2016-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4925483,35.338144]},"properties":{"id":1660,"date":"2016-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.3469269,27.887825]},"properties":{"id":1728,"date":"2016-06-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.6731028,36.7794389]},"properties":{"id":1653,"date":"2016-06-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.7098537,27.8599255]},"properties":{"id":1654,"date":"2016-06-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.5624932,33.4283379]},"properties":{"id":1664,"date":"2016-06-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.325935,42.148068]},"properties":{"id":1655,"date":"2016-06-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.083589,41.692868]},"properties":{"id":1656,"date":"2016-06-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.5811052,41.6224049]},"properties":{"id":1663,"date":"2016-06-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.8962724,42.0583376]},"properties":{"id":1665,"date":"2016-06-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.0056743,38.943109]},"properties":{"id":1666,"date":"2016-06-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.3878172,35.0344872]},"properties":{"id":1668,"date":"2016-06-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.4657542,39.0090017]},"properties":{"id":1669,"date":"2016-06-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.7831104,33.5422475]},"properties":{"id":1670,"date":"2016-06-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-157.8424265,21.3025607]},"properties":{"id":1671,"date":"2016-06-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.8888138,36.8664765]},"properties":{"id":1672,"date":"2016-06-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.0992392,32.4462802]},"properties":{"id":1673,"date":"2016-06-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.3722731,40.6257786]},"properties":{"id":1674,"date":"2016-06-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.3558899,43.0710963]},"properties":{"id":1675,"date":"2016-06-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.9648154,39.9294732]},"properties":{"id":1676,"date":"2016-06-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.5943388,39.0897928]},"properties":{"id":1677,"date":"2016-06-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.3813504,42.7566312]},"properties":{"id":1678,"date":"2016-06-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.2160235,35.1784371]},"properties":{"id":1686,"date":"2016-07-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.821207,34.178695]},"properties":{"id":1687,"date":"2016-07-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.1535288,43.3309553]},"properties":{"id":1688,"date":"2016-07-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.2111079,36.5572583]},"properties":{"id":1689,"date":"2016-07-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.8178262,30.0223653]},"properties":{"id":1684,"date":"2016-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8138027,39.5296329]},"properties":{"id":1690,"date":"2016-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9735538,33.8700041]},"properties":{"id":1691,"date":"2016-07-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0557343,32.9569505]},"properties":{"id":1679,"date":"2016-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.807255,37.3678448]},"properties":{"id":1681,"date":"2016-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9316885,38.9085387]},"properties":{"id":1683,"date":"2016-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.4231137,32.475279]},"properties":{"id":1685,"date":"2016-07-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.1397738,30.4678717]},"properties":{"id":1680,"date":"2016-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.1123423,44.9312719]},"properties":{"id":1692,"date":"2016-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.6674907,32.7130667]},"properties":{"id":1695,"date":"2016-07-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.1701691,44.991748]},"properties":{"id":1694,"date":"2016-07-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1879507,33.9708943]},"properties":{"id":1697,"date":"2016-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7029194,36.8252277]},"properties":{"id":1698,"date":"2016-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.0326,32.4111]},"properties":{"id":1699,"date":"2016-07-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9719133,32.2481373]},"properties":{"id":1700,"date":"2016-07-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.731121,34.036268]},"properties":{"id":1701,"date":"2016-07-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3534921,29.6894101]},"properties":{"id":1702,"date":"2016-07-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.4610796,38.6052826]},"properties":{"id":1703,"date":"2016-07-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.3473829,42.2393428]},"properties":{"id":1705,"date":"2016-07-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9840847,40.5905519]},"properties":{"id":1706,"date":"2016-07-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.8139829,61.2184144]},"properties":{"id":1707,"date":"2016-07-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.6342656,35.1936898]},"properties":{"id":1708,"date":"2016-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.4279813,41.428114]},"properties":{"id":1709,"date":"2016-07-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6536278,39.3017741]},"properties":{"id":1710,"date":"2016-07-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2766393,34.9218576]},"properties":{"id":1713,"date":"2016-07-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8027926,30.0378429]},"properties":{"id":1716,"date":"2016-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.3602146,39.570072]},"properties":{"id":1720,"date":"2016-07-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7230839,43.7320619]},"properties":{"id":1712,"date":"2016-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.949753,36.1747159]},"properties":{"id":1714,"date":"2016-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9384563,40.7176749]},"properties":{"id":1717,"date":"2016-07-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.0185438,36.0999554]},"properties":{"id":1721,"date":"2016-07-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4376343,34.935337]},"properties":{"id":1722,"date":"2016-07-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6195926,41.8578447]},"properties":{"id":1723,"date":"2016-07-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.5713868,29.4125445]},"properties":{"id":1836,"date":"2016-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.916632,43.064079]},"properties":{"id":1726,"date":"2016-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.6893559,34.0334946]},"properties":{"id":1727,"date":"2016-07-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0480066,33.7291452]},"properties":{"id":1729,"date":"2016-07-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.7588515,35.5204888]},"properties":{"id":1730,"date":"2016-07-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.112893,39.7646809]},"properties":{"id":1731,"date":"2016-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2485162,33.9348088]},"properties":{"id":1732,"date":"2016-07-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.5923836,45.170654]},"properties":{"id":1733,"date":"2016-07-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.412656,32.8297]},"properties":{"id":1734,"date":"2016-07-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.1315935,35.2654782]},"properties":{"id":1835,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.1747223,29.9988196]},"properties":{"id":1735,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.929734,33.366866]},"properties":{"id":1736,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8827522,33.5824635]},"properties":{"id":1739,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3138317,34.1318523]},"properties":{"id":1740,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-107.7991857,48.4613189]},"properties":{"id":1746,"date":"2016-07-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7454859,39.5506931]},"properties":{"id":1737,"date":"2016-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2686376,33.6973336]},"properties":{"id":1741,"date":"2016-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9685252,32.1778027]},"properties":{"id":1743,"date":"2016-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2462313,33.9100416]},"properties":{"id":1744,"date":"2016-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1933479,34.0527617]},"properties":{"id":1745,"date":"2016-07-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.512357,36.516222]},"properties":{"id":1834,"date":"2016-07-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.1456368,37.4915744]},"properties":{"id":1748,"date":"2016-07-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.4238437,46.4469781]},"properties":{"id":1749,"date":"2016-07-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.29312,40.043209]},"properties":{"id":1752,"date":"2016-07-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.315731,34.1113969]},"properties":{"id":2148,"date":"2016-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8136038,39.3697181]},"properties":{"id":1750,"date":"2016-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2000987,33.8615392]},"properties":{"id":1751,"date":"2016-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4435782,38.3071283]},"properties":{"id":1753,"date":"2016-08-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.7625256,33.8615163]},"properties":{"id":1754,"date":"2016-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3745607,45.8894284]},"properties":{"id":1757,"date":"2016-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.5886646,28.0344621]},"properties":{"id":1758,"date":"2016-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.4988236,42.9706146]},"properties":{"id":1759,"date":"2016-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.6176265,34.490674]},"properties":{"id":1760,"date":"2016-08-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0237495,41.1210493]},"properties":{"id":1755,"date":"2016-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.2772258,42.4215026]},"properties":{"id":1756,"date":"2016-08-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.5698538,38.9095803]},"properties":{"id":1762,"date":"2016-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.4909974,33.6444285]},"properties":{"id":1767,"date":"2016-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9819559,32.8659729]},"properties":{"id":1769,"date":"2016-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.8204028,43.482943]},"properties":{"id":1770,"date":"2016-08-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.8986561,40.2818971]},"properties":{"id":1764,"date":"2016-08-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2622843,34.2026198]},"properties":{"id":1833,"date":"2016-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.3023582,38.6973426]},"properties":{"id":1771,"date":"2016-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2744019,36.1551816]},"properties":{"id":1773,"date":"2016-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.6270595,38.1805233]},"properties":{"id":1774,"date":"2016-08-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1637245,33.836081]},"properties":{"id":1775,"date":"2016-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2150343,34.0380293]},"properties":{"id":1776,"date":"2016-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.528663,34.734235]},"properties":{"id":1777,"date":"2016-08-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2614989,47.4658018]},"properties":{"id":1778,"date":"2016-08-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2577917,33.1962312]},"properties":{"id":1785,"date":"2016-08-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.8396639,33.4514542]},"properties":{"id":1782,"date":"2016-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.9636488,35.9142544]},"properties":{"id":1783,"date":"2016-08-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0795391,37.6359459]},"properties":{"id":1832,"date":"2016-08-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.9672318,43.0751758]},"properties":{"id":1780,"date":"2016-08-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1517066,33.4949541]},"properties":{"id":1781,"date":"2016-08-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0532452,39.7182763]},"properties":{"id":1784,"date":"2016-08-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.2286077,38.8579579]},"properties":{"id":1786,"date":"2016-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.2579128,35.034515]},"properties":{"id":1788,"date":"2016-08-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.1610257,32.1804215]},"properties":{"id":1792,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2806586,33.9453225]},"properties":{"id":1795,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7781508,41.5861347]},"properties":{"id":1787,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.585748,36.0270006]},"properties":{"id":1789,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.5471822,33.4295916]},"properties":{"id":1790,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2523436,37.9867624]},"properties":{"id":1791,"date":"2016-08-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.9166023,46.1458995]},"properties":{"id":1793,"date":"2016-08-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.9831113,35.350353]},"properties":{"id":1794,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7185057,35.279013]},"properties":{"id":1796,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.3199864,38.7130008]},"properties":{"id":1797,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.3069771,38.8790533]},"properties":{"id":1798,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.0276175,32.9564177]},"properties":{"id":1801,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.6694468,33.3134096]},"properties":{"id":1807,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.9018131,31.9685988]},"properties":{"id":1831,"date":"2016-08-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3056113,34.0968772]},"properties":{"id":1799,"date":"2016-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0388414,33.4802298]},"properties":{"id":1800,"date":"2016-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.735,44.384194]},"properties":{"id":1806,"date":"2016-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.2332918,34.9900145]},"properties":{"id":1810,"date":"2016-08-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2163073,33.7258506]},"properties":{"id":1803,"date":"2016-08-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.765082,32.3087381]},"properties":{"id":1804,"date":"2016-08-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5510383,39.3965827]},"properties":{"id":1802,"date":"2016-08-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.3182959,33.6250179]},"properties":{"id":1812,"date":"2016-08-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.8797705,32.749564]},"properties":{"id":1811,"date":"2016-08-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1491954,28.5066714]},"properties":{"id":1813,"date":"2016-08-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.4374585,35.4878809]},"properties":{"id":1814,"date":"2016-08-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0766829,40.5988924]},"properties":{"id":1815,"date":"2016-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2399461,33.899203]},"properties":{"id":1816,"date":"2016-08-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0916355,36.1366047]},"properties":{"id":1817,"date":"2016-08-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1831556,33.4817275]},"properties":{"id":1820,"date":"2016-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.9951738,39.7165937]},"properties":{"id":1821,"date":"2016-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.9985109,39.601993]},"properties":{"id":1822,"date":"2016-08-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.1579205,44.8271185]},"properties":{"id":1818,"date":"2016-08-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.592294,35.779882]},"properties":{"id":1823,"date":"2016-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.3055225,34.1287123]},"properties":{"id":1824,"date":"2016-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.0399218,35.4743734]},"properties":{"id":1826,"date":"2016-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-147.7204563,64.8411136]},"properties":{"id":1829,"date":"2016-08-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3121645,47.0187849]},"properties":{"id":1825,"date":"2016-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.36417,27.933783]},"properties":{"id":1827,"date":"2016-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.614333,31.049389]},"properties":{"id":1828,"date":"2016-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.7892095,32.7289069]},"properties":{"id":1830,"date":"2016-08-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.018626,39.663302]},"properties":{"id":1841,"date":"2016-08-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.777502,36.832858]},"properties":{"id":1870,"date":"2016-08-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.7411631,41.6898955]},"properties":{"id":1839,"date":"2016-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.4443189,37.7043599]},"properties":{"id":1843,"date":"2016-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2430852,33.9625249]},"properties":{"id":1847,"date":"2016-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2245394,33.9910859]},"properties":{"id":1848,"date":"2016-09-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.9523438,32.885062]},"properties":{"id":1849,"date":"2016-09-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.088402,42.349438]},"properties":{"id":1853,"date":"2016-09-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2319349,38.721995]},"properties":{"id":1856,"date":"2016-09-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.435708,39.3563512]},"properties":{"id":1854,"date":"2016-09-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.7319979,37.1511655]},"properties":{"id":1860,"date":"2016-09-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.3567946,31.0933242]},"properties":{"id":1861,"date":"2016-09-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1545508,33.787147]},"properties":{"id":1852,"date":"2016-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.525554,39.0761899]},"properties":{"id":1859,"date":"2016-09-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.632019,32.343062]},"properties":{"id":1851,"date":"2016-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.7600148,30.4345698]},"properties":{"id":1858,"date":"2016-09-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9470722,41.2055705]},"properties":{"id":1862,"date":"2016-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0740373,33.4483771]},"properties":{"id":1864,"date":"2016-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.465029,36.3770198]},"properties":{"id":1865,"date":"2016-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1620518,33.4839478]},"properties":{"id":1868,"date":"2016-09-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.16187,31.569189]},"properties":{"id":1867,"date":"2016-09-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.819262,28.585341]},"properties":{"id":1869,"date":"2016-09-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.6466878,42.9055942]},"properties":{"id":1871,"date":"2016-09-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9061023,28.0529146]},"properties":{"id":1872,"date":"2016-09-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.7805821,37.4221934]},"properties":{"id":1873,"date":"2016-09-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.158142,35.1561683]},"properties":{"id":1874,"date":"2016-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2098893,47.3169763]},"properties":{"id":1876,"date":"2016-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.127221,26.244715]},"properties":{"id":1879,"date":"2016-09-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.2483697,37.3542289]},"properties":{"id":1877,"date":"2016-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.102621,40.1162329]},"properties":{"id":1897,"date":"2016-09-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.0020527,38.8765429]},"properties":{"id":1875,"date":"2016-09-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.009379,37.291639]},"properties":{"id":1880,"date":"2016-09-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.7154504,41.9911209]},"properties":{"id":1881,"date":"2016-09-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.310694,34.0717571]},"properties":{"id":1882,"date":"2016-09-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.9868886,39.9628206]},"properties":{"id":1883,"date":"2016-09-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0304603,33.4240201]},"properties":{"id":1884,"date":"2016-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8342828,30.2281914]},"properties":{"id":1885,"date":"2016-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.5543755,28.5579555]},"properties":{"id":1886,"date":"2016-09-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.8318334,37.9642529]},"properties":{"id":1887,"date":"2016-09-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9582224,36.2061183]},"properties":{"id":1888,"date":"2016-09-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.1911209,44.4923278]},"properties":{"id":1889,"date":"2016-09-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.1472484,37.7700392]},"properties":{"id":1893,"date":"2016-09-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9488556,33.9294722]},"properties":{"id":1890,"date":"2016-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.2174864,39.9567457]},"properties":{"id":1894,"date":"2016-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.540007,34.65885]},"properties":{"id":1895,"date":"2016-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9614576,35.3641103]},"properties":{"id":1896,"date":"2016-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.2101183,45.5560306]},"properties":{"id":1898,"date":"2016-09-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.563232,41.042111]},"properties":{"id":1891,"date":"2016-09-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.377671,30.0671436]},"properties":{"id":1900,"date":"2016-09-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.0937311,39.3209801]},"properties":{"id":1902,"date":"2016-09-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.2578986,32.7294549]},"properties":{"id":1907,"date":"2016-09-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.086714,35.8396287]},"properties":{"id":1899,"date":"2016-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.388398,27.20651]},"properties":{"id":1901,"date":"2016-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.9604722,41.4741796]},"properties":{"id":1903,"date":"2016-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.7652462,36.2114944]},"properties":{"id":1905,"date":"2016-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.9968652,39.9159637]},"properties":{"id":1906,"date":"2016-09-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.1633034,41.0021841]},"properties":{"id":1908,"date":"2016-09-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2304357,38.66519]},"properties":{"id":1909,"date":"2016-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.7644368,39.3675873]},"properties":{"id":1914,"date":"2016-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.5340908,29.3725913]},"properties":{"id":1915,"date":"2016-09-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.3561964,43.3842988]},"properties":{"id":1910,"date":"2016-09-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2638396,43.6443468]},"properties":{"id":1911,"date":"2016-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.531919,34.7417469]},"properties":{"id":1912,"date":"2016-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4424879,29.7245771]},"properties":{"id":1916,"date":"2016-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2128195,44.7902333]},"properties":{"id":1917,"date":"2016-09-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.952236,32.8077092]},"properties":{"id":1918,"date":"2016-09-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.1652215,39.9525839]},"properties":{"id":1919,"date":"2016-09-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.2656,30.8711]},"properties":{"id":1920,"date":"2016-09-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.0400549,35.2125292]},"properties":{"id":1921,"date":"2016-09-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.1257691,31.0549071]},"properties":{"id":1926,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1839238,40.7670081]},"properties":{"id":1927,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.215639,35.1128695]},"properties":{"id":1928,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.4319504,42.1729735]},"properties":{"id":1929,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1839238,40.7670081]},"properties":{"id":1930,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.8477537,39.9511227]},"properties":{"id":1931,"date":"2016-09-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.8595884,38.5350273]},"properties":{"id":1923,"date":"2016-10-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3069445,33.9390912]},"properties":{"id":1925,"date":"2016-10-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2499517,34.0002195]},"properties":{"id":1922,"date":"2016-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.666541,41.593869]},"properties":{"id":1924,"date":"2016-10-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.9342947,42.4596403]},"properties":{"id":1932,"date":"2016-10-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.4882756,39.351896]},"properties":{"id":1933,"date":"2016-10-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.3293858,27.8605492]},"properties":{"id":1935,"date":"2016-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.133833,36.1707466]},"properties":{"id":1936,"date":"2016-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.425869,46.0041827]},"properties":{"id":1938,"date":"2016-10-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.2638032,40.0106215]},"properties":{"id":1937,"date":"2016-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0055335,33.0822428]},"properties":{"id":1939,"date":"2016-10-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.644257,32.812384]},"properties":{"id":1944,"date":"2016-10-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.129775,41.127797]},"properties":{"id":1945,"date":"2016-10-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.5695426,34.5822301]},"properties":{"id":1953,"date":"2016-10-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.0908106,41.0734557]},"properties":{"id":2143,"date":"2016-10-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2964731,47.3433585]},"properties":{"id":1942,"date":"2016-10-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.230058,35.1739109]},"properties":{"id":1947,"date":"2016-10-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.9676274,37.6652906]},"properties":{"id":1956,"date":"2016-10-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.1321642,43.0453295]},"properties":{"id":1943,"date":"2016-10-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9613811,33.6679214]},"properties":{"id":1954,"date":"2016-10-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.0565652,34.6202592]},"properties":{"id":1949,"date":"2016-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.7946942,33.6839473]},"properties":{"id":1950,"date":"2016-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-102.0330681,32.0108533]},"properties":{"id":1951,"date":"2016-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.907123,40.4172871]},"properties":{"id":1952,"date":"2016-10-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0275417,37.9720845]},"properties":{"id":1958,"date":"2016-10-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.9731531,30.4544142]},"properties":{"id":1959,"date":"2016-10-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.0049716,42.3893343]},"properties":{"id":1960,"date":"2016-10-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.4938046,38.2262051]},"properties":{"id":1961,"date":"2016-10-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.1398296,36.1699412]},"properties":{"id":1962,"date":"2016-10-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.3839234,42.4161662]},"properties":{"id":1963,"date":"2016-10-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2256315,47.384275]},"properties":{"id":1964,"date":"2016-10-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.1685254,30.1166894]},"properties":{"id":1965,"date":"2016-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.8205874,32.7113589]},"properties":{"id":1969,"date":"2016-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.4851003,37.7388961]},"properties":{"id":1970,"date":"2016-10-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.1014177,32.4785807]},"properties":{"id":1968,"date":"2016-10-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.7892321,30.198358]},"properties":{"id":1966,"date":"2016-10-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0460377,36.9539755]},"properties":{"id":1967,"date":"2016-10-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2937405,25.9392372]},"properties":{"id":1971,"date":"2016-10-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.6014657,34.5919986]},"properties":{"id":1973,"date":"2016-10-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2323016,39.9711529]},"properties":{"id":1974,"date":"2016-10-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.4525467,42.1016294]},"properties":{"id":1972,"date":"2016-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8535295,40.8189532]},"properties":{"id":1975,"date":"2016-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.7866288,36.0998475]},"properties":{"id":1976,"date":"2016-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2656887,38.197206]},"properties":{"id":1979,"date":"2016-10-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4065011,41.6397696]},"properties":{"id":1977,"date":"2016-10-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.8769557,32.7409978]},"properties":{"id":1978,"date":"2016-10-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.0283738,36.0442765]},"properties":{"id":1982,"date":"2016-10-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.5830511,30.4673646]},"properties":{"id":1980,"date":"2016-10-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9278436,36.1600685]},"properties":{"id":1983,"date":"2016-10-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.1307873,47.2588645]},"properties":{"id":1988,"date":"2016-10-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.5650761,33.3570048]},"properties":{"id":1986,"date":"2016-10-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.8348728,43.786353]},"properties":{"id":1984,"date":"2016-10-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.5835229,37.0213123]},"properties":{"id":1985,"date":"2016-10-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.7944835,38.837264]},"properties":{"id":1987,"date":"2016-10-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2294503,38.6729796]},"properties":{"id":1989,"date":"2016-10-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.2654249,34.740544]},"properties":{"id":1990,"date":"2016-10-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.8209618,39.5989683]},"properties":{"id":1991,"date":"2016-10-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.8209618,39.5989683]},"properties":{"id":1992,"date":"2016-10-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2927872,38.8891836]},"properties":{"id":1993,"date":"2016-10-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.9187115,32.9841027]},"properties":{"id":1994,"date":"2016-10-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.9439809,36.752662]},"properties":{"id":1996,"date":"2016-10-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.551878,45.7524686]},"properties":{"id":1995,"date":"2016-10-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.4397189,29.4925439]},"properties":{"id":1997,"date":"2016-10-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.8968768,34.2325796]},"properties":{"id":1998,"date":"2016-10-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.3551738,38.6592367]},"properties":{"id":2001,"date":"2016-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.766506,41.3260413]},"properties":{"id":2002,"date":"2016-10-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.0377147,35.2393983]},"properties":{"id":2003,"date":"2016-10-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3159177,33.8193239]},"properties":{"id":2006,"date":"2016-10-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.424639,39.85171]},"properties":{"id":2035,"date":"2016-10-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.761129,39.1612843]},"properties":{"id":2008,"date":"2016-11-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.7559418,29.5742817]},"properties":{"id":2009,"date":"2016-11-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9220952,40.5891891]},"properties":{"id":2010,"date":"2016-11-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.4579877,35.6680054]},"properties":{"id":2011,"date":"2016-11-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.6611022,39.9375911]},"properties":{"id":2012,"date":"2016-11-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.5461567,33.8179159]},"properties":{"id":2015,"date":"2016-11-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.724735,27.818285]},"properties":{"id":2017,"date":"2016-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3532046,38.4511802]},"properties":{"id":2021,"date":"2016-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-124.3477568,48.0574252]},"properties":{"id":2022,"date":"2016-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.955639,32.5430889]},"properties":{"id":2023,"date":"2016-11-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9025178,33.7272854]},"properties":{"id":2014,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.827955,33.461958]},"properties":{"id":2018,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.4808043,36.9685219]},"properties":{"id":2019,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.9808755,39.2535151]},"properties":{"id":2024,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.0037222,32.5038288]},"properties":{"id":2025,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.6998327,37.4740011]},"properties":{"id":2027,"date":"2016-11-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.144955,39.999031]},"properties":{"id":2026,"date":"2016-11-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.3177093,38.8865897]},"properties":{"id":2028,"date":"2016-11-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.9648347,39.7804386]},"properties":{"id":2031,"date":"2016-11-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.8040968,41.8566936]},"properties":{"id":2032,"date":"2016-11-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9126475,34.1280308]},"properties":{"id":2033,"date":"2016-11-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-109.982983,34.159828]},"properties":{"id":2034,"date":"2016-11-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.4433544,31.4624615]},"properties":{"id":2036,"date":"2016-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9015359,28.076609]},"properties":{"id":2038,"date":"2016-11-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.4393724,33.6795531]},"properties":{"id":2037,"date":"2016-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.5576832,39.0643813]},"properties":{"id":2039,"date":"2016-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.2333923,43.6152042]},"properties":{"id":2043,"date":"2016-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.1428669,38.468304]},"properties":{"id":2046,"date":"2016-11-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.8792139,61.2175686]},"properties":{"id":2042,"date":"2016-11-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9689797,31.9719624]},"properties":{"id":2045,"date":"2016-11-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.4549457,41.003698]},"properties":{"id":2124,"date":"2016-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1056954,32.7496593]},"properties":{"id":2040,"date":"2016-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.5301379,35.377148]},"properties":{"id":2041,"date":"2016-11-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.7232135,39.9535962]},"properties":{"id":2048,"date":"2016-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.1360614,29.543507]},"properties":{"id":2049,"date":"2016-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1626344,33.52744]},"properties":{"id":2047,"date":"2016-11-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0326615,33.9754177]},"properties":{"id":2050,"date":"2016-11-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3530647,40.5710259]},"properties":{"id":2051,"date":"2016-11-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.642185,30.42986]},"properties":{"id":2052,"date":"2016-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.3649109,27.310745]},"properties":{"id":2056,"date":"2016-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.7423357,31.7079919]},"properties":{"id":2057,"date":"2016-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.7594861,32.8824625]},"properties":{"id":2058,"date":"2016-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.673792,41.768704]},"properties":{"id":2059,"date":"2016-11-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9066849,33.8516487]},"properties":{"id":2053,"date":"2016-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.7912588,36.9714503]},"properties":{"id":2054,"date":"2016-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.9578615,35.0255431]},"properties":{"id":2055,"date":"2016-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9059041,40.6673224]},"properties":{"id":2062,"date":"2016-11-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5938412,39.1787127]},"properties":{"id":2063,"date":"2016-11-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2994032,38.6066994]},"properties":{"id":2060,"date":"2016-11-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.457661,34.6538482]},"properties":{"id":2064,"date":"2016-11-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9770593,33.908618]},"properties":{"id":2065,"date":"2016-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.8896304,35.9730185]},"properties":{"id":2067,"date":"2016-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2278123,40.738861]},"properties":{"id":2068,"date":"2016-11-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.6915344,27.8179774]},"properties":{"id":2069,"date":"2016-11-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.1029157,42.806941]},"properties":{"id":2070,"date":"2016-11-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.665705,41.775683]},"properties":{"id":2073,"date":"2016-11-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.8335671,35.6368047]},"properties":{"id":2074,"date":"2016-11-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.7156559,41.8735701]},"properties":{"id":2071,"date":"2016-11-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9733664,32.200841]},"properties":{"id":2142,"date":"2016-11-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.4400063,33.6079664]},"properties":{"id":2077,"date":"2016-11-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.837935,38.8861522]},"properties":{"id":2075,"date":"2016-11-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.5701165,43.9480579]},"properties":{"id":2080,"date":"2016-11-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.0863209,30.3947775]},"properties":{"id":2082,"date":"2016-11-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.0096786,39.9977885]},"properties":{"id":2083,"date":"2016-11-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2659818,34.0225914]},"properties":{"id":2085,"date":"2016-11-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3068488,35.7427573]},"properties":{"id":2086,"date":"2016-11-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.954993,42.456459]},"properties":{"id":2084,"date":"2016-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.2060847,29.5335402]},"properties":{"id":2088,"date":"2016-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.3976617,39.7800679]},"properties":{"id":2089,"date":"2016-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.6474919,34.3426824]},"properties":{"id":2090,"date":"2016-11-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5259137,39.1026374]},"properties":{"id":2092,"date":"2016-11-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.419028,47.209923]},"properties":{"id":2091,"date":"2016-12-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9433559,32.1689149]},"properties":{"id":2093,"date":"2016-12-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.0820008,35.3650011]},"properties":{"id":2095,"date":"2016-12-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.7414959,32.2873671]},"properties":{"id":2099,"date":"2016-12-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.1613759,29.985441]},"properties":{"id":2100,"date":"2016-12-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.9596405,41.6682013]},"properties":{"id":2101,"date":"2016-12-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.9095,38.0927]},"properties":{"id":2103,"date":"2016-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.305953,28.947728]},"properties":{"id":2104,"date":"2016-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.5106559,45.5223864]},"properties":{"id":2105,"date":"2016-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9064705,28.8613765]},"properties":{"id":2106,"date":"2016-12-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.986915,35.088732]},"properties":{"id":2107,"date":"2016-12-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.798303,32.779799]},"properties":{"id":2108,"date":"2016-12-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.5015039,40.3104414]},"properties":{"id":2129,"date":"2016-12-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.0755161,34.2615753]},"properties":{"id":2119,"date":"2016-12-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.224857,40.709052]},"properties":{"id":2122,"date":"2016-12-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.127014,39.599516]},"properties":{"id":2116,"date":"2016-12-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.592109,40.882476]},"properties":{"id":2112,"date":"2016-12-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.4684182,27.4703769]},"properties":{"id":2121,"date":"2016-12-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.5926727,35.109397]},"properties":{"id":2123,"date":"2016-12-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.5791194,37.2920237]},"properties":{"id":2127,"date":"2016-12-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.090082,35.301414]},"properties":{"id":2114,"date":"2016-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.9102014,32.6824176]},"properties":{"id":2120,"date":"2016-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.078931,40.042198]},"properties":{"id":2125,"date":"2016-12-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6565842,39.3123453]},"properties":{"id":2126,"date":"2016-12-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9760915,33.9789661]},"properties":{"id":2130,"date":"2016-12-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.748924,35.318868]},"properties":{"id":2132,"date":"2016-12-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1626182,34.0215187]},"properties":{"id":2134,"date":"2016-12-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2135984,47.9658866]},"properties":{"id":2137,"date":"2016-12-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.308941,33.9850325]},"properties":{"id":2133,"date":"2016-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.7132347,45.8301942]},"properties":{"id":2135,"date":"2016-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.0451028,36.1466057]},"properties":{"id":2136,"date":"2016-12-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.4038465,35.8433626]},"properties":{"id":2131,"date":"2016-12-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.9542204,33.7309393]},"properties":{"id":2139,"date":"2016-12-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.1955624,26.2106797]},"properties":{"id":2140,"date":"2016-12-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.5349554,32.9830646]},"properties":{"id":2141,"date":"2016-12-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.176632,35.3608274]},"properties":{"id":2147,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.620686,41.257449]},"properties":{"id":2151,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8254047,39.527778]},"properties":{"id":2152,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.1640147,36.0542478]},"properties":{"id":2153,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.2652722,37.9744558]},"properties":{"id":2154,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.0973162,30.8354702]},"properties":{"id":2156,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.3711444,36.1446817]},"properties":{"id":2157,"date":"2016-12-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.7700515,28.0657086]},"properties":{"id":2167,"date":"2016-12-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0350688,34.0749181]},"properties":{"id":2168,"date":"2016-12-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.8512352,35.3521284]},"properties":{"id":2158,"date":"2016-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.5678374,28.0061709]},"properties":{"id":2163,"date":"2016-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.0186563,34.0217243]},"properties":{"id":2164,"date":"2016-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.0635066,34.0183422]},"properties":{"id":2166,"date":"2016-12-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.962802,38.930812]},"properties":{"id":2159,"date":"2016-12-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.798367,45.4016434]},"properties":{"id":2160,"date":"2016-12-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.6898658,35.7186737]},"properties":{"id":2161,"date":"2016-12-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.9246508,30.0478922]},"properties":{"id":2162,"date":"2016-12-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.0180053,39.1826214]},"properties":{"id":2169,"date":"2016-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.3673076,29.5433984]},"properties":{"id":2170,"date":"2016-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8061944,41.84874]},"properties":{"id":2171,"date":"2016-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.3031012,28.7485359]},"properties":{"id":2172,"date":"2016-12-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.916101,35.709287]},"properties":{"id":2175,"date":"2016-12-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.0285712,39.2117872]},"properties":{"id":2173,"date":"2016-12-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.356059,25.604854]},"properties":{"id":2176,"date":"2016-12-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.2811936,30.4364273]},"properties":{"id":2182,"date":"2016-12-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.0565917,33.5530274]},"properties":{"id":2186,"date":"2016-12-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.9473242,44.1767266]},"properties":{"id":2179,"date":"2016-12-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.2515245,26.7088038]},"properties":{"id":2181,"date":"2016-12-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5153466,39.2326122]},"properties":{"id":2177,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.9777117,41.856046]},"properties":{"id":2178,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.2754129,37.2223453]},"properties":{"id":2180,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5193754,34.1014873]},"properties":{"id":2184,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4281391,29.6026251]},"properties":{"id":2185,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.6639146,33.0917198]},"properties":{"id":2187,"date":"2017-01-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.0000418,32.6351405]},"properties":{"id":2188,"date":"2017-01-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8972111,40.6430501]},"properties":{"id":2189,"date":"2017-01-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9611705,40.6801994]},"properties":{"id":2190,"date":"2017-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.7366552,34.0686694]},"properties":{"id":2191,"date":"2017-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.5908007,37.6020395]},"properties":{"id":2192,"date":"2017-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.4681571,38.3412129]},"properties":{"id":2193,"date":"2017-01-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.3951115,36.5549355]},"properties":{"id":2194,"date":"2017-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.8396979,35.2400807]},"properties":{"id":2195,"date":"2017-01-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.499093,41.2479582]},"properties":{"id":2197,"date":"2017-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8445119,42.1711365]},"properties":{"id":2200,"date":"2017-01-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.1462003,37.3292872]},"properties":{"id":2196,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.8474567,36.7511833]},"properties":{"id":2198,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.7766297,39.1963485]},"properties":{"id":2199,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.0082594,39.8918637]},"properties":{"id":2201,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.356966,39.0508173]},"properties":{"id":2202,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.6040344,35.1236886]},"properties":{"id":2203,"date":"2017-01-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.05977,34.236162]},"properties":{"id":2204,"date":"2017-01-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.1341608,33.5675604]},"properties":{"id":2205,"date":"2017-01-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2495755,38.6556618]},"properties":{"id":2206,"date":"2017-01-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2630728,34.0422525]},"properties":{"id":2207,"date":"2017-01-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.3425424,35.52174]},"properties":{"id":2223,"date":"2017-01-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.9861479,43.6593019]},"properties":{"id":2209,"date":"2017-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2830226,33.681514]},"properties":{"id":2210,"date":"2017-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.08633,39.946201]},"properties":{"id":2215,"date":"2017-01-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.1413259,29.1764498]},"properties":{"id":2211,"date":"2017-01-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.7795249,46.2009459]},"properties":{"id":2224,"date":"2017-01-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.6728755,37.2933697]},"properties":{"id":2227,"date":"2017-01-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-157.9383048,21.6697988]},"properties":{"id":2218,"date":"2017-01-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8062206,30.4453339]},"properties":{"id":2221,"date":"2017-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.762486,40.674195]},"properties":{"id":2222,"date":"2017-01-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.9090693,34.1537245]},"properties":{"id":2216,"date":"2017-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.1211927,33.775248]},"properties":{"id":2217,"date":"2017-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.708724,41.879988]},"properties":{"id":2219,"date":"2017-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.4340604,47.6514985]},"properties":{"id":2220,"date":"2017-01-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.6095551,33.4903285]},"properties":{"id":2212,"date":"2017-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.8757665,36.5026669]},"properties":{"id":2213,"date":"2017-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.404882,38.949388]},"properties":{"id":2214,"date":"2017-01-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.1330871,35.2305704]},"properties":{"id":2226,"date":"2017-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.080577,34.1354636]},"properties":{"id":2229,"date":"2017-01-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.6347969,36.6785145]},"properties":{"id":2225,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5702202,36.1092487]},"properties":{"id":2228,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-92.301997,39.018667]},"properties":{"id":2230,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.7642557,32.7926343]},"properties":{"id":2231,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.261345,34.029625]},"properties":{"id":2232,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.327528,41.542268]},"properties":{"id":2243,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.0328547,47.9252568]},"properties":{"id":2245,"date":"2017-01-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2994124,38.7971676]},"properties":{"id":2241,"date":"2017-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.4015938,38.1796313]},"properties":{"id":2242,"date":"2017-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-101.603228,35.6397655]},"properties":{"id":2244,"date":"2017-01-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.3407644,29.6123913]},"properties":{"id":2240,"date":"2017-01-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-91.050063,33.384169]},"properties":{"id":2237,"date":"2017-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-115.328085,35.7776773]},"properties":{"id":2239,"date":"2017-01-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.394709,44.107093]},"properties":{"id":2233,"date":"2017-01-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.9099114,40.459147]},"properties":{"id":2234,"date":"2017-01-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.2194552,33.8280597]},"properties":{"id":2238,"date":"2017-01-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2580224,38.1132145]},"properties":{"id":2235,"date":"2017-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.6631659,32.3796294]},"properties":{"id":2248,"date":"2017-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.661554,39.807557]},"properties":{"id":2249,"date":"2017-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.5641622,39.7555571]},"properties":{"id":2251,"date":"2017-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2427724,29.9724799]},"properties":{"id":2253,"date":"2017-01-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.638929,35.446926]},"properties":{"id":2246,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.4234538,39.1144089]},"properties":{"id":2247,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9740985,30.0503091]},"properties":{"id":2254,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.9889484,35.3812049]},"properties":{"id":2255,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.7592363,32.2951364]},"properties":{"id":2256,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.5702032,43.1661468]},"properties":{"id":2257,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.3010724,40.0337599]},"properties":{"id":2258,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-116.4201223,43.4918307]},"properties":{"id":2259,"date":"2017-01-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.9974139,34.9903418]},"properties":{"id":2261,"date":"2017-01-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7402648,35.202996]},"properties":{"id":2265,"date":"2017-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.519863,39.353384]},"properties":{"id":2266,"date":"2017-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.498246,33.7923138]},"properties":{"id":2267,"date":"2017-01-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.2960167,47.4082003]},"properties":{"id":2274,"date":"2017-01-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.2173399,41.4289429]},"properties":{"id":2271,"date":"2017-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.8709467,33.74244]},"properties":{"id":2275,"date":"2017-01-29"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.8987256,34.7229722]},"properties":{"id":2269,"date":"2017-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.3107148,47.8288538]},"properties":{"id":2270,"date":"2017-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7678684,36.7732222]},"properties":{"id":2276,"date":"2017-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.976932,37.692656]},"properties":{"id":2277,"date":"2017-01-30"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.3290113,34.0983238]},"properties":{"id":2278,"date":"2017-01-31"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.1319199,32.757045]},"properties":{"id":2280,"date":"2017-02-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.2262103,34.1358265]},"properties":{"id":2301,"date":"2017-02-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.7797045,30.1296569]},"properties":{"id":2302,"date":"2017-02-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.2784226,34.5223162]},"properties":{"id":2304,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-120.201507,39.1998439]},"properties":{"id":2281,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3651472,35.7485745]},"properties":{"id":2289,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.0342113,39.3335803]},"properties":{"id":2297,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.8045701,41.875991]},"properties":{"id":2298,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.9376991,32.8636084]},"properties":{"id":2299,"date":"2017-02-03"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.770787,31.0816806]},"properties":{"id":2348,"date":"2017-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.5691946,38.9829113]},"properties":{"id":2288,"date":"2017-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.415559,28.970592]},"properties":{"id":2293,"date":"2017-02-04"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2800831,39.8604983]},"properties":{"id":2286,"date":"2017-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6392769,38.2513439]},"properties":{"id":2300,"date":"2017-02-05"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.6771991,30.3434287]},"properties":{"id":2305,"date":"2017-02-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.91132,39.8038389]},"properties":{"id":2306,"date":"2017-02-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.4552335,34.0269001]},"properties":{"id":2287,"date":"2017-02-06"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.8067243,34.6953107]},"properties":{"id":2308,"date":"2017-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.2171,35.5194789]},"properties":{"id":2309,"date":"2017-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.6468449,39.2867981]},"properties":{"id":2310,"date":"2017-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7435436,41.2371851]},"properties":{"id":2312,"date":"2017-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.2589251,37.6736742]},"properties":{"id":2347,"date":"2017-02-07"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.0126122,39.4277493]},"properties":{"id":2307,"date":"2017-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.2462811,35.0817675]},"properties":{"id":2314,"date":"2017-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.6403334,41.8786738]},"properties":{"id":2343,"date":"2017-02-08"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.9156524,41.804017]},"properties":{"id":2313,"date":"2017-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.0884724,47.9790907]},"properties":{"id":2315,"date":"2017-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.5775376,45.5363566]},"properties":{"id":2316,"date":"2017-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-108.1355651,35.6804476]},"properties":{"id":2319,"date":"2017-02-09"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.612809,45.651743]},"properties":{"id":2317,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.7598505,36.1675364]},"properties":{"id":2322,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.6663892,44.4164786]},"properties":{"id":2324,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.6663892,44.4164786]},"properties":{"id":2325,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.688778,41.952361]},"properties":{"id":2326,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.660432,35.5083849]},"properties":{"id":2330,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.8674383,36.0368813]},"properties":{"id":2331,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.229307,39.41919]},"properties":{"id":2332,"date":"2017-02-10"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.372049,34.800724]},"properties":{"id":2318,"date":"2017-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-157.9403587,21.3870404]},"properties":{"id":2320,"date":"2017-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.50698,38.9178489]},"properties":{"id":2321,"date":"2017-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-85.780018,38.2003781]},"properties":{"id":2323,"date":"2017-02-11"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.3562138,32.739234]},"properties":{"id":2328,"date":"2017-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.9055656,36.022383]},"properties":{"id":2329,"date":"2017-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.7524867,34.4485565]},"properties":{"id":2333,"date":"2017-02-12"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.1604198,35.8994465]},"properties":{"id":2334,"date":"2017-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.495937,34.7672373]},"properties":{"id":2335,"date":"2017-02-13"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.0745552,39.9465367]},"properties":{"id":2338,"date":"2017-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.528443,38.6517644]},"properties":{"id":2339,"date":"2017-02-14"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.878362,36.026516]},"properties":{"id":2342,"date":"2017-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.574872,37.3156733]},"properties":{"id":2344,"date":"2017-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.0128957,37.3197633]},"properties":{"id":2345,"date":"2017-02-15"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.876127,40.673265]},"properties":{"id":2346,"date":"2017-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.5318429,29.3664666]},"properties":{"id":2349,"date":"2017-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.296829,33.903325]},"properties":{"id":2350,"date":"2017-02-16"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.9971161,32.7166135]},"properties":{"id":2359,"date":"2017-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.8685333,36.0152661]},"properties":{"id":2361,"date":"2017-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.153772,37.754739]},"properties":{"id":2364,"date":"2017-02-17"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.2795544,43.6534813]},"properties":{"id":2351,"date":"2017-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.2188135,36.1319366]},"properties":{"id":2352,"date":"2017-02-18"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.3870618,41.1598414]},"properties":{"id":2356,"date":"2017-02-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9195989,40.7018729]},"properties":{"id":2358,"date":"2017-02-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-110.9590953,32.0740603]},"properties":{"id":2362,"date":"2017-02-19"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.8362479,39.7650554]},"properties":{"id":2353,"date":"2017-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.335997,28.5035131]},"properties":{"id":2355,"date":"2017-02-20"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.8519412,45.5053234]},"properties":{"id":2357,"date":"2017-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.2322328,38.5831068]},"properties":{"id":2365,"date":"2017-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.026229,41.1837095]},"properties":{"id":2366,"date":"2017-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.9728186,41.2248771]},"properties":{"id":2367,"date":"2017-02-21"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.4932122,30.2445979]},"properties":{"id":2369,"date":"2017-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.055141,37.3613894]},"properties":{"id":2371,"date":"2017-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.816376,30.196568]},"properties":{"id":2372,"date":"2017-02-22"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.1611912,29.6900786]},"properties":{"id":2370,"date":"2017-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.7035915,36.5734379]},"properties":{"id":2373,"date":"2017-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-119.8163328,39.5277266]},"properties":{"id":2376,"date":"2017-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9844494,38.9016712]},"properties":{"id":2377,"date":"2017-02-23"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.9144126,40.330501]},"properties":{"id":2386,"date":"2017-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.9899669,37.090901]},"properties":{"id":2388,"date":"2017-02-24"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.258043,38.82727]},"properties":{"id":2383,"date":"2017-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.8060879,32.0488693]},"properties":{"id":2384,"date":"2017-02-25"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.292096,26.9399159]},"properties":{"id":2379,"date":"2017-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.1147895,37.7386732]},"properties":{"id":2380,"date":"2017-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.984927,40.7363672]},"properties":{"id":2381,"date":"2017-02-26"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.54271,35.269569]},"properties":{"id":2378,"date":"2017-02-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.8650359,45.1200767]},"properties":{"id":2391,"date":"2017-02-27"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.5380312,29.6509133]},"properties":{"id":2393,"date":"2017-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.411437,28.489249]},"properties":{"id":2394,"date":"2017-02-28"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.728024,31.355602]},"properties":{"id":2392,"date":"2017-03-01"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.643044,44.916583]},"properties":{"id":2395,"date":"2017-03-02"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.1425194,33.1354257]},"properties":{"id":2396,"date":"2017-03-02"}}]}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment