Skip to content

Instantly share code, notes, and snippets.

@Pabloska
Last active November 18, 2016 12:47
Show Gist options
  • Save Pabloska/d1a90ccc5371c624e1df881047374732 to your computer and use it in GitHub Desktop.
Save Pabloska/d1a90ccc5371c624e1df881047374732 to your computer and use it in GitHub Desktop.
Migrant Deaths
var aspect = 2.5;
var width = $("#map").width();
var height = width/ aspect;
var infoWidth = 100;
var margin = {
top: 20,
left: 35,
bottom: 30,
right: 50
}
//colors for deaths
var colors = ['red','#ff4d4d']
colors.reverse()
//temporary empty color that will be used for mouseover and mouseout events
var tempColor;
var mouseBool = false;
//add BaseMap
var map = L.map('map', {center: [33.348885,-11.074219],
zoom: 3,
reuseTiles: false,
trackResize: false})
.addLayer(new L.TileLayer("http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Dark_Gray_Base/MapServer/tile/{z}/{y}/{x}"));
var infoLoc = width - (width*.20)
//Attach empty SVG to the basemap
var svg = d3.select(map.getPanes().overlayPane).append("svg");
svg.attr('width',width).attr('height',height)
//hide phantom svg on zoom
var g = svg.append("g").attr("class", "leaflet-zoom-hide");
var infoLeft = width - (width*.25);
var graphHeight = height*.35;
//var infoLeft = width - (width*.25);
var graphW = width - margin.left - margin.right;
var graphH = graphHeight - margin.top - margin.bottom;
var infoHeight = graphHeight*2
var xTrans = -graphW/11/2
console.log(height,graphHeight,infoHeight)
var infoSVG = d3.select('#infoPane').append('svg')
.attr('width',infoWidth)
.attr('height',infoHeight)
.attr('transform','translate('+infoLeft+',0)')
//place graph svg
var graph = d3.select('#graph').append('svg')
.attr('width', width)
.attr('height',graphHeight)
graph = graph.append('g')
.attr('transform','translate('+margin.left+','+margin.top+')')
//var dateTime = d3.time.format('%Y-%m-%d %H:%M:%S')
var timeISO = d3.time.format.utc("%Y-%m-%dT%H:%M:%S.%LZ")
var format = d3.time.format('%d %b %Y')
//var timeFormat = d3.time.format('%I:%M ')
//var tempTime = d3.time.hour('15:32')
var hr = '15:32:00'
hr = d3.time.format('%I:%M:%L').parse(hr)
var hrFormat = d3.time.format('%I:%M %p')
hr = hrFormat(hr)
Start = ('2016-01-03T00:00:000Z')
projectStart = timeISO.parse(Start)
function drawData(){
d3.json('deaths.topojson', function(error, deaths){
var collection = topojson.feature(deaths,deaths.objects.collection);
/*add LatLng to each point in dataset*/
collection.features.forEach(function(d){
d.LatLng = new L.LatLng(d.geometry.coordinates[1],d.geometry.coordinates[0])
})
var transform = d3.geo.transform({point: projectPoint}),
path = d3.geo.path().projection(transform)
var min = d3.min(collection.features,function(d){
return d.properties.Length
})
var max = d3.max(collection.features, function(d){
return d.properties.Length
})
var deathTotal = d3.sum(collection.features, function(d){
return d.properties.Length
})
var totalIncidents = collection.features.length
var totalScale = d3.scale.linear()
.domain([(deathTotal*1.15),0])
.range([0,(infoHeight*.80)])
/****************
create cirlce scale for deaths
*****************/
var deathScale = d3.scale.linear()
.domain([min,max])
.range([1.5,15])
//create Incidents/deaths chart
metaBars = infoSVG.append('g')
infoSVG.append('rect')
.attr('x',0)
.attr('y',totalScale(totalIncidents))
.attr('width',infoWidth/2)
.attr('class','totalBar')
.attr('id','incidentTotal')
.attr('height',infoHeight - totalScale(totalIncidents))
.style('fill','grey')
.style('opacity',0.90)
infoSVG.append('text')
.attr('x',infoWidth*.25)
.attr('text-anchor','middle')
.attr('y',infoHeight*.98)
.attr("transform", "translate(-250,275) rotate(-90)")
.style('fill','white')
.text('Incidents')
infoSVG.append('text')
.attr('x',infoWidth*.25)
.attr('text-anchor','middle')
.attr('y',totalScale(totalIncidents) -5)
.style('fill','white')
.attr('class','barTotal')
.attr('id','IncidentBarTotal')//ID allows changig number dynamically --> see secton "updating of total bars"
.text(totalIncidents)
infoSVG.append('rect')
.attr('x',infoWidth/2)
.attr('y',totalScale(deathTotal))
.attr('width',infoWidth/2)
.attr('class','totalBar')
.attr('id','deathTotal')
.attr('height',infoHeight - totalScale(deathTotal))
.style('fill','red')
.style('opacity',0.90)
infoSVG.append('text')
.attr('x',infoWidth*.75)
.attr('text-anchor','middle')
//.attr("dy", ".0em")
.attr("transform", "translate(-200,330) rotate(-90)")
.attr('y',infoHeight*.98)
.style('fill','white')
.text('Deaths')
infoSVG.append('text')
.attr('x',infoWidth*.75)
.attr('text-anchor','middle')
.attr('y',totalScale(deathTotal)-5)
.style('fill','white')
.attr('class','barTotal')
.attr('id','deathBarTotaltext')//ID allows changig number dynamically --> see secton "updating of total bars"
.text(deathTotal)
/*
var mileTotal = d3.round(d3.sum(collection.features,function(d){ return d.properties.Length}),2)
d3.selectAll('#Distance').text('Distance (Miles): ' + mileTotal)
d3.selectAll('#tripCount').text('Trips: '+ collection.features.length)
*/
var colorScale = d3.scale.linear()
.domain([min,max])
.range(colors)
//sort the trips by date andd time
function sortTrips(a,b){
console.log()
return new Date(a.properties.DateTime) - new Date(b.properties.DateTime)
}
data = collection.features
data = data.sort(sortTrips)
//activate mouse interactivity
setTimeout(function(){
mouseBool = true;
},(data.length+1)*100)
//update infoPane data
//d3.select('#totalDeaths').text(d3.format(',')(deathTotal))
//d3.select('#totalIncidents').text(data.length)
//var day1 = new Date(data[0].properties.Name)
//var day30 = new Date(data[data.length-1].Name)
//xScale.domain([day1, day30])
// .ticks(d3.time.days,1)
// .tickFormat(d3.time.format('%a'))
//
//graph.select('.xAxis')
// .call(xAxis)
//**************************************
//setup graph scales and axes.
//**************************************
var begin = new Date(data[0].properties.Name)
//var end = timeISO.parse(data[data.length - 1].properties.Name)
var end = new Date(data[data.length - 1].properties.Name)
console.log(begin,end)
//var utcRange = d3.time.day.range(begin,end)
var xScale = d3.time.scale.utc()
.domain([begin,end])
.range([0,graphW])
.nice()
var xAxis = d3.svg.axis()
.scale(xScale)
.orient('bottom')
.ticks(d3.time.month.utc)
.tickFormat(d3.time.format('%b'))
//.tickSize(10,2.5,0)
//.tickSubdivide(5)
// .ticks(16)
.tickPadding(10)
//var xTimeAxis = d3.svg.axis()
// .scale(xScale)
// .orient('bottom')
// .ticks(d3.time.hours,4)
// .tickFormat(d3.time.format('%I:%M %p'))
// .ticks(15)
var yScale = d3.scale.linear()
.domain([0,600])
.range([graphH,0])
var yAxis = d3.svg.axis()
.scale(yScale)
.orient('left')
.ticks(4)
graph.append('g')
.attr('class','axis')
.attr('id','xAxis')
.attr('transform','translate(0,'+ graphH +')')
.call(xAxis)
.style('fill','white')
//translate month axis ticks to center of bin
d3.select('#xAxis').selectAll('text')
.attr('transform','translate('+xTrans+')')
/*********************
*add text to graph
**********************/
graph.append('g')
.attr('class','axis')
.call(yAxis)
.style('fill','white')
.style('stroke','')
.style('stroke-width','2.0px')
graph.append('text')
.attr('text-anchor','middle')
.attr('transform','translate('+(graphW/2)+','+(-margin.top/2.25)+')')
.text('Migrant Deaths 2016')
.style('fill','white')
graph.append('text')
.attr('text-anchor','left')
.attr('transform','translate('+(graphW*.05)+','+(-margin.top/2.25)+')')
.attr('id','date')
.text('Date:')
.style('fill','white')
graph.append('text')
.attr('text-anchor','middle')
.attr('id','deathCount')
.text('')
.style('fill','white')
//Add deaths to the map
var deaths = g.append('g').selectAll("circle")
.data(data)
.enter()
.append('circle')
.attr('class','deaths')
.attr('id',function(d,i){
return 'incidentLoc' + i
})
.attr('fill', function(d){
return colorScale(d.properties.Length)
})
.attr('cx',function(d){
return map.latLngToLayerPoint(d.LatLng).x
})
.attr('cy',function(d){
return map.latLngToLayerPoint(d.LatLng).y
})
//.attr('r',function(d){
// return deathScale(d.properties.Length)
//})
.style('opacity',0.75);
deaths.transition()
.ease('linear')
.duration(1500)
.delay(1500)
.attr("r", function(d){
return deathScale(d.properties.Length)
});
/*********************
*death location interactivity
**********************/
deaths.on('mouseover',function(d,i){
d3.select(this).transition()
.style('opacity',1)
.attr('r',function(){
return deathScale(max*2)
})
var barID = '#barID'+i
console.log(barID)
d3.select(barID).transition()
.style('opacity',1)
.attr('width',10)
});
deaths.on('mouseout',function(d,i){
d3.select(this).transition()
.style('opacity',0.75)
.attr('r',function(d){
return deathScale(d.properties.Length)
})
var barID = '#barID'+i
d3.select(barID).transition()
.style('opacity',1)
.attr('width',10)
})
//Draw bars on the bar graph
var bars = graph.selectAll('rect')
.data(data)
.enter()
.append('rect')
.attr('class','bars')
.attr('id',function(d,i){
return 'barID'+i
})
.attr('x',function(d){
return xScale(new Date(d.properties.Name))
})
.attr('y',function(d){
return yScale(0)
})
.attr('height',0)
.attr('width',5)
.style('fill',function(d){
return colorScale(d.properties.Length)
})
.style('opacity',0.50);
bars.transition().ease('linear')
.duration(1500)
.delay(1000)
.attr('height',function(d){
return graphHeight-margin.top-margin.bottom - yScale(d.properties.Length)
})
.attr('y',function(d){
return yScale(d.properties.Length)
})
//bar interactivity
bars.on('mouseover',function(d,i){
//if (mouseBool == true){
var length = d.properties.Length;
var date = new Date(d.properties.Name);
var loc = '#incidentLoc' + i
var dateText = format(date);
var tripNo = i+1;
d3.select(this)
//.style('fill','#FA8D34')
.style('width',10)
.style('opacity',1)
d3.select('#deathCount')
.style('opacity',1)
.attr('x',xScale(date) + 2.5)
.attr('y',yScale(length)- 2.5)
.text(length)
//location interactivity
var loc = '#incidentLoc'+i
d3.select(loc).transition()
.style('opacity',1)
.attr('r',function(){
return deathScale(max*2)
})
//.style('stroke-width',7)
d3.select('#deathCount').text(length)
d3.select('#date').text('Date: ' + dateText)
//};
})
bars.on('mouseout',function(d,i){
//if (mouseBool == true){
d3.select(this)
.style('fill',function(d){
return colorScale(d.properties.Length)
})
.style('width',5)
.style('opacity',0.75)
d3.select('#deathCount').transition()
.style('opacity',0)
//transition corresponding location
var loc = '#incidentLoc'+ i
d3.select(loc).transition()
.style('opacity',0.50)
//.style('stroke','#2892C7')
.attr('r',function(d){
return deathScale(d.properties.Length)
})
.style('fill',function(d){
return colorScale(d.properties.Length)
})
//text transitions
d3.select('#date').text("Date: ")
d3.select('#deaths').text(0)
//};
})
/***********************
*Animdate function
***********************/
//Trip Animation
d3.select('#play').on('click',function(d,i){
d3.select('#play').classed('disabled',true);
deaths.transition().ease('linear').duration(500).attr('r',0)
bars.transition().ease('linear').duration(500).attr('y',yScale(0))
.attr('height',0)
d3.selectAll('.totalBar').transition()
.attr('y',infoHeight)
.attr('height',0)
d3.selectAll('.barTotal').transition()
.attr('y',infoHeight)
.style('opacity',0)
var tempBars = d3.selectAll('.bars').data()
var tempLocs = d3.selectAll('.deaths').data()
var runningdeathSum = 0
function animate(data,index){
var barID = '#barID' + index;
var locID = '#incidentLoc' + index
var date = new Date(data[index].properties.Name)
var deaths = data[index].properties.Length
runningdeathSum += deaths
console.log(index,runningdeathSum, deaths)
/***********************
*updating of total bars
***********************/
infoSVG.select('rect#incidentTotal').transition()
.attr('y',totalScale(index))
.attr('height',infoHeight - totalScale(index))
d3.select('#IncidentBarTotal').transition()
.attr('y',totalScale(index) -5)
.text(index)
infoSVG.select('rect#deathTotal').transition()
.attr('y',totalScale(runningdeathSum))
.attr('height',infoHeight - totalScale(runningdeathSum))
d3.select('#deathBarTotaltext').transition()
.attr('y',totalScale(runningdeathSum) -5)
.text(runningdeathSum)
//bar and location animation
var dateText = format(date)
if (index < data.length){
var timer = setTimeout(function(){
d3.select(barID).transition().duration(450)
.attr('height', graphHeight-margin.top-margin.bottom - yScale(deaths))
.attr('y',yScale(deaths));
d3.select('#deathCount').transition()
.style('opacity',1)
.attr('x',xScale(date) + 2.5)
.attr('y',yScale(deaths)- 2.5)
.text(deaths);
d3.select('#date').text('Date: ' + dateText);
d3.select(locID).transition().duration(450)
.attr('r',deathScale(max*2))
.transition().duration(200)
.attr('r',deathScale(deaths));
if (index == totalIncidents) {
d3.select('#deathCount').transition().style('opacity',0)
}
animate(data,++index)
},250)//end timer function
}//end conditional checking index against data length
}//end animate function
animate(tempBars,0)
})//end of play button function
//map zoom/rest functionality
map.on('viewreset', reset);
//this will put stuff on the map
reset();
// Reposition the SVG to cover the features.
function reset() {
var bounds = path.bounds(collection);
var topLeft = bounds[0],
bottomRight = bounds[1];
svg.attr("width", bottomRight[0] - topLeft[0])
.attr("height", bottomRight[1] - topLeft[1])
.style("left", topLeft[0] + "px")
.style("top", topLeft[1] + "px");
g.attr("transform", "translate(" + -topLeft[0] + "," + -topLeft[1] + ")");
deaths.attr('cx',function(d){
return map.latLngToLayerPoint(d.LatLng).x
})
.attr('cy',function(d){
return map.latLngToLayerPoint(d.LatLng).y
})
.attr('r',function(d){
return deathScale(d.properties.Length)
})
} // end reset
function projectPoint(x,y){
var point = map.latLngToLayerPoint(new L.LatLng(y,x));
this.stream.point(point.x,point.y);
}// end projectPoint function
});//end d3 callback
};// end drawEmp
$(document).ready(function(){
drawData();
});
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"collection":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"OBJECTID":1,"code":51,"Name":"2016-01-01T00:00:00Z","Length":3,"Month":1,"Dat":1,"Year":2016,"DateTime":"2016-01-01 00:00","Time":"00:00","shape_length":0},"coordinates":[428,6780]},{"type":"Point","properties":{"OBJECTID":2,"code":1,"Name":"2016-01-01T00:00:00Z","Length":4,"Month":1,"Dat":1,"Year":2016,"DateTime":"2016-01-01 00:00","Time":"00:00","shape_length":0},"coordinates":[6218,7487]},{"type":"Point","properties":{"OBJECTID":3,"code":73,"Name":"2016-01-01T00:00:00Z","Length":1,"Month":1,"Dat":1,"Year":2016,"DateTime":"2016-01-01 00:00","Time":"00:00","shape_length":0},"coordinates":[4838,7344]},{"type":"Point","properties":{"OBJECTID":4,"code":5,"Name":"2016-01-01T00:00:00Z","Length":1,"Month":1,"Dat":1,"Year":2016,"DateTime":"2016-01-01 00:00","Time":"00:00","shape_length":0},"coordinates":[6240,7478]},{"type":"Point","properties":{"OBJECTID":5,"code":6,"Name":"2016-01-03T00:00:00Z","Length":1,"Month":1,"Dat":3,"Year":2016,"DateTime":"2016-01-03 00:00","Time":"00:00","shape_length":0},"coordinates":[6234,7505]},{"type":"Point","properties":{"OBJECTID":6,"code":124,"Name":"2016-01-03T00:00:00Z","Length":1,"Month":1,"Dat":3,"Year":2016,"DateTime":"2016-01-03 00:00","Time":"00:00","shape_length":0},"coordinates":[1479,5061]},{"type":"Point","properties":{"OBJECTID":7,"code":2,"Name":"2016-01-03T00:00:00Z","Length":1,"Month":1,"Dat":3,"Year":2016,"DateTime":"2016-01-03 00:00","Time":"00:00","shape_length":0},"coordinates":[6243,7400]},{"type":"Point","properties":{"OBJECTID":8,"code":7,"Name":"2016-01-03T00:00:00Z","Length":1,"Month":1,"Dat":3,"Year":2016,"DateTime":"2016-01-03 00:00","Time":"00:00","shape_length":0},"coordinates":[6218,7487]},{"type":"Point","properties":{"OBJECTID":9,"code":86,"Name":"2016-01-03T00:00:00Z","Length":3,"Month":1,"Dat":3,"Year":2016,"DateTime":"2016-01-03 00:00","Time":"00:00","shape_length":0},"coordinates":[4839,7340]},{"type":"Point","properties":{"OBJECTID":10,"code":145,"Name":"2016-01-04T00:00:00Z","Length":1,"Month":1,"Dat":4,"Year":2016,"DateTime":"2016-01-04 00:00","Time":"00:00","shape_length":0},"coordinates":[263,6958]},{"type":"Point","properties":{"OBJECTID":11,"code":15,"Name":"2016-01-04T00:00:00Z","Length":1,"Month":1,"Dat":4,"Year":2016,"DateTime":"2016-01-04 00:00","Time":"00:00","shape_length":0},"coordinates":[6205,7486]},{"type":"Point","properties":{"OBJECTID":12,"code":3,"Name":"2016-01-04T00:00:00Z","Length":1,"Month":1,"Dat":4,"Year":2016,"DateTime":"2016-01-04 00:00","Time":"00:00","shape_length":0},"coordinates":[6243,7400]},{"type":"Point","properties":{"OBJECTID":13,"code":4,"Name":"2016-01-04T00:00:00Z","Length":36,"Month":1,"Dat":4,"Year":2016,"DateTime":"2016-01-04 00:00","Time":"00:00","shape_length":0},"coordinates":[6227,7636]},{"type":"Point","properties":{"OBJECTID":14,"code":146,"Name":"2016-01-04T00:00:00Z","Length":1,"Month":1,"Dat":4,"Year":2016,"DateTime":"2016-01-04 00:00","Time":"00:00","shape_length":0},"coordinates":[196,7001]},{"type":"Point","properties":{"OBJECTID":15,"code":432,"Name":"2016-01-07T00:00:00Z","Length":1,"Month":1,"Dat":7,"Year":2016,"DateTime":"2016-01-07 00:00","Time":"00:00","shape_length":0},"coordinates":[4943,7290]},{"type":"Point","properties":{"OBJECTID":16,"code":9,"Name":"2016-01-07T00:00:00Z","Length":4,"Month":1,"Dat":7,"Year":2016,"DateTime":"2016-01-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6216,7713]},{"type":"Point","properties":{"OBJECTID":17,"code":8,"Name":"2016-01-07T00:00:00Z","Length":1,"Month":1,"Dat":7,"Year":2016,"DateTime":"2016-01-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6204,7640]},{"type":"Point","properties":{"OBJECTID":18,"code":14,"Name":"2016-01-07T00:00:00Z","Length":36,"Month":1,"Dat":7,"Year":2016,"DateTime":"2016-01-07 00:00","Time":"00:00","shape_length":0},"coordinates":[7232,5296]},{"type":"Point","properties":{"OBJECTID":19,"code":120,"Name":"2016-01-08T00:00:00Z","Length":1,"Month":1,"Dat":8,"Year":2016,"DateTime":"2016-01-08 00:00","Time":"00:00","shape_length":0},"coordinates":[1129,5741]},{"type":"Point","properties":{"OBJECTID":20,"code":10,"Name":"2016-01-08T00:00:00Z","Length":7,"Month":1,"Dat":8,"Year":2016,"DateTime":"2016-01-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6278,7664]},{"type":"Point","properties":{"OBJECTID":21,"code":219,"Name":"2016-01-08T00:00:00Z","Length":1,"Month":1,"Dat":8,"Year":2016,"DateTime":"2016-01-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6481,5598]},{"type":"Point","properties":{"OBJECTID":22,"code":147,"Name":"2016-01-08T00:00:00Z","Length":1,"Month":1,"Dat":8,"Year":2016,"DateTime":"2016-01-08 00:00","Time":"00:00","shape_length":0},"coordinates":[253,7021]},{"type":"Point","properties":{"OBJECTID":23,"code":25,"Name":"2016-01-09T00:00:00Z","Length":1,"Month":1,"Dat":9,"Year":2016,"DateTime":"2016-01-09 00:00","Time":"00:00","shape_length":0},"coordinates":[5173,8442]},{"type":"Point","properties":{"OBJECTID":24,"code":12,"Name":"2016-01-10T00:00:00Z","Length":9,"Month":1,"Dat":10,"Year":2016,"DateTime":"2016-01-10 00:00","Time":"00:00","shape_length":0},"coordinates":[5866,7675]},{"type":"Point","properties":{"OBJECTID":25,"code":11,"Name":"2016-01-10T00:00:00Z","Length":3,"Month":1,"Dat":10,"Year":2016,"DateTime":"2016-01-10 00:00","Time":"00:00","shape_length":0},"coordinates":[6216,7650]},{"type":"Point","properties":{"OBJECTID":26,"code":115,"Name":"2016-01-10T00:00:00Z","Length":1,"Month":1,"Dat":10,"Year":2016,"DateTime":"2016-01-10 00:00","Time":"00:00","shape_length":0},"coordinates":[978,5815]},{"type":"Point","properties":{"OBJECTID":27,"code":356,"Name":"2016-01-10T00:00:00Z","Length":1,"Month":1,"Dat":10,"Year":2016,"DateTime":"2016-01-10 00:00","Time":"00:00","shape_length":0},"coordinates":[236,6986]},{"type":"Point","properties":{"OBJECTID":28,"code":13,"Name":"2016-01-10T00:00:00Z","Length":9,"Month":1,"Dat":10,"Year":2016,"DateTime":"2016-01-10 00:00","Time":"00:00","shape_length":0},"coordinates":[1721,5002]},{"type":"Point","properties":{"OBJECTID":29,"code":244,"Name":"2016-01-11T00:00:00Z","Length":5,"Month":1,"Dat":11,"Year":2016,"DateTime":"2016-01-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6256,5924]},{"type":"Point","properties":{"OBJECTID":30,"code":319,"Name":"2016-01-11T00:00:00Z","Length":1,"Month":1,"Dat":11,"Year":2016,"DateTime":"2016-01-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6830,7436]},{"type":"Point","properties":{"OBJECTID":31,"code":220,"Name":"2016-01-11T00:00:00Z","Length":3,"Month":1,"Dat":11,"Year":2016,"DateTime":"2016-01-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6078,6335]},{"type":"Point","properties":{"OBJECTID":32,"code":243,"Name":"2016-01-11T00:00:00Z","Length":3,"Month":1,"Dat":11,"Year":2016,"DateTime":"2016-01-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6601,5464]},{"type":"Point","properties":{"OBJECTID":33,"code":16,"Name":"2016-01-13T00:00:00Z","Length":6,"Month":1,"Dat":13,"Year":2016,"DateTime":"2016-01-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6214,7660]},{"type":"Point","properties":{"OBJECTID":34,"code":32,"Name":"2016-01-13T00:00:00Z","Length":6,"Month":1,"Dat":13,"Year":2016,"DateTime":"2016-01-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6232,7534]},{"type":"Point","properties":{"OBJECTID":35,"code":19,"Name":"2016-01-14T00:00:00Z","Length":3,"Month":1,"Dat":14,"Year":2016,"DateTime":"2016-01-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6247,7479]},{"type":"Point","properties":{"OBJECTID":36,"code":17,"Name":"2016-01-14T00:00:00Z","Length":1,"Month":1,"Dat":14,"Year":2016,"DateTime":"2016-01-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6243,7462]},{"type":"Point","properties":{"OBJECTID":37,"code":20,"Name":"2016-01-14T00:00:00Z","Length":4,"Month":1,"Dat":14,"Year":2016,"DateTime":"2016-01-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6218,7651]},{"type":"Point","properties":{"OBJECTID":38,"code":22,"Name":"2016-01-15T00:00:00Z","Length":1,"Month":1,"Dat":15,"Year":2016,"DateTime":"2016-01-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6237,7496]},{"type":"Point","properties":{"OBJECTID":39,"code":318,"Name":"2016-01-15T00:00:00Z","Length":1,"Month":1,"Dat":15,"Year":2016,"DateTime":"2016-01-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6784,7404]},{"type":"Point","properties":{"OBJECTID":40,"code":21,"Name":"2016-01-15T00:00:00Z","Length":6,"Month":1,"Dat":15,"Year":2016,"DateTime":"2016-01-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6241,7500]},{"type":"Point","properties":{"OBJECTID":41,"code":18,"Name":"2016-01-16T00:00:00Z","Length":1,"Month":1,"Dat":16,"Year":2016,"DateTime":"2016-01-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6385,9999]},{"type":"Point","properties":{"OBJECTID":42,"code":300,"Name":"2016-01-16T00:00:00Z","Length":1,"Month":1,"Dat":16,"Year":2016,"DateTime":"2016-01-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6808,7425]},{"type":"Point","properties":{"OBJECTID":43,"code":148,"Name":"2016-01-16T00:00:00Z","Length":1,"Month":1,"Dat":16,"Year":2016,"DateTime":"2016-01-16 00:00","Time":"00:00","shape_length":0},"coordinates":[189,7089]},{"type":"Point","properties":{"OBJECTID":44,"code":27,"Name":"2016-01-17T00:00:00Z","Length":9,"Month":1,"Dat":17,"Year":2016,"DateTime":"2016-01-17 00:00","Time":"00:00","shape_length":0},"coordinates":[5561,7466]},{"type":"Point","properties":{"OBJECTID":45,"code":26,"Name":"2016-01-18T00:00:00Z","Length":1,"Month":1,"Dat":18,"Year":2016,"DateTime":"2016-01-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6218,7487]},{"type":"Point","properties":{"OBJECTID":46,"code":23,"Name":"2016-01-19T00:00:00Z","Length":2,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6219,7626]},{"type":"Point","properties":{"OBJECTID":47,"code":24,"Name":"2016-01-19T00:00:00Z","Length":14,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6327,2172]},{"type":"Point","properties":{"OBJECTID":48,"code":245,"Name":"2016-01-19T00:00:00Z","Length":2,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6603,5464]},{"type":"Point","properties":{"OBJECTID":49,"code":387,"Name":"2016-01-19T00:00:00Z","Length":1,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1046,5804]},{"type":"Point","properties":{"OBJECTID":50,"code":246,"Name":"2016-01-19T00:00:00Z","Length":2,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[5695,6582]},{"type":"Point","properties":{"OBJECTID":51,"code":52,"Name":"2016-01-19T00:00:00Z","Length":1,"Month":1,"Dat":19,"Year":2016,"DateTime":"2016-01-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6066,7964]},{"type":"Point","properties":{"OBJECTID":52,"code":222,"Name":"2016-01-20T00:00:00Z","Length":1,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6922,5063]},{"type":"Point","properties":{"OBJECTID":53,"code":28,"Name":"2016-01-20T00:00:00Z","Length":8,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6244,7462]},{"type":"Point","properties":{"OBJECTID":54,"code":31,"Name":"2016-01-20T00:00:00Z","Length":1,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[760,6621]},{"type":"Point","properties":{"OBJECTID":55,"code":30,"Name":"2016-01-20T00:00:00Z","Length":24,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6226,7585]},{"type":"Point","properties":{"OBJECTID":56,"code":29,"Name":"2016-01-20T00:00:00Z","Length":44,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6244,7442]},{"type":"Point","properties":{"OBJECTID":57,"code":87,"Name":"2016-01-20T00:00:00Z","Length":1,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[2116,5808]},{"type":"Point","properties":{"OBJECTID":58,"code":320,"Name":"2016-01-20T00:00:00Z","Length":1,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6795,7403]},{"type":"Point","properties":{"OBJECTID":59,"code":221,"Name":"2016-01-20T00:00:00Z","Length":1,"Month":1,"Dat":20,"Year":2016,"DateTime":"2016-01-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6442,6882]},{"type":"Point","properties":{"OBJECTID":60,"code":224,"Name":"2016-01-21T00:00:00Z","Length":7,"Month":1,"Dat":21,"Year":2016,"DateTime":"2016-01-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6079,6338]},{"type":"Point","properties":{"OBJECTID":61,"code":225,"Name":"2016-01-21T00:00:00Z","Length":13,"Month":1,"Dat":21,"Year":2016,"DateTime":"2016-01-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6070,6340]},{"type":"Point","properties":{"OBJECTID":62,"code":223,"Name":"2016-01-21T00:00:00Z","Length":1,"Month":1,"Dat":21,"Year":2016,"DateTime":"2016-01-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6540,5770]},{"type":"Point","properties":{"OBJECTID":63,"code":55,"Name":"2016-01-22T00:00:00Z","Length":1,"Month":1,"Dat":22,"Year":2016,"DateTime":"2016-01-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6057,7943]},{"type":"Point","properties":{"OBJECTID":64,"code":33,"Name":"2016-01-22T00:00:00Z","Length":1,"Month":1,"Dat":22,"Year":2016,"DateTime":"2016-01-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6235,7505]},{"type":"Point","properties":{"OBJECTID":65,"code":36,"Name":"2016-01-22T00:00:00Z","Length":1,"Month":1,"Dat":22,"Year":2016,"DateTime":"2016-01-22 00:00","Time":"00:00","shape_length":0},"coordinates":[5655,8003]},{"type":"Point","properties":{"OBJECTID":66,"code":43,"Name":"2016-01-23T00:00:00Z","Length":1,"Month":1,"Dat":23,"Year":2016,"DateTime":"2016-01-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6133,7599]},{"type":"Point","properties":{"OBJECTID":67,"code":35,"Name":"2016-01-23T00:00:00Z","Length":1,"Month":1,"Dat":23,"Year":2016,"DateTime":"2016-01-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6211,7641]},{"type":"Point","properties":{"OBJECTID":68,"code":42,"Name":"2016-01-23T00:00:00Z","Length":2,"Month":1,"Dat":23,"Year":2016,"DateTime":"2016-01-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6242,7507]},{"type":"Point","properties":{"OBJECTID":69,"code":38,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5638,7371]},{"type":"Point","properties":{"OBJECTID":70,"code":44,"Name":"2016-01-24T00:00:00Z","Length":2,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[6241,7504]},{"type":"Point","properties":{"OBJECTID":71,"code":302,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[6831,7443]},{"type":"Point","properties":{"OBJECTID":72,"code":53,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[6615,7178]},{"type":"Point","properties":{"OBJECTID":73,"code":54,"Name":"2016-01-24T00:00:00Z","Length":3,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[6622,7165]},{"type":"Point","properties":{"OBJECTID":74,"code":37,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[6055,7792]},{"type":"Point","properties":{"OBJECTID":75,"code":149,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[229,6997]},{"type":"Point","properties":{"OBJECTID":76,"code":34,"Name":"2016-01-24T00:00:00Z","Length":1,"Month":1,"Dat":24,"Year":2016,"DateTime":"2016-01-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5660,7348]},{"type":"Point","properties":{"OBJECTID":77,"code":151,"Name":"2016-01-25T00:00:00Z","Length":1,"Month":1,"Dat":25,"Year":2016,"DateTime":"2016-01-25 00:00","Time":"00:00","shape_length":0},"coordinates":[174,7004]},{"type":"Point","properties":{"OBJECTID":78,"code":39,"Name":"2016-01-25T00:00:00Z","Length":35,"Month":1,"Dat":25,"Year":2016,"DateTime":"2016-01-25 00:00","Time":"00:00","shape_length":0},"coordinates":[9584,4387]},{"type":"Point","properties":{"OBJECTID":79,"code":40,"Name":"2016-01-25T00:00:00Z","Length":21,"Month":1,"Dat":25,"Year":2016,"DateTime":"2016-01-25 00:00","Time":"00:00","shape_length":0},"coordinates":[6251,7466]},{"type":"Point","properties":{"OBJECTID":80,"code":45,"Name":"2016-01-25T00:00:00Z","Length":1,"Month":1,"Dat":25,"Year":2016,"DateTime":"2016-01-25 00:00","Time":"00:00","shape_length":0},"coordinates":[6241,7500]},{"type":"Point","properties":{"OBJECTID":81,"code":150,"Name":"2016-01-25T00:00:00Z","Length":1,"Month":1,"Dat":25,"Year":2016,"DateTime":"2016-01-25 00:00","Time":"00:00","shape_length":0},"coordinates":[172,7033]},{"type":"Point","properties":{"OBJECTID":82,"code":321,"Name":"2016-01-26T00:00:00Z","Length":1,"Month":1,"Dat":26,"Year":2016,"DateTime":"2016-01-26 00:00","Time":"00:00","shape_length":0},"coordinates":[6695,7408]},{"type":"Point","properties":{"OBJECTID":83,"code":41,"Name":"2016-01-26T00:00:00Z","Length":7,"Month":1,"Dat":26,"Year":2016,"DateTime":"2016-01-26 00:00","Time":"00:00","shape_length":0},"coordinates":[6253,7430]},{"type":"Point","properties":{"OBJECTID":84,"code":60,"Name":"2016-01-27T00:00:00Z","Length":1,"Month":1,"Dat":27,"Year":2016,"DateTime":"2016-01-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6858,7687]},{"type":"Point","properties":{"OBJECTID":85,"code":46,"Name":"2016-01-27T00:00:00Z","Length":41,"Month":1,"Dat":27,"Year":2016,"DateTime":"2016-01-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6242,7502]},{"type":"Point","properties":{"OBJECTID":86,"code":303,"Name":"2016-01-28T00:00:00Z","Length":1,"Month":1,"Dat":28,"Year":2016,"DateTime":"2016-01-28 00:00","Time":"00:00","shape_length":0},"coordinates":[6765,7410]},{"type":"Point","properties":{"OBJECTID":87,"code":110,"Name":"2016-01-28T00:00:00Z","Length":1,"Month":1,"Dat":28,"Year":2016,"DateTime":"2016-01-28 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6726]},{"type":"Point","properties":{"OBJECTID":88,"code":48,"Name":"2016-01-29T00:00:00Z","Length":39,"Month":1,"Dat":29,"Year":2016,"DateTime":"2016-01-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6215,7649]},{"type":"Point","properties":{"OBJECTID":89,"code":47,"Name":"2016-01-29T00:00:00Z","Length":70,"Month":1,"Dat":29,"Year":2016,"DateTime":"2016-01-29 00:00","Time":"00:00","shape_length":0},"coordinates":[5562,7452]},{"type":"Point","properties":{"OBJECTID":90,"code":135,"Name":"2016-01-29T00:00:00Z","Length":1,"Month":1,"Dat":29,"Year":2016,"DateTime":"2016-01-29 00:00","Time":"00:00","shape_length":0},"coordinates":[777,5927]},{"type":"Point","properties":{"OBJECTID":91,"code":50,"Name":"2016-01-30T00:00:00Z","Length":3,"Month":1,"Dat":30,"Year":2016,"DateTime":"2016-01-30 00:00","Time":"00:00","shape_length":0},"coordinates":[6249,7466]},{"type":"Point","properties":{"OBJECTID":92,"code":159,"Name":"2016-01-30T00:00:00Z","Length":1,"Month":1,"Dat":30,"Year":2016,"DateTime":"2016-01-30 00:00","Time":"00:00","shape_length":0},"coordinates":[242,6965]},{"type":"Point","properties":{"OBJECTID":93,"code":466,"Name":"2016-01-30T00:00:00Z","Length":1,"Month":1,"Dat":30,"Year":2016,"DateTime":"2016-01-30 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6623]},{"type":"Point","properties":{"OBJECTID":94,"code":49,"Name":"2016-02-01T00:00:00Z","Length":9,"Month":2,"Dat":1,"Year":2016,"DateTime":"2016-02-01 00:00","Time":"00:00","shape_length":0},"coordinates":[6231,7535]},{"type":"Point","properties":{"OBJECTID":95,"code":61,"Name":"2016-02-01T00:00:00Z","Length":8,"Month":2,"Dat":1,"Year":2016,"DateTime":"2016-02-01 00:00","Time":"00:00","shape_length":0},"coordinates":[4345,6477]},{"type":"Point","properties":{"OBJECTID":96,"code":447,"Name":"2016-02-04T00:00:00Z","Length":1,"Month":2,"Dat":4,"Year":2016,"DateTime":"2016-02-04 00:00","Time":"00:00","shape_length":0},"coordinates":[4827,7351]},{"type":"Point","properties":{"OBJECTID":97,"code":304,"Name":"2016-02-04T00:00:00Z","Length":1,"Month":2,"Dat":4,"Year":2016,"DateTime":"2016-02-04 00:00","Time":"00:00","shape_length":0},"coordinates":[6756,7409]},{"type":"Point","properties":{"OBJECTID":98,"code":57,"Name":"2016-02-06T00:00:00Z","Length":1,"Month":2,"Dat":6,"Year":2016,"DateTime":"2016-02-06 00:00","Time":"00:00","shape_length":0},"coordinates":[1853,4164]},{"type":"Point","properties":{"OBJECTID":99,"code":323,"Name":"2016-02-06T00:00:00Z","Length":1,"Month":2,"Dat":6,"Year":2016,"DateTime":"2016-02-06 00:00","Time":"00:00","shape_length":0},"coordinates":[6745,7414]},{"type":"Point","properties":{"OBJECTID":100,"code":433,"Name":"2016-02-06T00:00:00Z","Length":56,"Month":2,"Dat":6,"Year":2016,"DateTime":"2016-02-06 00:00","Time":"00:00","shape_length":0},"coordinates":[4375,6427]},{"type":"Point","properties":{"OBJECTID":101,"code":56,"Name":"2016-02-06T00:00:00Z","Length":2,"Month":2,"Dat":6,"Year":2016,"DateTime":"2016-02-06 00:00","Time":"00:00","shape_length":0},"coordinates":[6262,7864]},{"type":"Point","properties":{"OBJECTID":102,"code":59,"Name":"2016-02-07T00:00:00Z","Length":1,"Month":2,"Dat":7,"Year":2016,"DateTime":"2016-02-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6636,7369]},{"type":"Point","properties":{"OBJECTID":103,"code":283,"Name":"2016-02-07T00:00:00Z","Length":1,"Month":2,"Dat":7,"Year":2016,"DateTime":"2016-02-07 00:00","Time":"00:00","shape_length":0},"coordinates":[747,5914]},{"type":"Point","properties":{"OBJECTID":104,"code":58,"Name":"2016-02-07T00:00:00Z","Length":36,"Month":2,"Dat":7,"Year":2016,"DateTime":"2016-02-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6224,7619]},{"type":"Point","properties":{"OBJECTID":105,"code":419,"Name":"2016-02-08T00:00:00Z","Length":1,"Month":2,"Dat":8,"Year":2016,"DateTime":"2016-02-08 00:00","Time":"00:00","shape_length":0},"coordinates":[847,6483]},{"type":"Point","properties":{"OBJECTID":106,"code":68,"Name":"2016-02-08T00:00:00Z","Length":11,"Month":2,"Dat":8,"Year":2016,"DateTime":"2016-02-08 00:00","Time":"00:00","shape_length":0},"coordinates":[768,6636]},{"type":"Point","properties":{"OBJECTID":107,"code":62,"Name":"2016-02-09T00:00:00Z","Length":1,"Month":2,"Dat":9,"Year":2016,"DateTime":"2016-02-09 00:00","Time":"00:00","shape_length":0},"coordinates":[5150,8633]},{"type":"Point","properties":{"OBJECTID":108,"code":448,"Name":"2016-02-11T00:00:00Z","Length":28,"Month":2,"Dat":11,"Year":2016,"DateTime":"2016-02-11 00:00","Time":"00:00","shape_length":0},"coordinates":[4327,6388]},{"type":"Point","properties":{"OBJECTID":109,"code":69,"Name":"2016-02-11T00:00:00Z","Length":1,"Month":2,"Dat":11,"Year":2016,"DateTime":"2016-02-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5922,8217]},{"type":"Point","properties":{"OBJECTID":110,"code":127,"Name":"2016-02-13T00:00:00Z","Length":1,"Month":2,"Dat":13,"Year":2016,"DateTime":"2016-02-13 00:00","Time":"00:00","shape_length":0},"coordinates":[972,5804]},{"type":"Point","properties":{"OBJECTID":111,"code":295,"Name":"2016-02-13T00:00:00Z","Length":1,"Month":2,"Dat":13,"Year":2016,"DateTime":"2016-02-13 00:00","Time":"00:00","shape_length":0},"coordinates":[975,5805]},{"type":"Point","properties":{"OBJECTID":112,"code":339,"Name":"2016-02-14T00:00:00Z","Length":1,"Month":2,"Dat":14,"Year":2016,"DateTime":"2016-02-14 00:00","Time":"00:00","shape_length":0},"coordinates":[839,5871]},{"type":"Point","properties":{"OBJECTID":113,"code":324,"Name":"2016-02-14T00:00:00Z","Length":1,"Month":2,"Dat":14,"Year":2016,"DateTime":"2016-02-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6678,7405]},{"type":"Point","properties":{"OBJECTID":114,"code":196,"Name":"2016-02-15T00:00:00Z","Length":1,"Month":2,"Dat":15,"Year":2016,"DateTime":"2016-02-15 00:00","Time":"00:00","shape_length":0},"coordinates":[4828,7351]},{"type":"Point","properties":{"OBJECTID":115,"code":247,"Name":"2016-02-15T00:00:00Z","Length":1,"Month":2,"Dat":15,"Year":2016,"DateTime":"2016-02-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6636,5371]},{"type":"Point","properties":{"OBJECTID":116,"code":63,"Name":"2016-02-16T00:00:00Z","Length":1,"Month":2,"Dat":16,"Year":2016,"DateTime":"2016-02-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6202,7555]},{"type":"Point","properties":{"OBJECTID":117,"code":64,"Name":"2016-02-16T00:00:00Z","Length":1,"Month":2,"Dat":16,"Year":2016,"DateTime":"2016-02-16 00:00","Time":"00:00","shape_length":0},"coordinates":[1523,6316]},{"type":"Point","properties":{"OBJECTID":118,"code":248,"Name":"2016-02-17T00:00:00Z","Length":9,"Month":2,"Dat":17,"Year":2016,"DateTime":"2016-02-17 00:00","Time":"00:00","shape_length":0},"coordinates":[6625,5536]},{"type":"Point","properties":{"OBJECTID":119,"code":467,"Name":"2016-02-17T00:00:00Z","Length":4,"Month":2,"Dat":17,"Year":2016,"DateTime":"2016-02-17 00:00","Time":"00:00","shape_length":0},"coordinates":[768,6628]},{"type":"Point","properties":{"OBJECTID":120,"code":268,"Name":"2016-02-17T00:00:00Z","Length":1,"Month":2,"Dat":17,"Year":2016,"DateTime":"2016-02-17 00:00","Time":"00:00","shape_length":0},"coordinates":[6647,5586]},{"type":"Point","properties":{"OBJECTID":121,"code":497,"Name":"2016-02-18T00:00:00Z","Length":1,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[979,5812]},{"type":"Point","properties":{"OBJECTID":122,"code":249,"Name":"2016-02-18T00:00:00Z","Length":1,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5696,6581]},{"type":"Point","properties":{"OBJECTID":123,"code":250,"Name":"2016-02-18T00:00:00Z","Length":1,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6650,5561]},{"type":"Point","properties":{"OBJECTID":124,"code":65,"Name":"2016-02-18T00:00:00Z","Length":2,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5595,7387]},{"type":"Point","properties":{"OBJECTID":125,"code":107,"Name":"2016-02-18T00:00:00Z","Length":1,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[782,6527]},{"type":"Point","properties":{"OBJECTID":126,"code":226,"Name":"2016-02-18T00:00:00Z","Length":4,"Month":2,"Dat":18,"Year":2016,"DateTime":"2016-02-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6517,6868]},{"type":"Point","properties":{"OBJECTID":127,"code":66,"Name":"2016-02-20T00:00:00Z","Length":1,"Month":2,"Dat":20,"Year":2016,"DateTime":"2016-02-20 00:00","Time":"00:00","shape_length":0},"coordinates":[0,7055]},{"type":"Point","properties":{"OBJECTID":128,"code":251,"Name":"2016-02-22T00:00:00Z","Length":4,"Month":2,"Dat":22,"Year":2016,"DateTime":"2016-02-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6167,5812]},{"type":"Point","properties":{"OBJECTID":129,"code":152,"Name":"2016-02-22T00:00:00Z","Length":1,"Month":2,"Dat":22,"Year":2016,"DateTime":"2016-02-22 00:00","Time":"00:00","shape_length":0},"coordinates":[213,7062]},{"type":"Point","properties":{"OBJECTID":130,"code":67,"Name":"2016-02-22T00:00:00Z","Length":5,"Month":2,"Dat":22,"Year":2016,"DateTime":"2016-02-22 00:00","Time":"00:00","shape_length":0},"coordinates":[5572,7404]},{"type":"Point","properties":{"OBJECTID":131,"code":75,"Name":"2016-02-24T00:00:00Z","Length":1,"Month":2,"Dat":24,"Year":2016,"DateTime":"2016-02-24 00:00","Time":"00:00","shape_length":0},"coordinates":[794,6520]},{"type":"Point","properties":{"OBJECTID":132,"code":305,"Name":"2016-02-27T00:00:00Z","Length":1,"Month":2,"Dat":27,"Year":2016,"DateTime":"2016-02-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6760,7407]},{"type":"Point","properties":{"OBJECTID":133,"code":105,"Name":"2016-02-28T00:00:00Z","Length":20,"Month":2,"Dat":28,"Year":2016,"DateTime":"2016-02-28 00:00","Time":"00:00","shape_length":0},"coordinates":[6940,5367]},{"type":"Point","properties":{"OBJECTID":134,"code":506,"Name":"2016-02-29T00:00:00Z","Length":1,"Month":2,"Dat":29,"Year":2016,"DateTime":"2016-02-29 00:00","Time":"00:00","shape_length":0},"coordinates":[1127,5741]},{"type":"Point","properties":{"OBJECTID":135,"code":264,"Name":"2016-02-29T00:00:00Z","Length":1,"Month":2,"Dat":29,"Year":2016,"DateTime":"2016-02-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6961,5059]},{"type":"Point","properties":{"OBJECTID":136,"code":106,"Name":"2016-02-29T00:00:00Z","Length":4,"Month":2,"Dat":29,"Year":2016,"DateTime":"2016-02-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6948,5348]},{"type":"Point","properties":{"OBJECTID":137,"code":70,"Name":"2016-02-29T00:00:00Z","Length":1,"Month":2,"Dat":29,"Year":2016,"DateTime":"2016-02-29 00:00","Time":"00:00","shape_length":0},"coordinates":[813,6495]},{"type":"Point","properties":{"OBJECTID":138,"code":160,"Name":"2016-02-29T00:00:00Z","Length":1,"Month":2,"Dat":29,"Year":2016,"DateTime":"2016-02-29 00:00","Time":"00:00","shape_length":0},"coordinates":[226,6983]},{"type":"Point","properties":{"OBJECTID":139,"code":96,"Name":"2016-03-01T00:00:00Z","Length":3,"Month":3,"Dat":1,"Year":2016,"DateTime":"2016-03-01 00:00","Time":"00:00","shape_length":0},"coordinates":[7019,3166]},{"type":"Point","properties":{"OBJECTID":140,"code":72,"Name":"2016-03-01T00:00:00Z","Length":1,"Month":3,"Dat":1,"Year":2016,"DateTime":"2016-03-01 00:00","Time":"00:00","shape_length":0},"coordinates":[6220,7618]},{"type":"Point","properties":{"OBJECTID":141,"code":162,"Name":"2016-03-02T00:00:00Z","Length":1,"Month":3,"Dat":2,"Year":2016,"DateTime":"2016-03-02 00:00","Time":"00:00","shape_length":0},"coordinates":[214,6993]},{"type":"Point","properties":{"OBJECTID":142,"code":161,"Name":"2016-03-02T00:00:00Z","Length":1,"Month":3,"Dat":2,"Year":2016,"DateTime":"2016-03-02 00:00","Time":"00:00","shape_length":0},"coordinates":[178,7025]},{"type":"Point","properties":{"OBJECTID":143,"code":252,"Name":"2016-03-04T00:00:00Z","Length":1,"Month":3,"Dat":4,"Year":2016,"DateTime":"2016-03-04 00:00","Time":"00:00","shape_length":0},"coordinates":[6791,3901]},{"type":"Point","properties":{"OBJECTID":144,"code":163,"Name":"2016-03-05T00:00:00Z","Length":1,"Month":3,"Dat":5,"Year":2016,"DateTime":"2016-03-05 00:00","Time":"00:00","shape_length":0},"coordinates":[172,7041]},{"type":"Point","properties":{"OBJECTID":145,"code":71,"Name":"2016-03-05T00:00:00Z","Length":25,"Month":3,"Dat":5,"Year":2016,"DateTime":"2016-03-05 00:00","Time":"00:00","shape_length":0},"coordinates":[6248,7466]},{"type":"Point","properties":{"OBJECTID":146,"code":202,"Name":"2016-03-06T00:00:00Z","Length":20,"Month":3,"Dat":6,"Year":2016,"DateTime":"2016-03-06 00:00","Time":"00:00","shape_length":0},"coordinates":[4964,7422]},{"type":"Point","properties":{"OBJECTID":147,"code":153,"Name":"2016-03-06T00:00:00Z","Length":1,"Month":3,"Dat":6,"Year":2016,"DateTime":"2016-03-06 00:00","Time":"00:00","shape_length":0},"coordinates":[173,7021]},{"type":"Point","properties":{"OBJECTID":148,"code":164,"Name":"2016-03-06T00:00:00Z","Length":1,"Month":3,"Dat":6,"Year":2016,"DateTime":"2016-03-06 00:00","Time":"00:00","shape_length":0},"coordinates":[172,7031]},{"type":"Point","properties":{"OBJECTID":149,"code":227,"Name":"2016-03-07T00:00:00Z","Length":2,"Month":3,"Dat":7,"Year":2016,"DateTime":"2016-03-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6253,5739]},{"type":"Point","properties":{"OBJECTID":150,"code":326,"Name":"2016-03-07T00:00:00Z","Length":1,"Month":3,"Dat":7,"Year":2016,"DateTime":"2016-03-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6750,7407]},{"type":"Point","properties":{"OBJECTID":151,"code":101,"Name":"2016-03-07T00:00:00Z","Length":1,"Month":3,"Dat":7,"Year":2016,"DateTime":"2016-03-07 00:00","Time":"00:00","shape_length":0},"coordinates":[815,6499]},{"type":"Point","properties":{"OBJECTID":152,"code":253,"Name":"2016-03-08T00:00:00Z","Length":2,"Month":3,"Dat":8,"Year":2016,"DateTime":"2016-03-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6385,6130]},{"type":"Point","properties":{"OBJECTID":153,"code":282,"Name":"2016-03-09T00:00:00Z","Length":1,"Month":3,"Dat":9,"Year":2016,"DateTime":"2016-03-09 00:00","Time":"00:00","shape_length":0},"coordinates":[768,5967]},{"type":"Point","properties":{"OBJECTID":154,"code":228,"Name":"2016-03-09T00:00:00Z","Length":2,"Month":3,"Dat":9,"Year":2016,"DateTime":"2016-03-09 00:00","Time":"00:00","shape_length":0},"coordinates":[6196,6047]},{"type":"Point","properties":{"OBJECTID":155,"code":74,"Name":"2016-03-09T00:00:00Z","Length":7,"Month":3,"Dat":9,"Year":2016,"DateTime":"2016-03-09 00:00","Time":"00:00","shape_length":0},"coordinates":[6211,7649]},{"type":"Point","properties":{"OBJECTID":156,"code":307,"Name":"2016-03-10T00:00:00Z","Length":1,"Month":3,"Dat":10,"Year":2016,"DateTime":"2016-03-10 00:00","Time":"00:00","shape_length":0},"coordinates":[6656,7397]},{"type":"Point","properties":{"OBJECTID":157,"code":76,"Name":"2016-03-10T00:00:00Z","Length":1,"Month":3,"Dat":10,"Year":2016,"DateTime":"2016-03-10 00:00","Time":"00:00","shape_length":0},"coordinates":[5578,8389]},{"type":"Point","properties":{"OBJECTID":158,"code":328,"Name":"2016-03-11T00:00:00Z","Length":1,"Month":3,"Dat":11,"Year":2016,"DateTime":"2016-03-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6667,7415]},{"type":"Point","properties":{"OBJECTID":159,"code":78,"Name":"2016-03-11T00:00:00Z","Length":1,"Month":3,"Dat":11,"Year":2016,"DateTime":"2016-03-11 00:00","Time":"00:00","shape_length":0},"coordinates":[4943,7289]},{"type":"Point","properties":{"OBJECTID":160,"code":308,"Name":"2016-03-11T00:00:00Z","Length":1,"Month":3,"Dat":11,"Year":2016,"DateTime":"2016-03-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6789,7407]},{"type":"Point","properties":{"OBJECTID":161,"code":229,"Name":"2016-03-11T00:00:00Z","Length":1,"Month":3,"Dat":11,"Year":2016,"DateTime":"2016-03-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6650,5558]},{"type":"Point","properties":{"OBJECTID":162,"code":113,"Name":"2016-03-12T00:00:00Z","Length":1,"Month":3,"Dat":12,"Year":2016,"DateTime":"2016-03-12 00:00","Time":"00:00","shape_length":0},"coordinates":[820,5926]},{"type":"Point","properties":{"OBJECTID":163,"code":79,"Name":"2016-03-13T00:00:00Z","Length":8,"Month":3,"Dat":13,"Year":2016,"DateTime":"2016-03-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6256,7427]},{"type":"Point","properties":{"OBJECTID":164,"code":77,"Name":"2016-03-13T00:00:00Z","Length":3,"Month":3,"Dat":13,"Year":2016,"DateTime":"2016-03-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6046,7792]},{"type":"Point","properties":{"OBJECTID":165,"code":254,"Name":"2016-03-13T00:00:00Z","Length":3,"Month":3,"Dat":13,"Year":2016,"DateTime":"2016-03-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6079,6336]},{"type":"Point","properties":{"OBJECTID":166,"code":80,"Name":"2016-03-13T00:00:00Z","Length":1,"Month":3,"Dat":13,"Year":2016,"DateTime":"2016-03-13 00:00","Time":"00:00","shape_length":0},"coordinates":[87,7069]},{"type":"Point","properties":{"OBJECTID":167,"code":97,"Name":"2016-03-13T00:00:00Z","Length":1,"Month":3,"Dat":13,"Year":2016,"DateTime":"2016-03-13 00:00","Time":"00:00","shape_length":0},"coordinates":[1043,5693]},{"type":"Point","properties":{"OBJECTID":168,"code":340,"Name":"2016-03-15T00:00:00Z","Length":1,"Month":3,"Dat":15,"Year":2016,"DateTime":"2016-03-15 00:00","Time":"00:00","shape_length":0},"coordinates":[712,6414]},{"type":"Point","properties":{"OBJECTID":169,"code":620,"Name":"2016-03-15T00:00:00Z","Length":3,"Month":3,"Dat":15,"Year":2016,"DateTime":"2016-03-15 00:00","Time":"00:00","shape_length":0},"coordinates":[5666,7156]},{"type":"Point","properties":{"OBJECTID":170,"code":257,"Name":"2016-03-16T00:00:00Z","Length":3,"Month":3,"Dat":16,"Year":2016,"DateTime":"2016-03-16 00:00","Time":"00:00","shape_length":0},"coordinates":[5695,6582]},{"type":"Point","properties":{"OBJECTID":171,"code":255,"Name":"2016-03-16T00:00:00Z","Length":20,"Month":3,"Dat":16,"Year":2016,"DateTime":"2016-03-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6078,6336]},{"type":"Point","properties":{"OBJECTID":172,"code":256,"Name":"2016-03-16T00:00:00Z","Length":1,"Month":3,"Dat":16,"Year":2016,"DateTime":"2016-03-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6924,5059]},{"type":"Point","properties":{"OBJECTID":173,"code":81,"Name":"2016-03-16T00:00:00Z","Length":4,"Month":3,"Dat":16,"Year":2016,"DateTime":"2016-03-16 00:00","Time":"00:00","shape_length":0},"coordinates":[5612,7109]},{"type":"Point","properties":{"OBJECTID":174,"code":154,"Name":"2016-03-17T00:00:00Z","Length":1,"Month":3,"Dat":17,"Year":2016,"DateTime":"2016-03-17 00:00","Time":"00:00","shape_length":0},"coordinates":[188,7028]},{"type":"Point","properties":{"OBJECTID":175,"code":258,"Name":"2016-03-17T00:00:00Z","Length":4,"Month":3,"Dat":17,"Year":2016,"DateTime":"2016-03-17 00:00","Time":"00:00","shape_length":0},"coordinates":[6510,5545]},{"type":"Point","properties":{"OBJECTID":176,"code":82,"Name":"2016-03-18T00:00:00Z","Length":49,"Month":3,"Dat":18,"Year":2016,"DateTime":"2016-03-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5622,7089]},{"type":"Point","properties":{"OBJECTID":177,"code":88,"Name":"2016-03-18T00:00:00Z","Length":9,"Month":3,"Dat":18,"Year":2016,"DateTime":"2016-03-18 00:00","Time":"00:00","shape_length":0},"coordinates":[1428,6490]},{"type":"Point","properties":{"OBJECTID":178,"code":93,"Name":"2016-03-18T00:00:00Z","Length":2,"Month":3,"Dat":18,"Year":2016,"DateTime":"2016-03-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5717,7344]},{"type":"Point","properties":{"OBJECTID":179,"code":121,"Name":"2016-03-18T00:00:00Z","Length":1,"Month":3,"Dat":18,"Year":2016,"DateTime":"2016-03-18 00:00","Time":"00:00","shape_length":0},"coordinates":[669,6068]},{"type":"Point","properties":{"OBJECTID":180,"code":123,"Name":"2016-03-18T00:00:00Z","Length":1,"Month":3,"Dat":18,"Year":2016,"DateTime":"2016-03-18 00:00","Time":"00:00","shape_length":0},"coordinates":[837,6858]},{"type":"Point","properties":{"OBJECTID":181,"code":165,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[245,7014]},{"type":"Point","properties":{"OBJECTID":182,"code":90,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[834,6604]},{"type":"Point","properties":{"OBJECTID":183,"code":108,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[810,6507]},{"type":"Point","properties":{"OBJECTID":184,"code":84,"Name":"2016-03-19T00:00:00Z","Length":2,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6212,7639]},{"type":"Point","properties":{"OBJECTID":185,"code":83,"Name":"2016-03-19T00:00:00Z","Length":2,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6348,7365]},{"type":"Point","properties":{"OBJECTID":186,"code":261,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6780,5416]},{"type":"Point","properties":{"OBJECTID":187,"code":140,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6637,7337]},{"type":"Point","properties":{"OBJECTID":188,"code":89,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[835,6597]},{"type":"Point","properties":{"OBJECTID":189,"code":230,"Name":"2016-03-19T00:00:00Z","Length":3,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6471,5778]},{"type":"Point","properties":{"OBJECTID":190,"code":206,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[896,5895]},{"type":"Point","properties":{"OBJECTID":191,"code":208,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[896,5895]},{"type":"Point","properties":{"OBJECTID":192,"code":259,"Name":"2016-03-19T00:00:00Z","Length":2,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6419,6755]},{"type":"Point","properties":{"OBJECTID":193,"code":262,"Name":"2016-03-19T00:00:00Z","Length":1,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6366,5733]},{"type":"Point","properties":{"OBJECTID":194,"code":260,"Name":"2016-03-19T00:00:00Z","Length":3,"Month":3,"Dat":19,"Year":2016,"DateTime":"2016-03-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6655,5483]},{"type":"Point","properties":{"OBJECTID":195,"code":92,"Name":"2016-03-20T00:00:00Z","Length":1,"Month":3,"Dat":20,"Year":2016,"DateTime":"2016-03-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5465,7628]},{"type":"Point","properties":{"OBJECTID":196,"code":85,"Name":"2016-03-20T00:00:00Z","Length":4,"Month":3,"Dat":20,"Year":2016,"DateTime":"2016-03-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5616,7301]},{"type":"Point","properties":{"OBJECTID":197,"code":128,"Name":"2016-03-20T00:00:00Z","Length":1,"Month":3,"Dat":20,"Year":2016,"DateTime":"2016-03-20 00:00","Time":"00:00","shape_length":0},"coordinates":[894,5894]},{"type":"Point","properties":{"OBJECTID":198,"code":91,"Name":"2016-03-22T00:00:00Z","Length":2,"Month":3,"Dat":22,"Year":2016,"DateTime":"2016-03-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6263,7864]},{"type":"Point","properties":{"OBJECTID":199,"code":309,"Name":"2016-03-23T00:00:00Z","Length":1,"Month":3,"Dat":23,"Year":2016,"DateTime":"2016-03-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6725,7427]},{"type":"Point","properties":{"OBJECTID":200,"code":263,"Name":"2016-03-23T00:00:00Z","Length":1,"Month":3,"Dat":23,"Year":2016,"DateTime":"2016-03-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6153,6014]},{"type":"Point","properties":{"OBJECTID":201,"code":129,"Name":"2016-03-25T00:00:00Z","Length":12,"Month":3,"Dat":25,"Year":2016,"DateTime":"2016-03-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5671,7075]},{"type":"Point","properties":{"OBJECTID":202,"code":102,"Name":"2016-03-25T00:00:00Z","Length":1,"Month":3,"Dat":25,"Year":2016,"DateTime":"2016-03-25 00:00","Time":"00:00","shape_length":0},"coordinates":[814,6500]},{"type":"Point","properties":{"OBJECTID":203,"code":109,"Name":"2016-03-26T00:00:00Z","Length":1,"Month":3,"Dat":26,"Year":2016,"DateTime":"2016-03-26 00:00","Time":"00:00","shape_length":0},"coordinates":[820,6595]},{"type":"Point","properties":{"OBJECTID":204,"code":141,"Name":"2016-03-27T00:00:00Z","Length":1,"Month":3,"Dat":27,"Year":2016,"DateTime":"2016-03-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6637,7338]},{"type":"Point","properties":{"OBJECTID":205,"code":98,"Name":"2016-03-27T00:00:00Z","Length":84,"Month":3,"Dat":27,"Year":2016,"DateTime":"2016-03-27 00:00","Time":"00:00","shape_length":0},"coordinates":[5789,7027]},{"type":"Point","properties":{"OBJECTID":206,"code":265,"Name":"2016-03-29T00:00:00Z","Length":4,"Month":3,"Dat":29,"Year":2016,"DateTime":"2016-03-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6415,2717]},{"type":"Point","properties":{"OBJECTID":207,"code":234,"Name":"2016-03-29T00:00:00Z","Length":1,"Month":3,"Dat":29,"Year":2016,"DateTime":"2016-03-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6086,5350]},{"type":"Point","properties":{"OBJECTID":208,"code":94,"Name":"2016-03-29T00:00:00Z","Length":90,"Month":3,"Dat":29,"Year":2016,"DateTime":"2016-03-29 00:00","Time":"00:00","shape_length":0},"coordinates":[5611,7078]},{"type":"Point","properties":{"OBJECTID":209,"code":216,"Name":"2016-03-30T00:00:00Z","Length":1,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[991,5657]},{"type":"Point","properties":{"OBJECTID":210,"code":266,"Name":"2016-03-30T00:00:00Z","Length":3,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[6479,5596]},{"type":"Point","properties":{"OBJECTID":211,"code":267,"Name":"2016-03-30T00:00:00Z","Length":10,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[6079,6335]},{"type":"Point","properties":{"OBJECTID":212,"code":95,"Name":"2016-03-30T00:00:00Z","Length":1,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[5151,8631]},{"type":"Point","properties":{"OBJECTID":213,"code":104,"Name":"2016-03-30T00:00:00Z","Length":9,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[6398,6970]},{"type":"Point","properties":{"OBJECTID":214,"code":100,"Name":"2016-03-30T00:00:00Z","Length":4,"Month":3,"Dat":30,"Year":2016,"DateTime":"2016-03-30 00:00","Time":"00:00","shape_length":0},"coordinates":[1109,5573]},{"type":"Point","properties":{"OBJECTID":215,"code":507,"Name":"2016-03-31T00:00:00Z","Length":1,"Month":3,"Dat":31,"Year":2016,"DateTime":"2016-03-31 00:00","Time":"00:00","shape_length":0},"coordinates":[1128,5741]},{"type":"Point","properties":{"OBJECTID":216,"code":99,"Name":"2016-03-31T00:00:00Z","Length":1,"Month":3,"Dat":31,"Year":2016,"DateTime":"2016-03-31 00:00","Time":"00:00","shape_length":0},"coordinates":[5016,8707]},{"type":"Point","properties":{"OBJECTID":217,"code":155,"Name":"2016-03-31T00:00:00Z","Length":1,"Month":3,"Dat":31,"Year":2016,"DateTime":"2016-03-31 00:00","Time":"00:00","shape_length":0},"coordinates":[170,7044]},{"type":"Point","properties":{"OBJECTID":218,"code":166,"Name":"2016-03-31T00:00:00Z","Length":1,"Month":3,"Dat":31,"Year":2016,"DateTime":"2016-03-31 00:00","Time":"00:00","shape_length":0},"coordinates":[215,7036]},{"type":"Point","properties":{"OBJECTID":219,"code":103,"Name":"2016-04-04T00:00:00Z","Length":1,"Month":4,"Dat":4,"Year":2016,"DateTime":"2016-04-04 00:00","Time":"00:00","shape_length":0},"coordinates":[762,6619]},{"type":"Point","properties":{"OBJECTID":220,"code":310,"Name":"2016-04-05T00:00:00Z","Length":2,"Month":4,"Dat":5,"Year":2016,"DateTime":"2016-04-05 00:00","Time":"00:00","shape_length":0},"coordinates":[6739,7420]},{"type":"Point","properties":{"OBJECTID":221,"code":294,"Name":"2016-04-05T00:00:00Z","Length":1,"Month":4,"Dat":5,"Year":2016,"DateTime":"2016-04-05 00:00","Time":"00:00","shape_length":0},"coordinates":[730,6026]},{"type":"Point","properties":{"OBJECTID":222,"code":331,"Name":"2016-04-06T00:00:00Z","Length":1,"Month":4,"Dat":6,"Year":2016,"DateTime":"2016-04-06 00:00","Time":"00:00","shape_length":0},"coordinates":[6805,7424]},{"type":"Point","properties":{"OBJECTID":223,"code":156,"Name":"2016-04-06T00:00:00Z","Length":1,"Month":4,"Dat":6,"Year":2016,"DateTime":"2016-04-06 00:00","Time":"00:00","shape_length":0},"coordinates":[213,7004]},{"type":"Point","properties":{"OBJECTID":224,"code":112,"Name":"2016-04-06T00:00:00Z","Length":1,"Month":4,"Dat":6,"Year":2016,"DateTime":"2016-04-06 00:00","Time":"00:00","shape_length":0},"coordinates":[458,6986]},{"type":"Point","properties":{"OBJECTID":225,"code":167,"Name":"2016-04-06T00:00:00Z","Length":2,"Month":4,"Dat":6,"Year":2016,"DateTime":"2016-04-06 00:00","Time":"00:00","shape_length":0},"coordinates":[246,6998]},{"type":"Point","properties":{"OBJECTID":226,"code":207,"Name":"2016-04-07T00:00:00Z","Length":1,"Month":4,"Dat":7,"Year":2016,"DateTime":"2016-04-07 00:00","Time":"00:00","shape_length":0},"coordinates":[815,6499]},{"type":"Point","properties":{"OBJECTID":227,"code":168,"Name":"2016-04-07T00:00:00Z","Length":1,"Month":4,"Dat":7,"Year":2016,"DateTime":"2016-04-07 00:00","Time":"00:00","shape_length":0},"coordinates":[215,6991]},{"type":"Point","properties":{"OBJECTID":228,"code":118,"Name":"2016-04-08T00:00:00Z","Length":1,"Month":4,"Dat":8,"Year":2016,"DateTime":"2016-04-08 00:00","Time":"00:00","shape_length":0},"coordinates":[106,7070]},{"type":"Point","properties":{"OBJECTID":229,"code":116,"Name":"2016-04-08T00:00:00Z","Length":1,"Month":4,"Dat":8,"Year":2016,"DateTime":"2016-04-08 00:00","Time":"00:00","shape_length":0},"coordinates":[864,5876]},{"type":"Point","properties":{"OBJECTID":230,"code":119,"Name":"2016-04-08T00:00:00Z","Length":1,"Month":4,"Dat":8,"Year":2016,"DateTime":"2016-04-08 00:00","Time":"00:00","shape_length":0},"coordinates":[1117,5527]},{"type":"Point","properties":{"OBJECTID":231,"code":111,"Name":"2016-04-08T00:00:00Z","Length":9,"Month":4,"Dat":8,"Year":2016,"DateTime":"2016-04-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6230,7507]},{"type":"Point","properties":{"OBJECTID":232,"code":114,"Name":"2016-04-10T00:00:00Z","Length":3,"Month":4,"Dat":10,"Year":2016,"DateTime":"2016-04-10 00:00","Time":"00:00","shape_length":0},"coordinates":[5562,7118]},{"type":"Point","properties":{"OBJECTID":233,"code":117,"Name":"2016-04-11T00:00:00Z","Length":4,"Month":4,"Dat":11,"Year":2016,"DateTime":"2016-04-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5568,7111]},{"type":"Point","properties":{"OBJECTID":234,"code":126,"Name":"2016-04-13T00:00:00Z","Length":459,"Month":4,"Dat":13,"Year":2016,"DateTime":"2016-04-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6108,7139]},{"type":"Point","properties":{"OBJECTID":235,"code":143,"Name":"2016-04-13T00:00:00Z","Length":1,"Month":4,"Dat":13,"Year":2016,"DateTime":"2016-04-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6637,7340]},{"type":"Point","properties":{"OBJECTID":236,"code":122,"Name":"2016-04-14T00:00:00Z","Length":1,"Month":4,"Dat":14,"Year":2016,"DateTime":"2016-04-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6242,7562]},{"type":"Point","properties":{"OBJECTID":237,"code":332,"Name":"2016-04-14T00:00:00Z","Length":1,"Month":4,"Dat":14,"Year":2016,"DateTime":"2016-04-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6647,7367]},{"type":"Point","properties":{"OBJECTID":238,"code":232,"Name":"2016-04-15T00:00:00Z","Length":2,"Month":4,"Dat":15,"Year":2016,"DateTime":"2016-04-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6497,3467]},{"type":"Point","properties":{"OBJECTID":239,"code":231,"Name":"2016-04-15T00:00:00Z","Length":1,"Month":4,"Dat":15,"Year":2016,"DateTime":"2016-04-15 00:00","Time":"00:00","shape_length":0},"coordinates":[5909,6803]},{"type":"Point","properties":{"OBJECTID":240,"code":125,"Name":"2016-04-16T00:00:00Z","Length":32,"Month":4,"Dat":16,"Year":2016,"DateTime":"2016-04-16 00:00","Time":"00:00","shape_length":0},"coordinates":[5625,7315]},{"type":"Point","properties":{"OBJECTID":241,"code":144,"Name":"2016-04-16T00:00:00Z","Length":2,"Month":4,"Dat":16,"Year":2016,"DateTime":"2016-04-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6637,7342]},{"type":"Point","properties":{"OBJECTID":242,"code":157,"Name":"2016-04-17T00:00:00Z","Length":1,"Month":4,"Dat":17,"Year":2016,"DateTime":"2016-04-17 00:00","Time":"00:00","shape_length":0},"coordinates":[186,7086]},{"type":"Point","properties":{"OBJECTID":243,"code":333,"Name":"2016-04-18T00:00:00Z","Length":1,"Month":4,"Dat":18,"Year":2016,"DateTime":"2016-04-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6659,7410]},{"type":"Point","properties":{"OBJECTID":244,"code":235,"Name":"2016-04-18T00:00:00Z","Length":3,"Month":4,"Dat":18,"Year":2016,"DateTime":"2016-04-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6443,6883]},{"type":"Point","properties":{"OBJECTID":245,"code":233,"Name":"2016-04-18T00:00:00Z","Length":4,"Month":4,"Dat":18,"Year":2016,"DateTime":"2016-04-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6348,5916]},{"type":"Point","properties":{"OBJECTID":246,"code":236,"Name":"2016-04-18T00:00:00Z","Length":3,"Month":4,"Dat":18,"Year":2016,"DateTime":"2016-04-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6480,5593]},{"type":"Point","properties":{"OBJECTID":247,"code":335,"Name":"2016-04-19T00:00:00Z","Length":1,"Month":4,"Dat":19,"Year":2016,"DateTime":"2016-04-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6652,7371]},{"type":"Point","properties":{"OBJECTID":248,"code":237,"Name":"2016-04-19T00:00:00Z","Length":1,"Month":4,"Dat":19,"Year":2016,"DateTime":"2016-04-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6553,5584]},{"type":"Point","properties":{"OBJECTID":249,"code":269,"Name":"2016-04-19T00:00:00Z","Length":1,"Month":4,"Dat":19,"Year":2016,"DateTime":"2016-04-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6496,6328]},{"type":"Point","properties":{"OBJECTID":250,"code":270,"Name":"2016-04-19T00:00:00Z","Length":1,"Month":4,"Dat":19,"Year":2016,"DateTime":"2016-04-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6897,4553]},{"type":"Point","properties":{"OBJECTID":251,"code":197,"Name":"2016-04-19T00:00:00Z","Length":6,"Month":4,"Dat":19,"Year":2016,"DateTime":"2016-04-19 00:00","Time":"00:00","shape_length":0},"coordinates":[4917,7413]},{"type":"Point","properties":{"OBJECTID":252,"code":346,"Name":"2016-04-20T00:00:00Z","Length":1,"Month":4,"Dat":20,"Year":2016,"DateTime":"2016-04-20 00:00","Time":"00:00","shape_length":0},"coordinates":[1073,5537]},{"type":"Point","properties":{"OBJECTID":253,"code":239,"Name":"2016-04-20T00:00:00Z","Length":1,"Month":4,"Dat":20,"Year":2016,"DateTime":"2016-04-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6079,6336]},{"type":"Point","properties":{"OBJECTID":254,"code":405,"Name":"2016-04-20T00:00:00Z","Length":1,"Month":4,"Dat":20,"Year":2016,"DateTime":"2016-04-20 00:00","Time":"00:00","shape_length":0},"coordinates":[813,6501]},{"type":"Point","properties":{"OBJECTID":255,"code":271,"Name":"2016-04-20T00:00:00Z","Length":3,"Month":4,"Dat":20,"Year":2016,"DateTime":"2016-04-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6498,6889]},{"type":"Point","properties":{"OBJECTID":256,"code":242,"Name":"2016-04-21T00:00:00Z","Length":5,"Month":4,"Dat":21,"Year":2016,"DateTime":"2016-04-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6568,5585]},{"type":"Point","properties":{"OBJECTID":257,"code":241,"Name":"2016-04-21T00:00:00Z","Length":1,"Month":4,"Dat":21,"Year":2016,"DateTime":"2016-04-21 00:00","Time":"00:00","shape_length":0},"coordinates":[7121,4984]},{"type":"Point","properties":{"OBJECTID":258,"code":336,"Name":"2016-04-21T00:00:00Z","Length":1,"Month":4,"Dat":21,"Year":2016,"DateTime":"2016-04-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6639,7347]},{"type":"Point","properties":{"OBJECTID":259,"code":158,"Name":"2016-04-22T00:00:00Z","Length":1,"Month":4,"Dat":22,"Year":2016,"DateTime":"2016-04-22 00:00","Time":"00:00","shape_length":0},"coordinates":[153,7075]},{"type":"Point","properties":{"OBJECTID":260,"code":315,"Name":"2016-04-22T00:00:00Z","Length":1,"Month":4,"Dat":22,"Year":2016,"DateTime":"2016-04-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6659,7376]},{"type":"Point","properties":{"OBJECTID":261,"code":131,"Name":"2016-04-23T00:00:00Z","Length":1,"Month":4,"Dat":23,"Year":2016,"DateTime":"2016-04-23 00:00","Time":"00:00","shape_length":0},"coordinates":[814,6501]},{"type":"Point","properties":{"OBJECTID":262,"code":198,"Name":"2016-04-23T00:00:00Z","Length":3,"Month":4,"Dat":23,"Year":2016,"DateTime":"2016-04-23 00:00","Time":"00:00","shape_length":0},"coordinates":[4976,7406]},{"type":"Point","properties":{"OBJECTID":263,"code":130,"Name":"2016-04-26T00:00:00Z","Length":13,"Month":4,"Dat":26,"Year":2016,"DateTime":"2016-04-26 00:00","Time":"00:00","shape_length":0},"coordinates":[5676,6987]},{"type":"Point","properties":{"OBJECTID":264,"code":316,"Name":"2016-04-26T00:00:00Z","Length":1,"Month":4,"Dat":26,"Year":2016,"DateTime":"2016-04-26 00:00","Time":"00:00","shape_length":0},"coordinates":[6646,7363]},{"type":"Point","properties":{"OBJECTID":265,"code":317,"Name":"2016-04-27T00:00:00Z","Length":1,"Month":4,"Dat":27,"Year":2016,"DateTime":"2016-04-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6674,7414]},{"type":"Point","properties":{"OBJECTID":266,"code":133,"Name":"2016-04-28T00:00:00Z","Length":20,"Month":4,"Dat":28,"Year":2016,"DateTime":"2016-04-28 00:00","Time":"00:00","shape_length":0},"coordinates":[5660,7175]},{"type":"Point","properties":{"OBJECTID":267,"code":139,"Name":"2016-04-28T00:00:00Z","Length":1,"Month":4,"Dat":28,"Year":2016,"DateTime":"2016-04-28 00:00","Time":"00:00","shape_length":0},"coordinates":[848,6482]},{"type":"Point","properties":{"OBJECTID":268,"code":134,"Name":"2016-04-28T00:00:00Z","Length":9,"Month":4,"Dat":28,"Year":2016,"DateTime":"2016-04-28 00:00","Time":"00:00","shape_length":0},"coordinates":[5603,7102]},{"type":"Point","properties":{"OBJECTID":269,"code":132,"Name":"2016-04-28T00:00:00Z","Length":84,"Month":4,"Dat":28,"Year":2016,"DateTime":"2016-04-28 00:00","Time":"00:00","shape_length":0},"coordinates":[5615,7080]},{"type":"Point","properties":{"OBJECTID":270,"code":136,"Name":"2016-04-30T00:00:00Z","Length":7,"Month":4,"Dat":30,"Year":2016,"DateTime":"2016-04-30 00:00","Time":"00:00","shape_length":0},"coordinates":[7048,3127]},{"type":"Point","properties":{"OBJECTID":271,"code":137,"Name":"2016-05-02T00:00:00Z","Length":1,"Month":5,"Dat":2,"Year":2016,"DateTime":"2016-05-02 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6726]},{"type":"Point","properties":{"OBJECTID":272,"code":138,"Name":"2016-05-02T00:00:00Z","Length":1,"Month":5,"Dat":2,"Year":2016,"DateTime":"2016-05-02 00:00","Time":"00:00","shape_length":0},"coordinates":[815,6499]},{"type":"Point","properties":{"OBJECTID":273,"code":203,"Name":"2016-05-04T00:00:00Z","Length":1,"Month":5,"Dat":4,"Year":2016,"DateTime":"2016-05-04 00:00","Time":"00:00","shape_length":0},"coordinates":[4944,7290]},{"type":"Point","properties":{"OBJECTID":274,"code":188,"Name":"2016-05-05T00:00:00Z","Length":1,"Month":5,"Dat":5,"Year":2016,"DateTime":"2016-05-05 00:00","Time":"00:00","shape_length":0},"coordinates":[253,7090]},{"type":"Point","properties":{"OBJECTID":275,"code":337,"Name":"2016-05-07T00:00:00Z","Length":1,"Month":5,"Dat":7,"Year":2016,"DateTime":"2016-05-07 00:00","Time":"00:00","shape_length":0},"coordinates":[6779,7408]},{"type":"Point","properties":{"OBJECTID":276,"code":209,"Name":"2016-05-08T00:00:00Z","Length":1,"Month":5,"Dat":8,"Year":2016,"DateTime":"2016-05-08 00:00","Time":"00:00","shape_length":0},"coordinates":[954,5792]},{"type":"Point","properties":{"OBJECTID":277,"code":142,"Name":"2016-05-08T00:00:00Z","Length":1,"Month":5,"Dat":8,"Year":2016,"DateTime":"2016-05-08 00:00","Time":"00:00","shape_length":0},"coordinates":[5152,8630]},{"type":"Point","properties":{"OBJECTID":278,"code":449,"Name":"2016-05-08T00:00:00Z","Length":1,"Month":5,"Dat":8,"Year":2016,"DateTime":"2016-05-08 00:00","Time":"00:00","shape_length":0},"coordinates":[4885,7393]},{"type":"Point","properties":{"OBJECTID":279,"code":314,"Name":"2016-05-08T00:00:00Z","Length":1,"Month":5,"Dat":8,"Year":2016,"DateTime":"2016-05-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6773,7408]},{"type":"Point","properties":{"OBJECTID":280,"code":274,"Name":"2016-05-09T00:00:00Z","Length":1,"Month":5,"Dat":9,"Year":2016,"DateTime":"2016-05-09 00:00","Time":"00:00","shape_length":0},"coordinates":[7121,4985]},{"type":"Point","properties":{"OBJECTID":281,"code":334,"Name":"2016-05-10T00:00:00Z","Length":1,"Month":5,"Dat":10,"Year":2016,"DateTime":"2016-05-10 00:00","Time":"00:00","shape_length":0},"coordinates":[6758,7409]},{"type":"Point","properties":{"OBJECTID":282,"code":172,"Name":"2016-05-10T00:00:00Z","Length":1,"Month":5,"Dat":10,"Year":2016,"DateTime":"2016-05-10 00:00","Time":"00:00","shape_length":0},"coordinates":[816,6581]},{"type":"Point","properties":{"OBJECTID":283,"code":174,"Name":"2016-05-11T00:00:00Z","Length":1,"Month":5,"Dat":11,"Year":2016,"DateTime":"2016-05-11 00:00","Time":"00:00","shape_length":0},"coordinates":[4841,7342]},{"type":"Point","properties":{"OBJECTID":284,"code":173,"Name":"2016-05-12T00:00:00Z","Length":1,"Month":5,"Dat":12,"Year":2016,"DateTime":"2016-05-12 00:00","Time":"00:00","shape_length":0},"coordinates":[815,6576]},{"type":"Point","properties":{"OBJECTID":285,"code":624,"Name":"2016-05-12T00:00:00Z","Length":1,"Month":5,"Dat":12,"Year":2016,"DateTime":"2016-05-12 00:00","Time":"00:00","shape_length":0},"coordinates":[82,7068]},{"type":"Point","properties":{"OBJECTID":286,"code":386,"Name":"2016-05-13T00:00:00Z","Length":1,"Month":5,"Dat":13,"Year":2016,"DateTime":"2016-05-13 00:00","Time":"00:00","shape_length":0},"coordinates":[773,5939]},{"type":"Point","properties":{"OBJECTID":287,"code":171,"Name":"2016-05-14T00:00:00Z","Length":1,"Month":5,"Dat":14,"Year":2016,"DateTime":"2016-05-14 00:00","Time":"00:00","shape_length":0},"coordinates":[1362,5219]},{"type":"Point","properties":{"OBJECTID":288,"code":189,"Name":"2016-05-14T00:00:00Z","Length":1,"Month":5,"Dat":14,"Year":2016,"DateTime":"2016-05-14 00:00","Time":"00:00","shape_length":0},"coordinates":[203,7005]},{"type":"Point","properties":{"OBJECTID":289,"code":199,"Name":"2016-05-14T00:00:00Z","Length":20,"Month":5,"Dat":14,"Year":2016,"DateTime":"2016-05-14 00:00","Time":"00:00","shape_length":0},"coordinates":[4436,6616]},{"type":"Point","properties":{"OBJECTID":290,"code":379,"Name":"2016-05-14T00:00:00Z","Length":1,"Month":5,"Dat":14,"Year":2016,"DateTime":"2016-05-14 00:00","Time":"00:00","shape_length":0},"coordinates":[223,7006]},{"type":"Point","properties":{"OBJECTID":291,"code":170,"Name":"2016-05-15T00:00:00Z","Length":1,"Month":5,"Dat":15,"Year":2016,"DateTime":"2016-05-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6385,6959]},{"type":"Point","properties":{"OBJECTID":292,"code":169,"Name":"2016-05-15T00:00:00Z","Length":1,"Month":5,"Dat":15,"Year":2016,"DateTime":"2016-05-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6386,6962]},{"type":"Point","properties":{"OBJECTID":293,"code":284,"Name":"2016-05-15T00:00:00Z","Length":2,"Month":5,"Dat":15,"Year":2016,"DateTime":"2016-05-15 00:00","Time":"00:00","shape_length":0},"coordinates":[6491,6328]},{"type":"Point","properties":{"OBJECTID":294,"code":313,"Name":"2016-05-16T00:00:00Z","Length":1,"Month":5,"Dat":16,"Year":2016,"DateTime":"2016-05-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6658,7380]},{"type":"Point","properties":{"OBJECTID":295,"code":190,"Name":"2016-05-17T00:00:00Z","Length":1,"Month":5,"Dat":17,"Year":2016,"DateTime":"2016-05-17 00:00","Time":"00:00","shape_length":0},"coordinates":[244,7022]},{"type":"Point","properties":{"OBJECTID":296,"code":492,"Name":"2016-05-17T00:00:00Z","Length":1,"Month":5,"Dat":17,"Year":2016,"DateTime":"2016-05-17 00:00","Time":"00:00","shape_length":0},"coordinates":[814,6581]},{"type":"Point","properties":{"OBJECTID":297,"code":193,"Name":"2016-05-18T00:00:00Z","Length":1,"Month":5,"Dat":18,"Year":2016,"DateTime":"2016-05-18 00:00","Time":"00:00","shape_length":0},"coordinates":[1406,5121]},{"type":"Point","properties":{"OBJECTID":298,"code":285,"Name":"2016-05-18T00:00:00Z","Length":2,"Month":5,"Dat":18,"Year":2016,"DateTime":"2016-05-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6636,5371]},{"type":"Point","properties":{"OBJECTID":299,"code":286,"Name":"2016-05-18T00:00:00Z","Length":11,"Month":5,"Dat":18,"Year":2016,"DateTime":"2016-05-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5695,6581]},{"type":"Point","properties":{"OBJECTID":300,"code":204,"Name":"2016-05-19T00:00:00Z","Length":57,"Month":5,"Dat":19,"Year":2016,"DateTime":"2016-05-19 00:00","Time":"00:00","shape_length":0},"coordinates":[4453,6641]},{"type":"Point","properties":{"OBJECTID":301,"code":178,"Name":"2016-05-19T00:00:00Z","Length":1,"Month":5,"Dat":19,"Year":2016,"DateTime":"2016-05-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1074,5538]},{"type":"Point","properties":{"OBJECTID":302,"code":287,"Name":"2016-05-19T00:00:00Z","Length":29,"Month":5,"Dat":19,"Year":2016,"DateTime":"2016-05-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6071,6329]},{"type":"Point","properties":{"OBJECTID":303,"code":275,"Name":"2016-05-19T00:00:00Z","Length":2,"Month":5,"Dat":19,"Year":2016,"DateTime":"2016-05-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6738,5533]},{"type":"Point","properties":{"OBJECTID":304,"code":175,"Name":"2016-05-20T00:00:00Z","Length":10,"Month":5,"Dat":20,"Year":2016,"DateTime":"2016-05-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5420,7590]},{"type":"Point","properties":{"OBJECTID":305,"code":312,"Name":"2016-05-20T00:00:00Z","Length":2,"Month":5,"Dat":20,"Year":2016,"DateTime":"2016-05-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6646,7355]},{"type":"Point","properties":{"OBJECTID":306,"code":276,"Name":"2016-05-21T00:00:00Z","Length":3,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5695,6583]},{"type":"Point","properties":{"OBJECTID":307,"code":277,"Name":"2016-05-21T00:00:00Z","Length":1,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6924,5059]},{"type":"Point","properties":{"OBJECTID":308,"code":330,"Name":"2016-05-21T00:00:00Z","Length":1,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6769,7407]},{"type":"Point","properties":{"OBJECTID":309,"code":468,"Name":"2016-05-21T00:00:00Z","Length":1,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6627]},{"type":"Point","properties":{"OBJECTID":310,"code":290,"Name":"2016-05-21T00:00:00Z","Length":5,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6484,6467]},{"type":"Point","properties":{"OBJECTID":311,"code":289,"Name":"2016-05-21T00:00:00Z","Length":3,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6513,5700]},{"type":"Point","properties":{"OBJECTID":312,"code":288,"Name":"2016-05-21T00:00:00Z","Length":1,"Month":5,"Dat":21,"Year":2016,"DateTime":"2016-05-21 00:00","Time":"00:00","shape_length":0},"coordinates":[6636,5371]},{"type":"Point","properties":{"OBJECTID":313,"code":191,"Name":"2016-05-22T00:00:00Z","Length":1,"Month":5,"Dat":22,"Year":2016,"DateTime":"2016-05-22 00:00","Time":"00:00","shape_length":0},"coordinates":[178,7038]},{"type":"Point","properties":{"OBJECTID":314,"code":240,"Name":"2016-05-22T00:00:00Z","Length":2,"Month":5,"Dat":22,"Year":2016,"DateTime":"2016-05-22 00:00","Time":"00:00","shape_length":0},"coordinates":[6522,5494]},{"type":"Point","properties":{"OBJECTID":315,"code":378,"Name":"2016-05-23T00:00:00Z","Length":1,"Month":5,"Dat":23,"Year":2016,"DateTime":"2016-05-23 00:00","Time":"00:00","shape_length":0},"coordinates":[907,5825]},{"type":"Point","properties":{"OBJECTID":316,"code":311,"Name":"2016-05-23T00:00:00Z","Length":1,"Month":5,"Dat":23,"Year":2016,"DateTime":"2016-05-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6753,7408]},{"type":"Point","properties":{"OBJECTID":317,"code":177,"Name":"2016-05-23T00:00:00Z","Length":1,"Month":5,"Dat":23,"Year":2016,"DateTime":"2016-05-23 00:00","Time":"00:00","shape_length":0},"coordinates":[1057,5575]},{"type":"Point","properties":{"OBJECTID":318,"code":385,"Name":"2016-05-24T00:00:00Z","Length":1,"Month":5,"Dat":24,"Year":2016,"DateTime":"2016-05-24 00:00","Time":"00:00","shape_length":0},"coordinates":[697,6778]},{"type":"Point","properties":{"OBJECTID":319,"code":187,"Name":"2016-05-24T00:00:00Z","Length":1,"Month":5,"Dat":24,"Year":2016,"DateTime":"2016-05-24 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6727]},{"type":"Point","properties":{"OBJECTID":320,"code":176,"Name":"2016-05-24T00:00:00Z","Length":255,"Month":5,"Dat":24,"Year":2016,"DateTime":"2016-05-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5617,7090]},{"type":"Point","properties":{"OBJECTID":321,"code":180,"Name":"2016-05-24T00:00:00Z","Length":4,"Month":5,"Dat":24,"Year":2016,"DateTime":"2016-05-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5615,7306]},{"type":"Point","properties":{"OBJECTID":322,"code":183,"Name":"2016-05-24T00:00:00Z","Length":6,"Month":5,"Dat":24,"Year":2016,"DateTime":"2016-05-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5617,7307]},{"type":"Point","properties":{"OBJECTID":323,"code":192,"Name":"2016-05-25T00:00:00Z","Length":1,"Month":5,"Dat":25,"Year":2016,"DateTime":"2016-05-25 00:00","Time":"00:00","shape_length":0},"coordinates":[298,6993]},{"type":"Point","properties":{"OBJECTID":324,"code":186,"Name":"2016-05-25T00:00:00Z","Length":9,"Month":5,"Dat":25,"Year":2016,"DateTime":"2016-05-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5736,7359]},{"type":"Point","properties":{"OBJECTID":325,"code":184,"Name":"2016-05-25T00:00:00Z","Length":1,"Month":5,"Dat":25,"Year":2016,"DateTime":"2016-05-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5636,7358]},{"type":"Point","properties":{"OBJECTID":326,"code":182,"Name":"2016-05-25T00:00:00Z","Length":47,"Month":5,"Dat":25,"Year":2016,"DateTime":"2016-05-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5612,7094]},{"type":"Point","properties":{"OBJECTID":327,"code":179,"Name":"2016-05-25T00:00:00Z","Length":550,"Month":5,"Dat":25,"Year":2016,"DateTime":"2016-05-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5595,7149]},{"type":"Point","properties":{"OBJECTID":328,"code":396,"Name":"2016-05-26T00:00:00Z","Length":1,"Month":5,"Dat":26,"Year":2016,"DateTime":"2016-05-26 00:00","Time":"00:00","shape_length":0},"coordinates":[767,6669]},{"type":"Point","properties":{"OBJECTID":329,"code":185,"Name":"2016-05-27T00:00:00Z","Length":1,"Month":5,"Dat":27,"Year":2016,"DateTime":"2016-05-27 00:00","Time":"00:00","shape_length":0},"coordinates":[5711,7234]},{"type":"Point","properties":{"OBJECTID":330,"code":238,"Name":"2016-05-27T00:00:00Z","Length":2,"Month":5,"Dat":27,"Year":2016,"DateTime":"2016-05-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6478,6842]},{"type":"Point","properties":{"OBJECTID":331,"code":297,"Name":"2016-05-27T00:00:00Z","Length":1,"Month":5,"Dat":27,"Year":2016,"DateTime":"2016-05-27 00:00","Time":"00:00","shape_length":0},"coordinates":[5155,8631]},{"type":"Point","properties":{"OBJECTID":332,"code":329,"Name":"2016-05-27T00:00:00Z","Length":1,"Month":5,"Dat":27,"Year":2016,"DateTime":"2016-05-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6804,7419]},{"type":"Point","properties":{"OBJECTID":333,"code":181,"Name":"2016-05-28T00:00:00Z","Length":245,"Month":5,"Dat":28,"Year":2016,"DateTime":"2016-05-28 00:00","Time":"00:00","shape_length":0},"coordinates":[5727,7276]},{"type":"Point","properties":{"OBJECTID":334,"code":352,"Name":"2016-05-28T00:00:00Z","Length":1,"Month":5,"Dat":28,"Year":2016,"DateTime":"2016-05-28 00:00","Time":"00:00","shape_length":0},"coordinates":[815,6500]},{"type":"Point","properties":{"OBJECTID":335,"code":296,"Name":"2016-05-28T00:00:00Z","Length":1,"Month":5,"Dat":28,"Year":2016,"DateTime":"2016-05-28 00:00","Time":"00:00","shape_length":0},"coordinates":[816,6093]},{"type":"Point","properties":{"OBJECTID":336,"code":194,"Name":"2016-05-29T00:00:00Z","Length":1,"Month":5,"Dat":29,"Year":2016,"DateTime":"2016-05-29 00:00","Time":"00:00","shape_length":0},"coordinates":[87,7069]},{"type":"Point","properties":{"OBJECTID":337,"code":384,"Name":"2016-05-30T00:00:00Z","Length":1,"Month":5,"Dat":30,"Year":2016,"DateTime":"2016-05-30 00:00","Time":"00:00","shape_length":0},"coordinates":[215,7008]},{"type":"Point","properties":{"OBJECTID":338,"code":355,"Name":"2016-05-30T00:00:00Z","Length":1,"Month":5,"Dat":30,"Year":2016,"DateTime":"2016-05-30 00:00","Time":"00:00","shape_length":0},"coordinates":[675,6472]},{"type":"Point","properties":{"OBJECTID":339,"code":382,"Name":"2016-05-30T00:00:00Z","Length":1,"Month":5,"Dat":30,"Year":2016,"DateTime":"2016-05-30 00:00","Time":"00:00","shape_length":0},"coordinates":[217,7008]},{"type":"Point","properties":{"OBJECTID":340,"code":383,"Name":"2016-05-30T00:00:00Z","Length":1,"Month":5,"Dat":30,"Year":2016,"DateTime":"2016-05-30 00:00","Time":"00:00","shape_length":0},"coordinates":[219,7008]},{"type":"Point","properties":{"OBJECTID":341,"code":357,"Name":"2016-05-31T00:00:00Z","Length":1,"Month":5,"Dat":31,"Year":2016,"DateTime":"2016-05-31 00:00","Time":"00:00","shape_length":0},"coordinates":[247,6962]},{"type":"Point","properties":{"OBJECTID":342,"code":278,"Name":"2016-06-01T00:00:00Z","Length":1,"Month":6,"Dat":1,"Year":2016,"DateTime":"2016-06-01 00:00","Time":"00:00","shape_length":0},"coordinates":[6586,3736]},{"type":"Point","properties":{"OBJECTID":343,"code":358,"Name":"2016-06-01T00:00:00Z","Length":1,"Month":6,"Dat":1,"Year":2016,"DateTime":"2016-06-01 00:00","Time":"00:00","shape_length":0},"coordinates":[163,7037]},{"type":"Point","properties":{"OBJECTID":344,"code":397,"Name":"2016-06-01T00:00:00Z","Length":1,"Month":6,"Dat":1,"Year":2016,"DateTime":"2016-06-01 00:00","Time":"00:00","shape_length":0},"coordinates":[816,6508]},{"type":"Point","properties":{"OBJECTID":345,"code":200,"Name":"2016-06-02T00:00:00Z","Length":1,"Month":6,"Dat":2,"Year":2016,"DateTime":"2016-06-02 00:00","Time":"00:00","shape_length":0},"coordinates":[5939,8219]},{"type":"Point","properties":{"OBJECTID":346,"code":195,"Name":"2016-06-02T00:00:00Z","Length":339,"Month":6,"Dat":2,"Year":2016,"DateTime":"2016-06-02 00:00","Time":"00:00","shape_length":0},"coordinates":[6156,7151]},{"type":"Point","properties":{"OBJECTID":347,"code":210,"Name":"2016-06-03T00:00:00Z","Length":1,"Month":6,"Dat":3,"Year":2016,"DateTime":"2016-06-03 00:00","Time":"00:00","shape_length":0},"coordinates":[1129,5741]},{"type":"Point","properties":{"OBJECTID":348,"code":366,"Name":"2016-06-03T00:00:00Z","Length":1,"Month":6,"Dat":3,"Year":2016,"DateTime":"2016-06-03 00:00","Time":"00:00","shape_length":0},"coordinates":[115,7045]},{"type":"Point","properties":{"OBJECTID":349,"code":279,"Name":"2016-06-03T00:00:00Z","Length":8,"Month":6,"Dat":3,"Year":2016,"DateTime":"2016-06-03 00:00","Time":"00:00","shape_length":0},"coordinates":[6079,6338]},{"type":"Point","properties":{"OBJECTID":350,"code":650,"Name":"2016-06-05T00:00:00Z","Length":1,"Month":6,"Dat":5,"Year":2016,"DateTime":"2016-06-05 00:00","Time":"00:00","shape_length":0},"coordinates":[1080,5652]},{"type":"Point","properties":{"OBJECTID":351,"code":367,"Name":"2016-06-05T00:00:00Z","Length":1,"Month":6,"Dat":5,"Year":2016,"DateTime":"2016-06-05 00:00","Time":"00:00","shape_length":0},"coordinates":[223,7001]},{"type":"Point","properties":{"OBJECTID":352,"code":205,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[2132,5809]},{"type":"Point","properties":{"OBJECTID":353,"code":369,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[222,7056]},{"type":"Point","properties":{"OBJECTID":354,"code":579,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[814,6501]},{"type":"Point","properties":{"OBJECTID":355,"code":359,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[216,6992]},{"type":"Point","properties":{"OBJECTID":356,"code":201,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[4943,7281]},{"type":"Point","properties":{"OBJECTID":357,"code":211,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[5259,8623]},{"type":"Point","properties":{"OBJECTID":358,"code":368,"Name":"2016-06-06T00:00:00Z","Length":1,"Month":6,"Dat":6,"Year":2016,"DateTime":"2016-06-06 00:00","Time":"00:00","shape_length":0},"coordinates":[252,7027]},{"type":"Point","properties":{"OBJECTID":359,"code":291,"Name":"2016-06-07T00:00:00Z","Length":2,"Month":6,"Dat":7,"Year":2016,"DateTime":"2016-06-07 00:00","Time":"00:00","shape_length":0},"coordinates":[7122,4984]},{"type":"Point","properties":{"OBJECTID":360,"code":327,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6646,7358]},{"type":"Point","properties":{"OBJECTID":361,"code":292,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[5974,6283]},{"type":"Point","properties":{"OBJECTID":362,"code":360,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[216,6985]},{"type":"Point","properties":{"OBJECTID":363,"code":370,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[216,6985]},{"type":"Point","properties":{"OBJECTID":364,"code":213,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[106,7070]},{"type":"Point","properties":{"OBJECTID":365,"code":212,"Name":"2016-06-08T00:00:00Z","Length":2,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[5638,7169]},{"type":"Point","properties":{"OBJECTID":366,"code":510,"Name":"2016-06-08T00:00:00Z","Length":1,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[236,6994]},{"type":"Point","properties":{"OBJECTID":367,"code":280,"Name":"2016-06-08T00:00:00Z","Length":3,"Month":6,"Dat":8,"Year":2016,"DateTime":"2016-06-08 00:00","Time":"00:00","shape_length":0},"coordinates":[6219,5530]},{"type":"Point","properties":{"OBJECTID":368,"code":512,"Name":"2016-06-09T00:00:00Z","Length":1,"Month":6,"Dat":9,"Year":2016,"DateTime":"2016-06-09 00:00","Time":"00:00","shape_length":0},"coordinates":[229,6976]},{"type":"Point","properties":{"OBJECTID":369,"code":215,"Name":"2016-06-09T00:00:00Z","Length":1,"Month":6,"Dat":9,"Year":2016,"DateTime":"2016-06-09 00:00","Time":"00:00","shape_length":0},"coordinates":[728,6685]},{"type":"Point","properties":{"OBJECTID":370,"code":371,"Name":"2016-06-09T00:00:00Z","Length":1,"Month":6,"Dat":9,"Year":2016,"DateTime":"2016-06-09 00:00","Time":"00:00","shape_length":0},"coordinates":[163,7038]},{"type":"Point","properties":{"OBJECTID":371,"code":372,"Name":"2016-06-09T00:00:00Z","Length":1,"Month":6,"Dat":9,"Year":2016,"DateTime":"2016-06-09 00:00","Time":"00:00","shape_length":0},"coordinates":[163,7038]},{"type":"Point","properties":{"OBJECTID":372,"code":511,"Name":"2016-06-09T00:00:00Z","Length":1,"Month":6,"Dat":9,"Year":2016,"DateTime":"2016-06-09 00:00","Time":"00:00","shape_length":0},"coordinates":[200,7008]},{"type":"Point","properties":{"OBJECTID":373,"code":218,"Name":"2016-06-11T00:00:00Z","Length":34,"Month":6,"Dat":11,"Year":2016,"DateTime":"2016-06-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5322,5922]},{"type":"Point","properties":{"OBJECTID":374,"code":214,"Name":"2016-06-11T00:00:00Z","Length":1,"Month":6,"Dat":11,"Year":2016,"DateTime":"2016-06-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5671,7184]},{"type":"Point","properties":{"OBJECTID":375,"code":281,"Name":"2016-06-11T00:00:00Z","Length":1,"Month":6,"Dat":11,"Year":2016,"DateTime":"2016-06-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6603,5465]},{"type":"Point","properties":{"OBJECTID":376,"code":306,"Name":"2016-06-11T00:00:00Z","Length":3,"Month":6,"Dat":11,"Year":2016,"DateTime":"2016-06-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6821,7431]},{"type":"Point","properties":{"OBJECTID":377,"code":361,"Name":"2016-06-12T00:00:00Z","Length":1,"Month":6,"Dat":12,"Year":2016,"DateTime":"2016-06-12 00:00","Time":"00:00","shape_length":0},"coordinates":[177,7026]},{"type":"Point","properties":{"OBJECTID":378,"code":344,"Name":"2016-06-13T00:00:00Z","Length":9,"Month":6,"Dat":13,"Year":2016,"DateTime":"2016-06-13 00:00","Time":"00:00","shape_length":0},"coordinates":[5619,7076]},{"type":"Point","properties":{"OBJECTID":379,"code":493,"Name":"2016-06-14T00:00:00Z","Length":1,"Month":6,"Dat":14,"Year":2016,"DateTime":"2016-06-14 00:00","Time":"00:00","shape_length":0},"coordinates":[751,6739]},{"type":"Point","properties":{"OBJECTID":380,"code":217,"Name":"2016-06-14T00:00:00Z","Length":1,"Month":6,"Dat":14,"Year":2016,"DateTime":"2016-06-14 00:00","Time":"00:00","shape_length":0},"coordinates":[1,7055]},{"type":"Point","properties":{"OBJECTID":381,"code":293,"Name":"2016-06-14T00:00:00Z","Length":4,"Month":6,"Dat":14,"Year":2016,"DateTime":"2016-06-14 00:00","Time":"00:00","shape_length":0},"coordinates":[758,6630]},{"type":"Point","properties":{"OBJECTID":382,"code":272,"Name":"2016-06-14T00:00:00Z","Length":19,"Month":6,"Dat":14,"Year":2016,"DateTime":"2016-06-14 00:00","Time":"00:00","shape_length":0},"coordinates":[6271,3130]},{"type":"Point","properties":{"OBJECTID":383,"code":273,"Name":"2016-06-14T00:00:00Z","Length":1,"Month":6,"Dat":14,"Year":2016,"DateTime":"2016-06-14 00:00","Time":"00:00","shape_length":0},"coordinates":[725,6708]},{"type":"Point","properties":{"OBJECTID":384,"code":524,"Name":"2016-06-15T00:00:00Z","Length":1,"Month":6,"Dat":15,"Year":2016,"DateTime":"2016-06-15 00:00","Time":"00:00","shape_length":0},"coordinates":[206,6998]},{"type":"Point","properties":{"OBJECTID":385,"code":362,"Name":"2016-06-15T00:00:00Z","Length":1,"Month":6,"Dat":15,"Year":2016,"DateTime":"2016-06-15 00:00","Time":"00:00","shape_length":0},"coordinates":[219,6963]},{"type":"Point","properties":{"OBJECTID":386,"code":345,"Name":"2016-06-15T00:00:00Z","Length":1,"Month":6,"Dat":15,"Year":2016,"DateTime":"2016-06-15 00:00","Time":"00:00","shape_length":0},"coordinates":[839,5900]},{"type":"Point","properties":{"OBJECTID":387,"code":338,"Name":"2016-06-15T00:00:00Z","Length":1,"Month":6,"Dat":15,"Year":2016,"DateTime":"2016-06-15 00:00","Time":"00:00","shape_length":0},"coordinates":[265,6950]},{"type":"Point","properties":{"OBJECTID":388,"code":325,"Name":"2016-06-16T00:00:00Z","Length":1,"Month":6,"Dat":16,"Year":2016,"DateTime":"2016-06-16 00:00","Time":"00:00","shape_length":0},"coordinates":[6646,7353]},{"type":"Point","properties":{"OBJECTID":389,"code":298,"Name":"2016-06-16T00:00:00Z","Length":2,"Month":6,"Dat":16,"Year":2016,"DateTime":"2016-06-16 00:00","Time":"00:00","shape_length":0},"coordinates":[5660,7316]},{"type":"Point","properties":{"OBJECTID":390,"code":299,"Name":"2016-06-18T00:00:00Z","Length":1,"Month":6,"Dat":18,"Year":2016,"DateTime":"2016-06-18 00:00","Time":"00:00","shape_length":0},"coordinates":[733,6700]},{"type":"Point","properties":{"OBJECTID":391,"code":322,"Name":"2016-06-18T00:00:00Z","Length":8,"Month":6,"Dat":18,"Year":2016,"DateTime":"2016-06-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6651,7360]},{"type":"Point","properties":{"OBJECTID":392,"code":373,"Name":"2016-06-19T00:00:00Z","Length":1,"Month":6,"Dat":19,"Year":2016,"DateTime":"2016-06-19 00:00","Time":"00:00","shape_length":0},"coordinates":[230,6999]},{"type":"Point","properties":{"OBJECTID":393,"code":301,"Name":"2016-06-19T00:00:00Z","Length":11,"Month":6,"Dat":19,"Year":2016,"DateTime":"2016-06-19 00:00","Time":"00:00","shape_length":0},"coordinates":[6730,7424]},{"type":"Point","properties":{"OBJECTID":394,"code":341,"Name":"2016-06-21T00:00:00Z","Length":1,"Month":6,"Dat":21,"Year":2016,"DateTime":"2016-06-21 00:00","Time":"00:00","shape_length":0},"coordinates":[726,6692]},{"type":"Point","properties":{"OBJECTID":395,"code":363,"Name":"2016-06-22T00:00:00Z","Length":1,"Month":6,"Dat":22,"Year":2016,"DateTime":"2016-06-22 00:00","Time":"00:00","shape_length":0},"coordinates":[223,6988]},{"type":"Point","properties":{"OBJECTID":396,"code":374,"Name":"2016-06-22T00:00:00Z","Length":1,"Month":6,"Dat":22,"Year":2016,"DateTime":"2016-06-22 00:00","Time":"00:00","shape_length":0},"coordinates":[283,7007]},{"type":"Point","properties":{"OBJECTID":397,"code":342,"Name":"2016-06-22T00:00:00Z","Length":1,"Month":6,"Dat":22,"Year":2016,"DateTime":"2016-06-22 00:00","Time":"00:00","shape_length":0},"coordinates":[5613,7084]},{"type":"Point","properties":{"OBJECTID":398,"code":425,"Name":"2016-06-22T00:00:00Z","Length":1,"Month":6,"Dat":22,"Year":2016,"DateTime":"2016-06-22 00:00","Time":"00:00","shape_length":0},"coordinates":[680,6596]},{"type":"Point","properties":{"OBJECTID":399,"code":364,"Name":"2016-06-23T00:00:00Z","Length":1,"Month":6,"Dat":23,"Year":2016,"DateTime":"2016-06-23 00:00","Time":"00:00","shape_length":0},"coordinates":[223,6977]},{"type":"Point","properties":{"OBJECTID":400,"code":353,"Name":"2016-06-24T00:00:00Z","Length":6,"Month":6,"Dat":24,"Year":2016,"DateTime":"2016-06-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5755,6998]},{"type":"Point","properties":{"OBJECTID":401,"code":350,"Name":"2016-06-24T00:00:00Z","Length":1,"Month":6,"Dat":24,"Year":2016,"DateTime":"2016-06-24 00:00","Time":"00:00","shape_length":0},"coordinates":[816,6498]},{"type":"Point","properties":{"OBJECTID":402,"code":414,"Name":"2016-06-25T00:00:00Z","Length":1,"Month":6,"Dat":25,"Year":2016,"DateTime":"2016-06-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5151,8632]},{"type":"Point","properties":{"OBJECTID":403,"code":348,"Name":"2016-06-25T00:00:00Z","Length":5,"Month":6,"Dat":25,"Year":2016,"DateTime":"2016-06-25 00:00","Time":"00:00","shape_length":0},"coordinates":[819,6564]},{"type":"Point","properties":{"OBJECTID":404,"code":343,"Name":"2016-06-25T00:00:00Z","Length":17,"Month":6,"Dat":25,"Year":2016,"DateTime":"2016-06-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5853,7186]},{"type":"Point","properties":{"OBJECTID":405,"code":347,"Name":"2016-06-25T00:00:00Z","Length":1,"Month":6,"Dat":25,"Year":2016,"DateTime":"2016-06-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5833,7222]},{"type":"Point","properties":{"OBJECTID":406,"code":365,"Name":"2016-06-26T00:00:00Z","Length":1,"Month":6,"Dat":26,"Year":2016,"DateTime":"2016-06-26 00:00","Time":"00:00","shape_length":0},"coordinates":[240,7017]},{"type":"Point","properties":{"OBJECTID":407,"code":351,"Name":"2016-06-27T00:00:00Z","Length":1,"Month":6,"Dat":27,"Year":2016,"DateTime":"2016-06-27 00:00","Time":"00:00","shape_length":0},"coordinates":[744,6706]},{"type":"Point","properties":{"OBJECTID":408,"code":375,"Name":"2016-06-27T00:00:00Z","Length":1,"Month":6,"Dat":27,"Year":2016,"DateTime":"2016-06-27 00:00","Time":"00:00","shape_length":0},"coordinates":[182,7004]},{"type":"Point","properties":{"OBJECTID":409,"code":376,"Name":"2016-06-28T00:00:00Z","Length":1,"Month":6,"Dat":28,"Year":2016,"DateTime":"2016-06-28 00:00","Time":"00:00","shape_length":0},"coordinates":[190,7030]},{"type":"Point","properties":{"OBJECTID":410,"code":381,"Name":"2016-06-28T00:00:00Z","Length":1,"Month":6,"Dat":28,"Year":2016,"DateTime":"2016-06-28 00:00","Time":"00:00","shape_length":0},"coordinates":[920,5832]},{"type":"Point","properties":{"OBJECTID":411,"code":349,"Name":"2016-06-29T00:00:00Z","Length":10,"Month":6,"Dat":29,"Year":2016,"DateTime":"2016-06-29 00:00","Time":"00:00","shape_length":0},"coordinates":[5587,7358]},{"type":"Point","properties":{"OBJECTID":412,"code":545,"Name":"2016-06-30T00:00:00Z","Length":1,"Month":6,"Dat":30,"Year":2016,"DateTime":"2016-06-30 00:00","Time":"00:00","shape_length":0},"coordinates":[745,6705]},{"type":"Point","properties":{"OBJECTID":413,"code":354,"Name":"2016-07-01T00:00:00Z","Length":17,"Month":7,"Dat":1,"Year":2016,"DateTime":"2016-07-01 00:00","Time":"00:00","shape_length":0},"coordinates":[5624,7124]},{"type":"Point","properties":{"OBJECTID":414,"code":435,"Name":"2016-07-01T00:00:00Z","Length":1,"Month":7,"Dat":1,"Year":2016,"DateTime":"2016-07-01 00:00","Time":"00:00","shape_length":0},"coordinates":[177,7014]},{"type":"Point","properties":{"OBJECTID":415,"code":377,"Name":"2016-07-03T00:00:00Z","Length":1,"Month":7,"Dat":3,"Year":2016,"DateTime":"2016-07-03 00:00","Time":"00:00","shape_length":0},"coordinates":[5154,8628]},{"type":"Point","properties":{"OBJECTID":416,"code":436,"Name":"2016-07-03T00:00:00Z","Length":1,"Month":7,"Dat":3,"Year":2016,"DateTime":"2016-07-03 00:00","Time":"00:00","shape_length":0},"coordinates":[175,7011]},{"type":"Point","properties":{"OBJECTID":417,"code":450,"Name":"2016-07-03T00:00:00Z","Length":1,"Month":7,"Dat":3,"Year":2016,"DateTime":"2016-07-03 00:00","Time":"00:00","shape_length":0},"coordinates":[170,7033]},{"type":"Point","properties":{"OBJECTID":418,"code":395,"Name":"2016-07-04T00:00:00Z","Length":1,"Month":7,"Dat":4,"Year":2016,"DateTime":"2016-07-04 00:00","Time":"00:00","shape_length":0},"coordinates":[760,6621]},{"type":"Point","properties":{"OBJECTID":419,"code":451,"Name":"2016-07-04T00:00:00Z","Length":1,"Month":7,"Dat":4,"Year":2016,"DateTime":"2016-07-04 00:00","Time":"00:00","shape_length":0},"coordinates":[213,7000]},{"type":"Point","properties":{"OBJECTID":420,"code":437,"Name":"2016-07-05T00:00:00Z","Length":1,"Month":7,"Dat":5,"Year":2016,"DateTime":"2016-07-05 00:00","Time":"00:00","shape_length":0},"coordinates":[174,7060]},{"type":"Point","properties":{"OBJECTID":421,"code":394,"Name":"2016-07-07T00:00:00Z","Length":1,"Month":7,"Dat":7,"Year":2016,"DateTime":"2016-07-07 00:00","Time":"00:00","shape_length":0},"coordinates":[840,6574]},{"type":"Point","properties":{"OBJECTID":422,"code":486,"Name":"2016-07-07T00:00:00Z","Length":1,"Month":7,"Dat":7,"Year":2016,"DateTime":"2016-07-07 00:00","Time":"00:00","shape_length":0},"coordinates":[35,7113]},{"type":"Point","properties":{"OBJECTID":423,"code":391,"Name":"2016-07-07T00:00:00Z","Length":1,"Month":7,"Dat":7,"Year":2016,"DateTime":"2016-07-07 00:00","Time":"00:00","shape_length":0},"coordinates":[804,6513]},{"type":"Point","properties":{"OBJECTID":424,"code":501,"Name":"2016-07-07T00:00:00Z","Length":1,"Month":7,"Dat":7,"Year":2016,"DateTime":"2016-07-07 00:00","Time":"00:00","shape_length":0},"coordinates":[4838,7340]},{"type":"Point","properties":{"OBJECTID":425,"code":452,"Name":"2016-07-08T00:00:00Z","Length":1,"Month":7,"Dat":8,"Year":2016,"DateTime":"2016-07-08 00:00","Time":"00:00","shape_length":0},"coordinates":[213,6999]},{"type":"Point","properties":{"OBJECTID":426,"code":464,"Name":"2016-07-08T00:00:00Z","Length":1,"Month":7,"Dat":8,"Year":2016,"DateTime":"2016-07-08 00:00","Time":"00:00","shape_length":0},"coordinates":[1964,5938]},{"type":"Point","properties":{"OBJECTID":427,"code":438,"Name":"2016-07-08T00:00:00Z","Length":1,"Month":7,"Dat":8,"Year":2016,"DateTime":"2016-07-08 00:00","Time":"00:00","shape_length":0},"coordinates":[244,7029]},{"type":"Point","properties":{"OBJECTID":428,"code":380,"Name":"2016-07-09T00:00:00Z","Length":3,"Month":7,"Dat":9,"Year":2016,"DateTime":"2016-07-09 00:00","Time":"00:00","shape_length":0},"coordinates":[9999,6186]},{"type":"Point","properties":{"OBJECTID":429,"code":393,"Name":"2016-07-09T00:00:00Z","Length":1,"Month":7,"Dat":9,"Year":2016,"DateTime":"2016-07-09 00:00","Time":"00:00","shape_length":0},"coordinates":[254,6963]},{"type":"Point","properties":{"OBJECTID":430,"code":513,"Name":"2016-07-09T00:00:00Z","Length":1,"Month":7,"Dat":9,"Year":2016,"DateTime":"2016-07-09 00:00","Time":"00:00","shape_length":0},"coordinates":[220,6996]},{"type":"Point","properties":{"OBJECTID":431,"code":439,"Name":"2016-07-09T00:00:00Z","Length":1,"Month":7,"Dat":9,"Year":2016,"DateTime":"2016-07-09 00:00","Time":"00:00","shape_length":0},"coordinates":[215,7014]},{"type":"Point","properties":{"OBJECTID":432,"code":400,"Name":"2016-07-10T00:00:00Z","Length":15,"Month":7,"Dat":10,"Year":2016,"DateTime":"2016-07-10 00:00","Time":"00:00","shape_length":0},"coordinates":[2277,5847]},{"type":"Point","properties":{"OBJECTID":433,"code":390,"Name":"2016-07-10T00:00:00Z","Length":1,"Month":7,"Dat":10,"Year":2016,"DateTime":"2016-07-10 00:00","Time":"00:00","shape_length":0},"coordinates":[1192,5530]},{"type":"Point","properties":{"OBJECTID":434,"code":407,"Name":"2016-07-10T00:00:00Z","Length":1,"Month":7,"Dat":10,"Year":2016,"DateTime":"2016-07-10 00:00","Time":"00:00","shape_length":0},"coordinates":[762,6621]},{"type":"Point","properties":{"OBJECTID":435,"code":440,"Name":"2016-07-10T00:00:00Z","Length":1,"Month":7,"Dat":10,"Year":2016,"DateTime":"2016-07-10 00:00","Time":"00:00","shape_length":0},"coordinates":[247,7005]},{"type":"Point","properties":{"OBJECTID":436,"code":453,"Name":"2016-07-11T00:00:00Z","Length":1,"Month":7,"Dat":11,"Year":2016,"DateTime":"2016-07-11 00:00","Time":"00:00","shape_length":0},"coordinates":[222,6989]},{"type":"Point","properties":{"OBJECTID":437,"code":398,"Name":"2016-07-11T00:00:00Z","Length":21,"Month":7,"Dat":11,"Year":2016,"DateTime":"2016-07-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5653,7203]},{"type":"Point","properties":{"OBJECTID":438,"code":392,"Name":"2016-07-11T00:00:00Z","Length":1,"Month":7,"Dat":11,"Year":2016,"DateTime":"2016-07-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5152,8633]},{"type":"Point","properties":{"OBJECTID":439,"code":389,"Name":"2016-07-11T00:00:00Z","Length":4,"Month":7,"Dat":11,"Year":2016,"DateTime":"2016-07-11 00:00","Time":"00:00","shape_length":0},"coordinates":[5682,7243]},{"type":"Point","properties":{"OBJECTID":440,"code":454,"Name":"2016-07-12T00:00:00Z","Length":1,"Month":7,"Dat":12,"Year":2016,"DateTime":"2016-07-12 00:00","Time":"00:00","shape_length":0},"coordinates":[220,6982]},{"type":"Point","properties":{"OBJECTID":441,"code":399,"Name":"2016-07-13T00:00:00Z","Length":1,"Month":7,"Dat":13,"Year":2016,"DateTime":"2016-07-13 00:00","Time":"00:00","shape_length":0},"coordinates":[775,6550]},{"type":"Point","properties":{"OBJECTID":442,"code":553,"Name":"2016-07-13T00:00:00Z","Length":1,"Month":7,"Dat":13,"Year":2016,"DateTime":"2016-07-13 00:00","Time":"00:00","shape_length":0},"coordinates":[1073,5535]},{"type":"Point","properties":{"OBJECTID":443,"code":388,"Name":"2016-07-13T00:00:00Z","Length":7,"Month":7,"Dat":13,"Year":2016,"DateTime":"2016-07-13 00:00","Time":"00:00","shape_length":0},"coordinates":[6223,7627]},{"type":"Point","properties":{"OBJECTID":444,"code":427,"Name":"2016-07-14T00:00:00Z","Length":1,"Month":7,"Dat":14,"Year":2016,"DateTime":"2016-07-14 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6621]},{"type":"Point","properties":{"OBJECTID":445,"code":402,"Name":"2016-07-14T00:00:00Z","Length":1,"Month":7,"Dat":14,"Year":2016,"DateTime":"2016-07-14 00:00","Time":"00:00","shape_length":0},"coordinates":[697,6163]},{"type":"Point","properties":{"OBJECTID":446,"code":401,"Name":"2016-07-14T00:00:00Z","Length":41,"Month":7,"Dat":14,"Year":2016,"DateTime":"2016-07-14 00:00","Time":"00:00","shape_length":0},"coordinates":[769,6636]},{"type":"Point","properties":{"OBJECTID":447,"code":455,"Name":"2016-07-14T00:00:00Z","Length":1,"Month":7,"Dat":14,"Year":2016,"DateTime":"2016-07-14 00:00","Time":"00:00","shape_length":0},"coordinates":[172,7037]},{"type":"Point","properties":{"OBJECTID":448,"code":420,"Name":"2016-07-15T00:00:00Z","Length":1,"Month":7,"Dat":15,"Year":2016,"DateTime":"2016-07-15 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6727]},{"type":"Point","properties":{"OBJECTID":449,"code":487,"Name":"2016-07-15T00:00:00Z","Length":1,"Month":7,"Dat":15,"Year":2016,"DateTime":"2016-07-15 00:00","Time":"00:00","shape_length":0},"coordinates":[762,6620]},{"type":"Point","properties":{"OBJECTID":450,"code":441,"Name":"2016-07-15T00:00:00Z","Length":1,"Month":7,"Dat":15,"Year":2016,"DateTime":"2016-07-15 00:00","Time":"00:00","shape_length":0},"coordinates":[293,7006]},{"type":"Point","properties":{"OBJECTID":451,"code":411,"Name":"2016-07-17T00:00:00Z","Length":1,"Month":7,"Dat":17,"Year":2016,"DateTime":"2016-07-17 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6621]},{"type":"Point","properties":{"OBJECTID":452,"code":443,"Name":"2016-07-18T00:00:00Z","Length":1,"Month":7,"Dat":18,"Year":2016,"DateTime":"2016-07-18 00:00","Time":"00:00","shape_length":0},"coordinates":[287,6995]},{"type":"Point","properties":{"OBJECTID":453,"code":403,"Name":"2016-07-18T00:00:00Z","Length":1,"Month":7,"Dat":18,"Year":2016,"DateTime":"2016-07-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5734,7186]},{"type":"Point","properties":{"OBJECTID":454,"code":442,"Name":"2016-07-18T00:00:00Z","Length":1,"Month":7,"Dat":18,"Year":2016,"DateTime":"2016-07-18 00:00","Time":"00:00","shape_length":0},"coordinates":[238,7018]},{"type":"Point","properties":{"OBJECTID":455,"code":469,"Name":"2016-07-19T00:00:00Z","Length":3,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1054,5556]},{"type":"Point","properties":{"OBJECTID":456,"code":404,"Name":"2016-07-19T00:00:00Z","Length":22,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[5758,7117]},{"type":"Point","properties":{"OBJECTID":457,"code":444,"Name":"2016-07-19T00:00:00Z","Length":1,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[204,7005]},{"type":"Point","properties":{"OBJECTID":458,"code":408,"Name":"2016-07-19T00:00:00Z","Length":3,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1066,5534]},{"type":"Point","properties":{"OBJECTID":459,"code":409,"Name":"2016-07-19T00:00:00Z","Length":1,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[5150,8631]},{"type":"Point","properties":{"OBJECTID":460,"code":406,"Name":"2016-07-19T00:00:00Z","Length":2,"Month":7,"Dat":19,"Year":2016,"DateTime":"2016-07-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1620,6516]},{"type":"Point","properties":{"OBJECTID":461,"code":445,"Name":"2016-07-20T00:00:00Z","Length":1,"Month":7,"Dat":20,"Year":2016,"DateTime":"2016-07-20 00:00","Time":"00:00","shape_length":0},"coordinates":[173,7051]},{"type":"Point","properties":{"OBJECTID":462,"code":456,"Name":"2016-07-20T00:00:00Z","Length":1,"Month":7,"Dat":20,"Year":2016,"DateTime":"2016-07-20 00:00","Time":"00:00","shape_length":0},"coordinates":[221,6994]},{"type":"Point","properties":{"OBJECTID":463,"code":428,"Name":"2016-07-20T00:00:00Z","Length":1,"Month":7,"Dat":20,"Year":2016,"DateTime":"2016-07-20 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6725]},{"type":"Point","properties":{"OBJECTID":464,"code":434,"Name":"2016-07-21T00:00:00Z","Length":10,"Month":7,"Dat":21,"Year":2016,"DateTime":"2016-07-21 00:00","Time":"00:00","shape_length":0},"coordinates":[4839,7338]},{"type":"Point","properties":{"OBJECTID":465,"code":412,"Name":"2016-07-21T00:00:00Z","Length":18,"Month":7,"Dat":21,"Year":2016,"DateTime":"2016-07-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5616,7145]},{"type":"Point","properties":{"OBJECTID":466,"code":410,"Name":"2016-07-21T00:00:00Z","Length":120,"Month":7,"Dat":21,"Year":2016,"DateTime":"2016-07-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5607,7078]},{"type":"Point","properties":{"OBJECTID":467,"code":457,"Name":"2016-07-22T00:00:00Z","Length":1,"Month":7,"Dat":22,"Year":2016,"DateTime":"2016-07-22 00:00","Time":"00:00","shape_length":0},"coordinates":[227,6990]},{"type":"Point","properties":{"OBJECTID":468,"code":413,"Name":"2016-07-22T00:00:00Z","Length":26,"Month":7,"Dat":22,"Year":2016,"DateTime":"2016-07-22 00:00","Time":"00:00","shape_length":0},"coordinates":[9528,4354]},{"type":"Point","properties":{"OBJECTID":469,"code":470,"Name":"2016-07-22T00:00:00Z","Length":1,"Month":7,"Dat":22,"Year":2016,"DateTime":"2016-07-22 00:00","Time":"00:00","shape_length":0},"coordinates":[586,6013]},{"type":"Point","properties":{"OBJECTID":470,"code":417,"Name":"2016-07-23T00:00:00Z","Length":1,"Month":7,"Dat":23,"Year":2016,"DateTime":"2016-07-23 00:00","Time":"00:00","shape_length":0},"coordinates":[1312,5337]},{"type":"Point","properties":{"OBJECTID":471,"code":416,"Name":"2016-07-23T00:00:00Z","Length":1,"Month":7,"Dat":23,"Year":2016,"DateTime":"2016-07-23 00:00","Time":"00:00","shape_length":0},"coordinates":[699,6779]},{"type":"Point","properties":{"OBJECTID":472,"code":459,"Name":"2016-07-24T00:00:00Z","Length":1,"Month":7,"Dat":24,"Year":2016,"DateTime":"2016-07-24 00:00","Time":"00:00","shape_length":0},"coordinates":[223,6990]},{"type":"Point","properties":{"OBJECTID":473,"code":458,"Name":"2016-07-25T00:00:00Z","Length":1,"Month":7,"Dat":25,"Year":2016,"DateTime":"2016-07-25 00:00","Time":"00:00","shape_length":0},"coordinates":[315,7034]},{"type":"Point","properties":{"OBJECTID":474,"code":418,"Name":"2016-07-25T00:00:00Z","Length":1,"Month":7,"Dat":25,"Year":2016,"DateTime":"2016-07-25 00:00","Time":"00:00","shape_length":0},"coordinates":[688,5987]},{"type":"Point","properties":{"OBJECTID":475,"code":446,"Name":"2016-07-25T00:00:00Z","Length":1,"Month":7,"Dat":25,"Year":2016,"DateTime":"2016-07-25 00:00","Time":"00:00","shape_length":0},"coordinates":[225,6989]},{"type":"Point","properties":{"OBJECTID":476,"code":422,"Name":"2016-07-26T00:00:00Z","Length":1,"Month":7,"Dat":26,"Year":2016,"DateTime":"2016-07-26 00:00","Time":"00:00","shape_length":0},"coordinates":[698,6780]},{"type":"Point","properties":{"OBJECTID":477,"code":421,"Name":"2016-07-26T00:00:00Z","Length":1,"Month":7,"Dat":26,"Year":2016,"DateTime":"2016-07-26 00:00","Time":"00:00","shape_length":0},"coordinates":[819,6598]},{"type":"Point","properties":{"OBJECTID":478,"code":415,"Name":"2016-07-26T00:00:00Z","Length":1,"Month":7,"Dat":26,"Year":2016,"DateTime":"2016-07-26 00:00","Time":"00:00","shape_length":0},"coordinates":[739,6688]},{"type":"Point","properties":{"OBJECTID":479,"code":463,"Name":"2016-07-27T00:00:00Z","Length":1,"Month":7,"Dat":27,"Year":2016,"DateTime":"2016-07-27 00:00","Time":"00:00","shape_length":0},"coordinates":[725,6707]},{"type":"Point","properties":{"OBJECTID":480,"code":426,"Name":"2016-07-29T00:00:00Z","Length":9,"Month":7,"Dat":29,"Year":2016,"DateTime":"2016-07-29 00:00","Time":"00:00","shape_length":0},"coordinates":[6573,6848]},{"type":"Point","properties":{"OBJECTID":481,"code":429,"Name":"2016-07-29T00:00:00Z","Length":1,"Month":7,"Dat":29,"Year":2016,"DateTime":"2016-07-29 00:00","Time":"00:00","shape_length":0},"coordinates":[455,6990]},{"type":"Point","properties":{"OBJECTID":482,"code":525,"Name":"2016-07-30T00:00:00Z","Length":1,"Month":7,"Dat":30,"Year":2016,"DateTime":"2016-07-30 00:00","Time":"00:00","shape_length":0},"coordinates":[221,7004]},{"type":"Point","properties":{"OBJECTID":483,"code":460,"Name":"2016-07-30T00:00:00Z","Length":1,"Month":7,"Dat":30,"Year":2016,"DateTime":"2016-07-30 00:00","Time":"00:00","shape_length":0},"coordinates":[189,7017]},{"type":"Point","properties":{"OBJECTID":484,"code":423,"Name":"2016-07-30T00:00:00Z","Length":1,"Month":7,"Dat":30,"Year":2016,"DateTime":"2016-07-30 00:00","Time":"00:00","shape_length":0},"coordinates":[5627,7233]},{"type":"Point","properties":{"OBJECTID":485,"code":424,"Name":"2016-07-30T00:00:00Z","Length":4,"Month":7,"Dat":30,"Year":2016,"DateTime":"2016-07-30 00:00","Time":"00:00","shape_length":0},"coordinates":[5639,7267]},{"type":"Point","properties":{"OBJECTID":486,"code":527,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[213,6991]},{"type":"Point","properties":{"OBJECTID":487,"code":461,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[798,6517]},{"type":"Point","properties":{"OBJECTID":488,"code":431,"Name":"2016-07-31T00:00:00Z","Length":8,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[1362,5223]},{"type":"Point","properties":{"OBJECTID":489,"code":430,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[7,7063]},{"type":"Point","properties":{"OBJECTID":490,"code":508,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[724,6470]},{"type":"Point","properties":{"OBJECTID":491,"code":526,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[210,7003]},{"type":"Point","properties":{"OBJECTID":492,"code":630,"Name":"2016-07-31T00:00:00Z","Length":1,"Month":7,"Dat":31,"Year":2016,"DateTime":"2016-07-31 00:00","Time":"00:00","shape_length":0},"coordinates":[724,6472]},{"type":"Point","properties":{"OBJECTID":493,"code":465,"Name":"2016-08-01T00:00:00Z","Length":21,"Month":8,"Dat":1,"Year":2016,"DateTime":"2016-08-01 00:00","Time":"00:00","shape_length":0},"coordinates":[5628,7077]},{"type":"Point","properties":{"OBJECTID":494,"code":521,"Name":"2016-08-02T00:00:00Z","Length":2,"Month":8,"Dat":2,"Year":2016,"DateTime":"2016-08-02 00:00","Time":"00:00","shape_length":0},"coordinates":[1292,5467]},{"type":"Point","properties":{"OBJECTID":495,"code":462,"Name":"2016-08-02T00:00:00Z","Length":2,"Month":8,"Dat":2,"Year":2016,"DateTime":"2016-08-02 00:00","Time":"00:00","shape_length":0},"coordinates":[1364,5221]},{"type":"Point","properties":{"OBJECTID":496,"code":479,"Name":"2016-08-03T00:00:00Z","Length":1,"Month":8,"Dat":3,"Year":2016,"DateTime":"2016-08-03 00:00","Time":"00:00","shape_length":0},"coordinates":[289,6892]},{"type":"Point","properties":{"OBJECTID":497,"code":514,"Name":"2016-08-03T00:00:00Z","Length":1,"Month":8,"Dat":3,"Year":2016,"DateTime":"2016-08-03 00:00","Time":"00:00","shape_length":0},"coordinates":[221,6996]},{"type":"Point","properties":{"OBJECTID":498,"code":528,"Name":"2016-08-05T00:00:00Z","Length":1,"Month":8,"Dat":5,"Year":2016,"DateTime":"2016-08-05 00:00","Time":"00:00","shape_length":0},"coordinates":[224,6991]},{"type":"Point","properties":{"OBJECTID":499,"code":489,"Name":"2016-08-05T00:00:00Z","Length":1,"Month":8,"Dat":5,"Year":2016,"DateTime":"2016-08-05 00:00","Time":"00:00","shape_length":0},"coordinates":[267,6951]},{"type":"Point","properties":{"OBJECTID":500,"code":529,"Name":"2016-08-05T00:00:00Z","Length":1,"Month":8,"Dat":5,"Year":2016,"DateTime":"2016-08-05 00:00","Time":"00:00","shape_length":0},"coordinates":[224,6994]},{"type":"Point","properties":{"OBJECTID":501,"code":515,"Name":"2016-08-05T00:00:00Z","Length":1,"Month":8,"Dat":5,"Year":2016,"DateTime":"2016-08-05 00:00","Time":"00:00","shape_length":0},"coordinates":[223,6992]},{"type":"Point","properties":{"OBJECTID":502,"code":530,"Name":"2016-08-06T00:00:00Z","Length":1,"Month":8,"Dat":6,"Year":2016,"DateTime":"2016-08-06 00:00","Time":"00:00","shape_length":0},"coordinates":[211,6996]},{"type":"Point","properties":{"OBJECTID":503,"code":472,"Name":"2016-08-06T00:00:00Z","Length":1,"Month":8,"Dat":6,"Year":2016,"DateTime":"2016-08-06 00:00","Time":"00:00","shape_length":0},"coordinates":[758,6609]},{"type":"Point","properties":{"OBJECTID":504,"code":471,"Name":"2016-08-06T00:00:00Z","Length":1,"Month":8,"Dat":6,"Year":2016,"DateTime":"2016-08-06 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6731]},{"type":"Point","properties":{"OBJECTID":505,"code":473,"Name":"2016-08-07T00:00:00Z","Length":1,"Month":8,"Dat":7,"Year":2016,"DateTime":"2016-08-07 00:00","Time":"00:00","shape_length":0},"coordinates":[5622,7076]},{"type":"Point","properties":{"OBJECTID":506,"code":531,"Name":"2016-08-07T00:00:00Z","Length":1,"Month":8,"Dat":7,"Year":2016,"DateTime":"2016-08-07 00:00","Time":"00:00","shape_length":0},"coordinates":[220,6998]},{"type":"Point","properties":{"OBJECTID":507,"code":478,"Name":"2016-08-07T00:00:00Z","Length":1,"Month":8,"Dat":7,"Year":2016,"DateTime":"2016-08-07 00:00","Time":"00:00","shape_length":0},"coordinates":[700,6779]},{"type":"Point","properties":{"OBJECTID":508,"code":516,"Name":"2016-08-07T00:00:00Z","Length":1,"Month":8,"Dat":7,"Year":2016,"DateTime":"2016-08-07 00:00","Time":"00:00","shape_length":0},"coordinates":[219,6984]},{"type":"Point","properties":{"OBJECTID":509,"code":474,"Name":"2016-08-07T00:00:00Z","Length":1,"Month":8,"Dat":7,"Year":2016,"DateTime":"2016-08-07 00:00","Time":"00:00","shape_length":0},"coordinates":[814,6501]},{"type":"Point","properties":{"OBJECTID":510,"code":517,"Name":"2016-08-08T00:00:00Z","Length":1,"Month":8,"Dat":8,"Year":2016,"DateTime":"2016-08-08 00:00","Time":"00:00","shape_length":0},"coordinates":[223,6994]},{"type":"Point","properties":{"OBJECTID":511,"code":477,"Name":"2016-08-09T00:00:00Z","Length":1,"Month":8,"Dat":9,"Year":2016,"DateTime":"2016-08-09 00:00","Time":"00:00","shape_length":0},"coordinates":[804,6513]},{"type":"Point","properties":{"OBJECTID":512,"code":475,"Name":"2016-08-09T00:00:00Z","Length":1,"Month":8,"Dat":9,"Year":2016,"DateTime":"2016-08-09 00:00","Time":"00:00","shape_length":0},"coordinates":[811,6510]},{"type":"Point","properties":{"OBJECTID":513,"code":476,"Name":"2016-08-09T00:00:00Z","Length":1,"Month":8,"Dat":9,"Year":2016,"DateTime":"2016-08-09 00:00","Time":"00:00","shape_length":0},"coordinates":[745,6645]},{"type":"Point","properties":{"OBJECTID":514,"code":504,"Name":"2016-08-10T00:00:00Z","Length":6,"Month":8,"Dat":10,"Year":2016,"DateTime":"2016-08-10 00:00","Time":"00:00","shape_length":0},"coordinates":[1708,4943]},{"type":"Point","properties":{"OBJECTID":515,"code":481,"Name":"2016-08-11T00:00:00Z","Length":1,"Month":8,"Dat":11,"Year":2016,"DateTime":"2016-08-11 00:00","Time":"00:00","shape_length":0},"coordinates":[802,5950]},{"type":"Point","properties":{"OBJECTID":516,"code":555,"Name":"2016-08-13T00:00:00Z","Length":1,"Month":8,"Dat":13,"Year":2016,"DateTime":"2016-08-13 00:00","Time":"00:00","shape_length":0},"coordinates":[1707,4324]},{"type":"Point","properties":{"OBJECTID":517,"code":482,"Name":"2016-08-14T00:00:00Z","Length":1,"Month":8,"Dat":14,"Year":2016,"DateTime":"2016-08-14 00:00","Time":"00:00","shape_length":0},"coordinates":[5621,7076]},{"type":"Point","properties":{"OBJECTID":518,"code":480,"Name":"2016-08-14T00:00:00Z","Length":1,"Month":8,"Dat":14,"Year":2016,"DateTime":"2016-08-14 00:00","Time":"00:00","shape_length":0},"coordinates":[4911,7414]},{"type":"Point","properties":{"OBJECTID":519,"code":483,"Name":"2016-08-14T00:00:00Z","Length":3,"Month":8,"Dat":14,"Year":2016,"DateTime":"2016-08-14 00:00","Time":"00:00","shape_length":0},"coordinates":[5612,7077]},{"type":"Point","properties":{"OBJECTID":520,"code":484,"Name":"2016-08-15T00:00:00Z","Length":1,"Month":8,"Dat":15,"Year":2016,"DateTime":"2016-08-15 00:00","Time":"00:00","shape_length":0},"coordinates":[714,7282]},{"type":"Point","properties":{"OBJECTID":521,"code":485,"Name":"2016-08-15T00:00:00Z","Length":1,"Month":8,"Dat":15,"Year":2016,"DateTime":"2016-08-15 00:00","Time":"00:00","shape_length":0},"coordinates":[1707,4322]},{"type":"Point","properties":{"OBJECTID":522,"code":490,"Name":"2016-08-16T00:00:00Z","Length":1,"Month":8,"Dat":16,"Year":2016,"DateTime":"2016-08-16 00:00","Time":"00:00","shape_length":0},"coordinates":[4827,7351]},{"type":"Point","properties":{"OBJECTID":523,"code":538,"Name":"2016-08-16T00:00:00Z","Length":3,"Month":8,"Dat":16,"Year":2016,"DateTime":"2016-08-16 00:00","Time":"00:00","shape_length":0},"coordinates":[700,6159]},{"type":"Point","properties":{"OBJECTID":524,"code":488,"Name":"2016-08-17T00:00:00Z","Length":7,"Month":8,"Dat":17,"Year":2016,"DateTime":"2016-08-17 00:00","Time":"00:00","shape_length":0},"coordinates":[5612,7085]},{"type":"Point","properties":{"OBJECTID":525,"code":556,"Name":"2016-08-18T00:00:00Z","Length":1,"Month":8,"Dat":18,"Year":2016,"DateTime":"2016-08-18 00:00","Time":"00:00","shape_length":0},"coordinates":[1724,4358]},{"type":"Point","properties":{"OBJECTID":526,"code":502,"Name":"2016-08-19T00:00:00Z","Length":1,"Month":8,"Dat":19,"Year":2016,"DateTime":"2016-08-19 00:00","Time":"00:00","shape_length":0},"coordinates":[1696,4934]},{"type":"Point","properties":{"OBJECTID":527,"code":491,"Name":"2016-08-20T00:00:00Z","Length":3,"Month":8,"Dat":20,"Year":2016,"DateTime":"2016-08-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6205,7552]},{"type":"Point","properties":{"OBJECTID":528,"code":518,"Name":"2016-08-20T00:00:00Z","Length":1,"Month":8,"Dat":20,"Year":2016,"DateTime":"2016-08-20 00:00","Time":"00:00","shape_length":0},"coordinates":[224,7000]},{"type":"Point","properties":{"OBJECTID":529,"code":494,"Name":"2016-08-21T00:00:00Z","Length":1,"Month":8,"Dat":21,"Year":2016,"DateTime":"2016-08-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5152,8629]},{"type":"Point","properties":{"OBJECTID":530,"code":495,"Name":"2016-08-21T00:00:00Z","Length":1,"Month":8,"Dat":21,"Year":2016,"DateTime":"2016-08-21 00:00","Time":"00:00","shape_length":0},"coordinates":[848,6483]},{"type":"Point","properties":{"OBJECTID":531,"code":539,"Name":"2016-08-22T00:00:00Z","Length":7,"Month":8,"Dat":22,"Year":2016,"DateTime":"2016-08-22 00:00","Time":"00:00","shape_length":0},"coordinates":[4828,7350]},{"type":"Point","properties":{"OBJECTID":532,"code":532,"Name":"2016-08-22T00:00:00Z","Length":1,"Month":8,"Dat":22,"Year":2016,"DateTime":"2016-08-22 00:00","Time":"00:00","shape_length":0},"coordinates":[225,7002]},{"type":"Point","properties":{"OBJECTID":533,"code":519,"Name":"2016-08-23T00:00:00Z","Length":1,"Month":8,"Dat":23,"Year":2016,"DateTime":"2016-08-23 00:00","Time":"00:00","shape_length":0},"coordinates":[210,6998]},{"type":"Point","properties":{"OBJECTID":534,"code":550,"Name":"2016-08-23T00:00:00Z","Length":1,"Month":8,"Dat":23,"Year":2016,"DateTime":"2016-08-23 00:00","Time":"00:00","shape_length":0},"coordinates":[6041,7939]},{"type":"Point","properties":{"OBJECTID":535,"code":496,"Name":"2016-08-24T00:00:00Z","Length":1,"Month":8,"Dat":24,"Year":2016,"DateTime":"2016-08-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5755,7413]},{"type":"Point","properties":{"OBJECTID":536,"code":577,"Name":"2016-08-25T00:00:00Z","Length":1,"Month":8,"Dat":25,"Year":2016,"DateTime":"2016-08-25 00:00","Time":"00:00","shape_length":0},"coordinates":[4928,7415]},{"type":"Point","properties":{"OBJECTID":537,"code":533,"Name":"2016-08-25T00:00:00Z","Length":1,"Month":8,"Dat":25,"Year":2016,"DateTime":"2016-08-25 00:00","Time":"00:00","shape_length":0},"coordinates":[209,7005]},{"type":"Point","properties":{"OBJECTID":538,"code":540,"Name":"2016-08-25T00:00:00Z","Length":1,"Month":8,"Dat":25,"Year":2016,"DateTime":"2016-08-25 00:00","Time":"00:00","shape_length":0},"coordinates":[261,6972]},{"type":"Point","properties":{"OBJECTID":539,"code":498,"Name":"2016-08-25T00:00:00Z","Length":1,"Month":8,"Dat":25,"Year":2016,"DateTime":"2016-08-25 00:00","Time":"00:00","shape_length":0},"coordinates":[699,6779]},{"type":"Point","properties":{"OBJECTID":540,"code":534,"Name":"2016-08-26T00:00:00Z","Length":1,"Month":8,"Dat":26,"Year":2016,"DateTime":"2016-08-26 00:00","Time":"00:00","shape_length":0},"coordinates":[216,6994]},{"type":"Point","properties":{"OBJECTID":541,"code":557,"Name":"2016-08-26T00:00:00Z","Length":1,"Month":8,"Dat":26,"Year":2016,"DateTime":"2016-08-26 00:00","Time":"00:00","shape_length":0},"coordinates":[1725,4964]},{"type":"Point","properties":{"OBJECTID":542,"code":499,"Name":"2016-08-27T00:00:00Z","Length":1,"Month":8,"Dat":27,"Year":2016,"DateTime":"2016-08-27 00:00","Time":"00:00","shape_length":0},"coordinates":[738,6011]},{"type":"Point","properties":{"OBJECTID":543,"code":581,"Name":"2016-08-27T00:00:00Z","Length":1,"Month":8,"Dat":27,"Year":2016,"DateTime":"2016-08-27 00:00","Time":"00:00","shape_length":0},"coordinates":[857,5867]},{"type":"Point","properties":{"OBJECTID":544,"code":500,"Name":"2016-08-28T00:00:00Z","Length":2,"Month":8,"Dat":28,"Year":2016,"DateTime":"2016-08-28 00:00","Time":"00:00","shape_length":0},"coordinates":[5603,7361]},{"type":"Point","properties":{"OBJECTID":545,"code":547,"Name":"2016-08-28T00:00:00Z","Length":3,"Month":8,"Dat":28,"Year":2016,"DateTime":"2016-08-28 00:00","Time":"00:00","shape_length":0},"coordinates":[6430,3478]},{"type":"Point","properties":{"OBJECTID":546,"code":503,"Name":"2016-08-28T00:00:00Z","Length":1,"Month":8,"Dat":28,"Year":2016,"DateTime":"2016-08-28 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6725]},{"type":"Point","properties":{"OBJECTID":547,"code":520,"Name":"2016-08-29T00:00:00Z","Length":1,"Month":8,"Dat":29,"Year":2016,"DateTime":"2016-08-29 00:00","Time":"00:00","shape_length":0},"coordinates":[227,6993]},{"type":"Point","properties":{"OBJECTID":548,"code":522,"Name":"2016-08-30T00:00:00Z","Length":1,"Month":8,"Dat":30,"Year":2016,"DateTime":"2016-08-30 00:00","Time":"00:00","shape_length":0},"coordinates":[5757,7175]},{"type":"Point","properties":{"OBJECTID":549,"code":505,"Name":"2016-08-30T00:00:00Z","Length":6,"Month":8,"Dat":30,"Year":2016,"DateTime":"2016-08-30 00:00","Time":"00:00","shape_length":0},"coordinates":[807,6494]},{"type":"Point","properties":{"OBJECTID":550,"code":509,"Name":"2016-08-30T00:00:00Z","Length":3,"Month":8,"Dat":30,"Year":2016,"DateTime":"2016-08-30 00:00","Time":"00:00","shape_length":0},"coordinates":[5751,7153]},{"type":"Point","properties":{"OBJECTID":551,"code":536,"Name":"2016-08-31T00:00:00Z","Length":1,"Month":8,"Dat":31,"Year":2016,"DateTime":"2016-08-31 00:00","Time":"00:00","shape_length":0},"coordinates":[5789,7084]},{"type":"Point","properties":{"OBJECTID":552,"code":588,"Name":"2016-09-01T00:00:00Z","Length":1,"Month":9,"Dat":1,"Year":2016,"DateTime":"2016-09-01 00:00","Time":"00:00","shape_length":0},"coordinates":[221,7002]},{"type":"Point","properties":{"OBJECTID":553,"code":589,"Name":"2016-09-01T00:00:00Z","Length":1,"Month":9,"Dat":1,"Year":2016,"DateTime":"2016-09-01 00:00","Time":"00:00","shape_length":0},"coordinates":[217,7003]},{"type":"Point","properties":{"OBJECTID":554,"code":537,"Name":"2016-09-01T00:00:00Z","Length":3,"Month":9,"Dat":1,"Year":2016,"DateTime":"2016-09-01 00:00","Time":"00:00","shape_length":0},"coordinates":[5629,7327]},{"type":"Point","properties":{"OBJECTID":555,"code":523,"Name":"2016-09-01T00:00:00Z","Length":3,"Month":9,"Dat":1,"Year":2016,"DateTime":"2016-09-01 00:00","Time":"00:00","shape_length":0},"coordinates":[1727,4945]},{"type":"Point","properties":{"OBJECTID":556,"code":535,"Name":"2016-09-01T00:00:00Z","Length":1,"Month":9,"Dat":1,"Year":2016,"DateTime":"2016-09-01 00:00","Time":"00:00","shape_length":0},"coordinates":[221,6896]},{"type":"Point","properties":{"OBJECTID":557,"code":548,"Name":"2016-09-02T00:00:00Z","Length":1,"Month":9,"Dat":2,"Year":2016,"DateTime":"2016-09-02 00:00","Time":"00:00","shape_length":0},"coordinates":[699,6778]},{"type":"Point","properties":{"OBJECTID":558,"code":541,"Name":"2016-09-04T00:00:00Z","Length":7,"Month":9,"Dat":4,"Year":2016,"DateTime":"2016-09-04 00:00","Time":"00:00","shape_length":0},"coordinates":[5774,7078]},{"type":"Point","properties":{"OBJECTID":559,"code":542,"Name":"2016-09-04T00:00:00Z","Length":7,"Month":9,"Dat":4,"Year":2016,"DateTime":"2016-09-04 00:00","Time":"00:00","shape_length":0},"coordinates":[5771,7120]},{"type":"Point","properties":{"OBJECTID":560,"code":543,"Name":"2016-09-04T00:00:00Z","Length":1,"Month":9,"Dat":4,"Year":2016,"DateTime":"2016-09-04 00:00","Time":"00:00","shape_length":0},"coordinates":[5828,7156]},{"type":"Point","properties":{"OBJECTID":561,"code":544,"Name":"2016-09-04T00:00:00Z","Length":5,"Month":9,"Dat":4,"Year":2016,"DateTime":"2016-09-04 00:00","Time":"00:00","shape_length":0},"coordinates":[5616,7076]},{"type":"Point","properties":{"OBJECTID":562,"code":602,"Name":"2016-09-05T00:00:00Z","Length":1,"Month":9,"Dat":5,"Year":2016,"DateTime":"2016-09-05 00:00","Time":"00:00","shape_length":0},"coordinates":[222,6982]},{"type":"Point","properties":{"OBJECTID":563,"code":603,"Name":"2016-09-06T00:00:00Z","Length":1,"Month":9,"Dat":6,"Year":2016,"DateTime":"2016-09-06 00:00","Time":"00:00","shape_length":0},"coordinates":[222,7006]},{"type":"Point","properties":{"OBJECTID":564,"code":546,"Name":"2016-09-06T00:00:00Z","Length":4,"Month":9,"Dat":6,"Year":2016,"DateTime":"2016-09-06 00:00","Time":"00:00","shape_length":0},"coordinates":[5614,7075]},{"type":"Point","properties":{"OBJECTID":565,"code":590,"Name":"2016-09-06T00:00:00Z","Length":1,"Month":9,"Dat":6,"Year":2016,"DateTime":"2016-09-06 00:00","Time":"00:00","shape_length":0},"coordinates":[224,6984]},{"type":"Point","properties":{"OBJECTID":566,"code":554,"Name":"2016-09-07T00:00:00Z","Length":1,"Month":9,"Dat":7,"Year":2016,"DateTime":"2016-09-07 00:00","Time":"00:00","shape_length":0},"coordinates":[991,5664]},{"type":"Point","properties":{"OBJECTID":567,"code":551,"Name":"2016-09-07T00:00:00Z","Length":2,"Month":9,"Dat":7,"Year":2016,"DateTime":"2016-09-07 00:00","Time":"00:00","shape_length":0},"coordinates":[1742,4952]},{"type":"Point","properties":{"OBJECTID":568,"code":558,"Name":"2016-09-07T00:00:00Z","Length":1,"Month":9,"Dat":7,"Year":2016,"DateTime":"2016-09-07 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6621]},{"type":"Point","properties":{"OBJECTID":569,"code":560,"Name":"2016-09-09T00:00:00Z","Length":1,"Month":9,"Dat":9,"Year":2016,"DateTime":"2016-09-09 00:00","Time":"00:00","shape_length":0},"coordinates":[760,6622]},{"type":"Point","properties":{"OBJECTID":570,"code":559,"Name":"2016-09-09T00:00:00Z","Length":1,"Month":9,"Dat":9,"Year":2016,"DateTime":"2016-09-09 00:00","Time":"00:00","shape_length":0},"coordinates":[4775,7460]},{"type":"Point","properties":{"OBJECTID":571,"code":572,"Name":"2016-09-10T00:00:00Z","Length":1,"Month":9,"Dat":10,"Year":2016,"DateTime":"2016-09-10 00:00","Time":"00:00","shape_length":0},"coordinates":[743,6654]},{"type":"Point","properties":{"OBJECTID":572,"code":549,"Name":"2016-09-10T00:00:00Z","Length":6,"Month":9,"Dat":10,"Year":2016,"DateTime":"2016-09-10 00:00","Time":"00:00","shape_length":0},"coordinates":[6062,8022]},{"type":"Point","properties":{"OBJECTID":573,"code":591,"Name":"2016-09-10T00:00:00Z","Length":1,"Month":9,"Dat":10,"Year":2016,"DateTime":"2016-09-10 00:00","Time":"00:00","shape_length":0},"coordinates":[214,6995]},{"type":"Point","properties":{"OBJECTID":574,"code":604,"Name":"2016-09-11T00:00:00Z","Length":1,"Month":9,"Dat":11,"Year":2016,"DateTime":"2016-09-11 00:00","Time":"00:00","shape_length":0},"coordinates":[224,6997]},{"type":"Point","properties":{"OBJECTID":575,"code":592,"Name":"2016-09-11T00:00:00Z","Length":1,"Month":9,"Dat":11,"Year":2016,"DateTime":"2016-09-11 00:00","Time":"00:00","shape_length":0},"coordinates":[219,6990]},{"type":"Point","properties":{"OBJECTID":576,"code":561,"Name":"2016-09-11T00:00:00Z","Length":1,"Month":9,"Dat":11,"Year":2016,"DateTime":"2016-09-11 00:00","Time":"00:00","shape_length":0},"coordinates":[1713,4911]},{"type":"Point","properties":{"OBJECTID":577,"code":605,"Name":"2016-09-12T00:00:00Z","Length":1,"Month":9,"Dat":12,"Year":2016,"DateTime":"2016-09-12 00:00","Time":"00:00","shape_length":0},"coordinates":[221,6984]},{"type":"Point","properties":{"OBJECTID":578,"code":593,"Name":"2016-09-12T00:00:00Z","Length":1,"Month":9,"Dat":12,"Year":2016,"DateTime":"2016-09-12 00:00","Time":"00:00","shape_length":0},"coordinates":[207,6988]},{"type":"Point","properties":{"OBJECTID":579,"code":606,"Name":"2016-09-13T00:00:00Z","Length":1,"Month":9,"Dat":13,"Year":2016,"DateTime":"2016-09-13 00:00","Time":"00:00","shape_length":0},"coordinates":[218,7005]},{"type":"Point","properties":{"OBJECTID":580,"code":552,"Name":"2016-09-13T00:00:00Z","Length":5,"Month":9,"Dat":13,"Year":2016,"DateTime":"2016-09-13 00:00","Time":"00:00","shape_length":0},"coordinates":[5623,7102]},{"type":"Point","properties":{"OBJECTID":581,"code":562,"Name":"2016-09-14T00:00:00Z","Length":1,"Month":9,"Dat":14,"Year":2016,"DateTime":"2016-09-14 00:00","Time":"00:00","shape_length":0},"coordinates":[5715,7122]},{"type":"Point","properties":{"OBJECTID":582,"code":564,"Name":"2016-09-15T00:00:00Z","Length":7,"Month":9,"Dat":15,"Year":2016,"DateTime":"2016-09-15 00:00","Time":"00:00","shape_length":0},"coordinates":[1744,4945]},{"type":"Point","properties":{"OBJECTID":583,"code":563,"Name":"2016-09-15T00:00:00Z","Length":1,"Month":9,"Dat":15,"Year":2016,"DateTime":"2016-09-15 00:00","Time":"00:00","shape_length":0},"coordinates":[5151,8633]},{"type":"Point","properties":{"OBJECTID":584,"code":566,"Name":"2016-09-15T00:00:00Z","Length":1,"Month":9,"Dat":15,"Year":2016,"DateTime":"2016-09-15 00:00","Time":"00:00","shape_length":0},"coordinates":[597,6477]},{"type":"Point","properties":{"OBJECTID":585,"code":594,"Name":"2016-09-16T00:00:00Z","Length":1,"Month":9,"Dat":16,"Year":2016,"DateTime":"2016-09-16 00:00","Time":"00:00","shape_length":0},"coordinates":[218,6993]},{"type":"Point","properties":{"OBJECTID":586,"code":565,"Name":"2016-09-18T00:00:00Z","Length":13,"Month":9,"Dat":18,"Year":2016,"DateTime":"2016-09-18 00:00","Time":"00:00","shape_length":0},"coordinates":[766,6636]},{"type":"Point","properties":{"OBJECTID":587,"code":567,"Name":"2016-09-18T00:00:00Z","Length":1,"Month":9,"Dat":18,"Year":2016,"DateTime":"2016-09-18 00:00","Time":"00:00","shape_length":0},"coordinates":[6011,7542]},{"type":"Point","properties":{"OBJECTID":588,"code":607,"Name":"2016-09-18T00:00:00Z","Length":1,"Month":9,"Dat":18,"Year":2016,"DateTime":"2016-09-18 00:00","Time":"00:00","shape_length":0},"coordinates":[220,7004]},{"type":"Point","properties":{"OBJECTID":589,"code":611,"Name":"2016-09-18T00:00:00Z","Length":1,"Month":9,"Dat":18,"Year":2016,"DateTime":"2016-09-18 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6724]},{"type":"Point","properties":{"OBJECTID":590,"code":596,"Name":"2016-09-19T00:00:00Z","Length":1,"Month":9,"Dat":19,"Year":2016,"DateTime":"2016-09-19 00:00","Time":"00:00","shape_length":0},"coordinates":[218,6998]},{"type":"Point","properties":{"OBJECTID":591,"code":608,"Name":"2016-09-19T00:00:00Z","Length":1,"Month":9,"Dat":19,"Year":2016,"DateTime":"2016-09-19 00:00","Time":"00:00","shape_length":0},"coordinates":[218,7000]},{"type":"Point","properties":{"OBJECTID":592,"code":595,"Name":"2016-09-19T00:00:00Z","Length":1,"Month":9,"Dat":19,"Year":2016,"DateTime":"2016-09-19 00:00","Time":"00:00","shape_length":0},"coordinates":[216,6995]},{"type":"Point","properties":{"OBJECTID":593,"code":568,"Name":"2016-09-19T00:00:00Z","Length":1,"Month":9,"Dat":19,"Year":2016,"DateTime":"2016-09-19 00:00","Time":"00:00","shape_length":0},"coordinates":[5465,7481]},{"type":"Point","properties":{"OBJECTID":594,"code":597,"Name":"2016-09-20T00:00:00Z","Length":1,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[219,7005]},{"type":"Point","properties":{"OBJECTID":595,"code":576,"Name":"2016-09-20T00:00:00Z","Length":20,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[1537,6337]},{"type":"Point","properties":{"OBJECTID":596,"code":575,"Name":"2016-09-20T00:00:00Z","Length":1,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[252,6972]},{"type":"Point","properties":{"OBJECTID":597,"code":636,"Name":"2016-09-20T00:00:00Z","Length":1,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6767,6105]},{"type":"Point","properties":{"OBJECTID":598,"code":569,"Name":"2016-09-20T00:00:00Z","Length":288,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6376,7000]},{"type":"Point","properties":{"OBJECTID":599,"code":570,"Name":"2016-09-20T00:00:00Z","Length":1,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[927,5857]},{"type":"Point","properties":{"OBJECTID":600,"code":573,"Name":"2016-09-20T00:00:00Z","Length":1,"Month":9,"Dat":20,"Year":2016,"DateTime":"2016-09-20 00:00","Time":"00:00","shape_length":0},"coordinates":[1360,5209]},{"type":"Point","properties":{"OBJECTID":601,"code":599,"Name":"2016-09-21T00:00:00Z","Length":1,"Month":9,"Dat":21,"Year":2016,"DateTime":"2016-09-21 00:00","Time":"00:00","shape_length":0},"coordinates":[219,6999]},{"type":"Point","properties":{"OBJECTID":602,"code":598,"Name":"2016-09-21T00:00:00Z","Length":1,"Month":9,"Dat":21,"Year":2016,"DateTime":"2016-09-21 00:00","Time":"00:00","shape_length":0},"coordinates":[220,7006]},{"type":"Point","properties":{"OBJECTID":603,"code":609,"Name":"2016-09-22T00:00:00Z","Length":1,"Month":9,"Dat":22,"Year":2016,"DateTime":"2016-09-22 00:00","Time":"00:00","shape_length":0},"coordinates":[220,7001]},{"type":"Point","properties":{"OBJECTID":604,"code":571,"Name":"2016-09-23T00:00:00Z","Length":1,"Month":9,"Dat":23,"Year":2016,"DateTime":"2016-09-23 00:00","Time":"00:00","shape_length":0},"coordinates":[5153,8631]},{"type":"Point","properties":{"OBJECTID":605,"code":574,"Name":"2016-09-23T00:00:00Z","Length":1,"Month":9,"Dat":23,"Year":2016,"DateTime":"2016-09-23 00:00","Time":"00:00","shape_length":0},"coordinates":[743,6659]},{"type":"Point","properties":{"OBJECTID":606,"code":600,"Name":"2016-09-26T00:00:00Z","Length":1,"Month":9,"Dat":26,"Year":2016,"DateTime":"2016-09-26 00:00","Time":"00:00","shape_length":0},"coordinates":[218,7002]},{"type":"Point","properties":{"OBJECTID":607,"code":612,"Name":"2016-09-27T00:00:00Z","Length":18,"Month":9,"Dat":27,"Year":2016,"DateTime":"2016-09-27 00:00","Time":"00:00","shape_length":0},"coordinates":[6111,7011]},{"type":"Point","properties":{"OBJECTID":608,"code":578,"Name":"2016-09-27T00:00:00Z","Length":1,"Month":9,"Dat":27,"Year":2016,"DateTime":"2016-09-27 00:00","Time":"00:00","shape_length":0},"coordinates":[726,6694]},{"type":"Point","properties":{"OBJECTID":609,"code":582,"Name":"2016-09-28T00:00:00Z","Length":27,"Month":9,"Dat":28,"Year":2016,"DateTime":"2016-09-28 00:00","Time":"00:00","shape_length":0},"coordinates":[6257,7437]},{"type":"Point","properties":{"OBJECTID":610,"code":583,"Name":"2016-09-28T00:00:00Z","Length":14,"Month":9,"Dat":28,"Year":2016,"DateTime":"2016-09-28 00:00","Time":"00:00","shape_length":0},"coordinates":[7646,6940]},{"type":"Point","properties":{"OBJECTID":611,"code":625,"Name":"2016-09-30T00:00:00Z","Length":7,"Month":9,"Dat":30,"Year":2016,"DateTime":"2016-09-30 00:00","Time":"00:00","shape_length":0},"coordinates":[6775,3193]},{"type":"Point","properties":{"OBJECTID":612,"code":585,"Name":"2016-10-02T00:00:00Z","Length":30,"Month":10,"Dat":2,"Year":2016,"DateTime":"2016-10-02 00:00","Time":"00:00","shape_length":0},"coordinates":[5614,7077]},{"type":"Point","properties":{"OBJECTID":613,"code":580,"Name":"2016-10-02T00:00:00Z","Length":11,"Month":10,"Dat":2,"Year":2016,"DateTime":"2016-10-02 00:00","Time":"00:00","shape_length":0},"coordinates":[5667,7081]},{"type":"Point","properties":{"OBJECTID":614,"code":601,"Name":"2016-10-02T00:00:00Z","Length":1,"Month":10,"Dat":2,"Year":2016,"DateTime":"2016-10-02 00:00","Time":"00:00","shape_length":0},"coordinates":[6206,7485]},{"type":"Point","properties":{"OBJECTID":615,"code":584,"Name":"2016-10-02T00:00:00Z","Length":10,"Month":10,"Dat":2,"Year":2016,"DateTime":"2016-10-02 00:00","Time":"00:00","shape_length":0},"coordinates":[5719,7163]},{"type":"Point","properties":{"OBJECTID":616,"code":587,"Name":"2016-10-03T00:00:00Z","Length":6,"Month":10,"Dat":3,"Year":2016,"DateTime":"2016-10-03 00:00","Time":"00:00","shape_length":0},"coordinates":[907,5822]},{"type":"Point","properties":{"OBJECTID":617,"code":586,"Name":"2016-10-03T00:00:00Z","Length":28,"Month":10,"Dat":3,"Year":2016,"DateTime":"2016-10-03 00:00","Time":"00:00","shape_length":0},"coordinates":[5677,7272]},{"type":"Point","properties":{"OBJECTID":618,"code":613,"Name":"2016-10-04T00:00:00Z","Length":3,"Month":10,"Dat":4,"Year":2016,"DateTime":"2016-10-04 00:00","Time":"00:00","shape_length":0},"coordinates":[5591,7090]},{"type":"Point","properties":{"OBJECTID":619,"code":610,"Name":"2016-10-05T00:00:00Z","Length":1,"Month":10,"Dat":5,"Year":2016,"DateTime":"2016-10-05 00:00","Time":"00:00","shape_length":0},"coordinates":[6250,7510]},{"type":"Point","properties":{"OBJECTID":620,"code":626,"Name":"2016-10-08T00:00:00Z","Length":1,"Month":10,"Dat":8,"Year":2016,"DateTime":"2016-10-08 00:00","Time":"00:00","shape_length":0},"coordinates":[1033,5603]},{"type":"Point","properties":{"OBJECTID":621,"code":614,"Name":"2016-10-08T00:00:00Z","Length":1,"Month":10,"Dat":8,"Year":2016,"DateTime":"2016-10-08 00:00","Time":"00:00","shape_length":0},"coordinates":[5152,8633]},{"type":"Point","properties":{"OBJECTID":622,"code":637,"Name":"2016-10-08T00:00:00Z","Length":2,"Month":10,"Dat":8,"Year":2016,"DateTime":"2016-10-08 00:00","Time":"00:00","shape_length":0},"coordinates":[5613,7077]},{"type":"Point","properties":{"OBJECTID":623,"code":615,"Name":"2016-10-10T00:00:00Z","Length":1,"Month":10,"Dat":10,"Year":2016,"DateTime":"2016-10-10 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6723]},{"type":"Point","properties":{"OBJECTID":624,"code":617,"Name":"2016-10-11T00:00:00Z","Length":1,"Month":10,"Dat":11,"Year":2016,"DateTime":"2016-10-11 00:00","Time":"00:00","shape_length":0},"coordinates":[698,6780]},{"type":"Point","properties":{"OBJECTID":625,"code":616,"Name":"2016-10-11T00:00:00Z","Length":1,"Month":10,"Dat":11,"Year":2016,"DateTime":"2016-10-11 00:00","Time":"00:00","shape_length":0},"coordinates":[6210,7797]},{"type":"Point","properties":{"OBJECTID":626,"code":618,"Name":"2016-10-13T00:00:00Z","Length":17,"Month":10,"Dat":13,"Year":2016,"DateTime":"2016-10-13 00:00","Time":"00:00","shape_length":0},"coordinates":[5660,7128]},{"type":"Point","properties":{"OBJECTID":627,"code":619,"Name":"2016-10-13T00:00:00Z","Length":1,"Month":10,"Dat":13,"Year":2016,"DateTime":"2016-10-13 00:00","Time":"00:00","shape_length":0},"coordinates":[5167,8634]},{"type":"Point","properties":{"OBJECTID":628,"code":622,"Name":"2016-10-17T00:00:00Z","Length":1,"Month":10,"Dat":17,"Year":2016,"DateTime":"2016-10-17 00:00","Time":"00:00","shape_length":0},"coordinates":[1548,6322]},{"type":"Point","properties":{"OBJECTID":629,"code":623,"Name":"2016-10-17T00:00:00Z","Length":1,"Month":10,"Dat":17,"Year":2016,"DateTime":"2016-10-17 00:00","Time":"00:00","shape_length":0},"coordinates":[5185,8597]},{"type":"Point","properties":{"OBJECTID":630,"code":621,"Name":"2016-10-17T00:00:00Z","Length":1,"Month":10,"Dat":17,"Year":2016,"DateTime":"2016-10-17 00:00","Time":"00:00","shape_length":0},"coordinates":[5114,8644]},{"type":"Point","properties":{"OBJECTID":631,"code":628,"Name":"2016-10-18T00:00:00Z","Length":9,"Month":10,"Dat":18,"Year":2016,"DateTime":"2016-10-18 00:00","Time":"00:00","shape_length":0},"coordinates":[5676,7127]},{"type":"Point","properties":{"OBJECTID":632,"code":653,"Name":"2016-10-18T00:00:00Z","Length":1,"Month":10,"Dat":18,"Year":2016,"DateTime":"2016-10-18 00:00","Time":"00:00","shape_length":0},"coordinates":[1009,5640]},{"type":"Point","properties":{"OBJECTID":633,"code":627,"Name":"2016-10-18T00:00:00Z","Length":1,"Month":10,"Dat":18,"Year":2016,"DateTime":"2016-10-18 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6723]},{"type":"Point","properties":{"OBJECTID":634,"code":629,"Name":"2016-10-20T00:00:00Z","Length":13,"Month":10,"Dat":20,"Year":2016,"DateTime":"2016-10-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5708,7084]},{"type":"Point","properties":{"OBJECTID":635,"code":631,"Name":"2016-10-20T00:00:00Z","Length":1,"Month":10,"Dat":20,"Year":2016,"DateTime":"2016-10-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5680,7171]},{"type":"Point","properties":{"OBJECTID":636,"code":634,"Name":"2016-10-20T00:00:00Z","Length":3,"Month":10,"Dat":20,"Year":2016,"DateTime":"2016-10-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5772,7183]},{"type":"Point","properties":{"OBJECTID":637,"code":635,"Name":"2016-10-20T00:00:00Z","Length":14,"Month":10,"Dat":20,"Year":2016,"DateTime":"2016-10-20 00:00","Time":"00:00","shape_length":0},"coordinates":[5745,7057]},{"type":"Point","properties":{"OBJECTID":638,"code":640,"Name":"2016-10-20T00:00:00Z","Length":14,"Month":10,"Dat":20,"Year":2016,"DateTime":"2016-10-20 00:00","Time":"00:00","shape_length":0},"coordinates":[6945,5283]},{"type":"Point","properties":{"OBJECTID":639,"code":638,"Name":"2016-10-21T00:00:00Z","Length":30,"Month":10,"Dat":21,"Year":2016,"DateTime":"2016-10-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5730,7116]},{"type":"Point","properties":{"OBJECTID":640,"code":632,"Name":"2016-10-21T00:00:00Z","Length":1,"Month":10,"Dat":21,"Year":2016,"DateTime":"2016-10-21 00:00","Time":"00:00","shape_length":0},"coordinates":[5785,7180]},{"type":"Point","properties":{"OBJECTID":641,"code":639,"Name":"2016-10-22T00:00:00Z","Length":45,"Month":10,"Dat":22,"Year":2016,"DateTime":"2016-10-22 00:00","Time":"00:00","shape_length":0},"coordinates":[805,5903]},{"type":"Point","properties":{"OBJECTID":642,"code":649,"Name":"2016-10-22T00:00:00Z","Length":1,"Month":10,"Dat":22,"Year":2016,"DateTime":"2016-10-22 00:00","Time":"00:00","shape_length":0},"coordinates":[8103,0]},{"type":"Point","properties":{"OBJECTID":643,"code":633,"Name":"2016-10-23T00:00:00Z","Length":2,"Month":10,"Dat":23,"Year":2016,"DateTime":"2016-10-23 00:00","Time":"00:00","shape_length":0},"coordinates":[761,6621]},{"type":"Point","properties":{"OBJECTID":644,"code":641,"Name":"2016-10-24T00:00:00Z","Length":29,"Month":10,"Dat":24,"Year":2016,"DateTime":"2016-10-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5713,7097]},{"type":"Point","properties":{"OBJECTID":645,"code":642,"Name":"2016-10-24T00:00:00Z","Length":1,"Month":10,"Dat":24,"Year":2016,"DateTime":"2016-10-24 00:00","Time":"00:00","shape_length":0},"coordinates":[5726,7474]},{"type":"Point","properties":{"OBJECTID":646,"code":643,"Name":"2016-10-25T00:00:00Z","Length":7,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5736,7141]},{"type":"Point","properties":{"OBJECTID":647,"code":645,"Name":"2016-10-25T00:00:00Z","Length":29,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5698,7210]},{"type":"Point","properties":{"OBJECTID":648,"code":646,"Name":"2016-10-25T00:00:00Z","Length":10,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5755,7100]},{"type":"Point","properties":{"OBJECTID":649,"code":647,"Name":"2016-10-25T00:00:00Z","Length":97,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5666,7129]},{"type":"Point","properties":{"OBJECTID":650,"code":651,"Name":"2016-10-25T00:00:00Z","Length":10,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5747,7222]},{"type":"Point","properties":{"OBJECTID":651,"code":644,"Name":"2016-10-25T00:00:00Z","Length":30,"Month":10,"Dat":25,"Year":2016,"DateTime":"2016-10-25 00:00","Time":"00:00","shape_length":0},"coordinates":[5655,7283]},{"type":"Point","properties":{"OBJECTID":652,"code":648,"Name":"2016-10-26T00:00:00Z","Length":6,"Month":10,"Dat":26,"Year":2016,"DateTime":"2016-10-26 00:00","Time":"00:00","shape_length":0},"coordinates":[5711,7147]},{"type":"Point","properties":{"OBJECTID":653,"code":652,"Name":"2016-10-27T00:00:00Z","Length":1,"Month":10,"Dat":27,"Year":2016,"DateTime":"2016-10-27 00:00","Time":"00:00","shape_length":0},"coordinates":[717,6728]}]}},"arcs":[],"transform":{"scale":[0.02308936473647365,0.011679017201720172],"translate":[-117.07056,-49.673176]},"bbox":[-117.07056,-49.673176,113.799998,67.105317]}
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<title>Migrant Deaths Around the World</title>
<!--<link rel="stylesheet" href="css/app.css"/>-->
<link rel="stylesheet" href="styles_cycling.css"/>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<!--<script src="../../bower_components/modernizr/modernizr.js"></script>-->
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
</head>
<body>
<div class="toppadding" id="info">
<div class="small-4 columns toppadding end" id='buttonDiv'>
<button align="middle" class="button expand" id="play">Animate Incidents</button>
</div>
</div>
<div class="small-12 columns" id="map">
<div id="infoPane">
<!--h3>Date</h3>
<h5 id="date"></h5>
<h3>Deaths</h3>
<h5 id="deaths">0</h5>
<h3>Total Deaths</h3>
<h5 id="totalDeaths"></h5>
<h3>Total Incidents</h3>
<h5 id="totalIncidents">000</h5-->
</div>
</div>
<div id='graph'></div>
<br> </br>
<br> </br>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'></script>
<!--<script src="../../bower_components/foundation/js/foundation.min.js"></script>
<script src="../js/app.js"></script>
<script src="../D3\src_code\d3.min.js"></script-->
<script src="https://d3js.org/queue.v1.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script src="app_1.js"></script>
<script>
//$(document).foundation();
</script>
</body>
</html>
body {
background-color: #111111;
}
footer p {
color: white;
}
#name {
margin-left: 1em;
color: white;
font-size: 1.25em;
margin-bottom: 2px;
}
.badge {
color: white;
background: #111111;
}
#badge p {
font-size: 0.95em;
}
#buttonDiv {
padding-top: 1em;
vertical-align: middle !important;
}
.button {
display: block !important;
vertical-align: middle !important;
}
#info h3 {
padding-top: 0em;
padding-bottom: 0em;
}
#info p {
font-size: .95em;
background: #111111;
padding-bottom: 0em !important;
padding-top: 0em;
}
#map {
width: 100%;
height: 75%;
background-color: #111111;
position: relative;
}
.fullwidth {
width:80%;
}
.leaflet-container{
cursor: default;
}
#infoPane h3, h4{
color: white;
}
#infoPane {
position: relative;
/*left: 500px;*/
z-index: 2;
float: right ;
padding: 5px;
background-color: #111111;
opacity: 0.85;
}
#infoPane h3, h5 {
color: white;
font-weight: .5rem !important;
}
#graph {
position: absolute;
bottom: 0;
z-index: 1000;
padding:5px;
background-color: #111111;
/*opacity: .75;*/
}
.axis line,
.axis path {
fill: none;
stroke: white;
shape-rendering: cripsEdges;
}
/*iPad stylings*/
/*landscape*/
@media (min-width: 850px) and (max-width: 1100px){
div.overlay p {font-size: 0.75em !important}
div.overlay h2 {font-size: 1.5em;}
#infoPane h3 {font-size: 1.5em;}
#infoPane h5 {font-size: .95em;}
#title h3 {font-size: 1.65em}
#info p {font-size: .95em;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment