Skip to content

Instantly share code, notes, and snippets.

@clhenrick
Last active January 11, 2024 12:33
Show Gist options
  • Save clhenrick/5787a12a8bf3b02821839e4f9556d997 to your computer and use it in GitHub Desktop.
Save clhenrick/5787a12a8bf3b02821839e4f9556d997 to your computer and use it in GitHub Desktop.
Node.JS script to aggregate NYC vehicle collision data into a hexagonal grid and compute the ck means for each cell using Turf.JS and Simple Statistics.JS
node_modules/
.DS_Store
// load libraries
const fs = require("fs")
const turf = require("turf")
const turfMeta = require("@turf/meta")
const simpleStats = require("simple-statistics")
const d3 = require("d3-array")
// load our data
const data = require("./nyc_crashes.json")
// rough geographic bounding box of NYC
const bbox = [ -74.24939, 40.50394, -73.701195, 40.90995 ]
// size in kilometers we want each side of our hex grids
const cellSize = 0.5
// create the hexbin geometry for the given bbox and cell resolution
const hexGrid = turf.hexGrid(bbox, cellSize)
// perform a "spatial join" on our hexGrid geometry and our crashes point data
const collected = turf.collect(hexGrid, data, "cartodb_id", "values")
// get rid of polygons with no joined data, to reduce our final output file size
collected.features = collected.features.filter(d => d.properties.values.length)
// count the number of crashes per hexbin
turfMeta.propEach(collected, props => {
props.count = props.values.reduce((acc, cur) => acc += 1, 0)
})
// reduce our count values to a new array of numbers
const reduced = turfMeta.featureReduce(collected, (acc, cur) => {
acc.push(cur.properties.count)
return acc
}, [])
// compute the ckMeans binning for data into 7 classes from reduced values
const ck = simpleStats.ckmeans(reduced, 7)
// tack on the bin number to our data, as well as its min and max values
turfMeta.propEach(collected, props => {
ck.forEach((bin, index) => {
if (bin.indexOf(props.count) > -1) {
props.bin = index
props.binVal = d3.extent(bin)
}
})
})
// remove the "values" property from our hexBins as it's no longer needed
turfMeta.propEach(collected, props => {
delete props.values
})
// write output data
fs.writeFileSync("./processed.json", JSON.stringify(collected))
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.789536,40.666008]},"properties":{"cartodb_id":14703,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.964806,40.759983]},"properties":{"cartodb_id":11711,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87038,40.673008]},"properties":{"cartodb_id":11712,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96667,40.617275]},"properties":{"cartodb_id":11716,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80331,40.66764]},"properties":{"cartodb_id":11717,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.987206,40.61179]},"properties":{"cartodb_id":11718,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00929,40.64266]},"properties":{"cartodb_id":11719,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87207,40.827282]},"properties":{"cartodb_id":11720,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85261,40.70509]},"properties":{"cartodb_id":11721,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00578,40.71482]},"properties":{"cartodb_id":11723,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84598,40.739693]},"properties":{"cartodb_id":11727,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84565,40.740017]},"properties":{"cartodb_id":11728,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95311,40.798523]},"properties":{"cartodb_id":11729,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:04:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94299,40.720116]},"properties":{"cartodb_id":11730,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9302,40.838203]},"properties":{"cartodb_id":11732,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92444,40.8452]},"properties":{"cartodb_id":11733,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.07551,40.639652]},"properties":{"cartodb_id":11734,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95759,40.70787]},"properties":{"cartodb_id":11736,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94523,40.847897]},"properties":{"cartodb_id":11737,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73261,40.69401]},"properties":{"cartodb_id":11739,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.979866,40.62945]},"properties":{"cartodb_id":11740,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81331,40.72755]},"properties":{"cartodb_id":11742,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92604,40.638542]},"properties":{"cartodb_id":11743,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96311,40.579376]},"properties":{"cartodb_id":11744,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.907005,40.67024]},"properties":{"cartodb_id":11746,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94375,40.682507]},"properties":{"cartodb_id":11748,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.928505,40.758125]},"properties":{"cartodb_id":11749,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96608,40.629543]},"properties":{"cartodb_id":11751,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93237,40.85184]},"properties":{"cartodb_id":11752,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84459,40.680687]},"properties":{"cartodb_id":11754,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08886,40.608543]},"properties":{"cartodb_id":11755,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93365,40.744415]},"properties":{"cartodb_id":11756,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1648,40.610737]},"properties":{"cartodb_id":11757,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92042,40.633472]},"properties":{"cartodb_id":11758,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.06377,40.598934]},"properties":{"cartodb_id":11759,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95741,40.60913]},"properties":{"cartodb_id":11763,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89544,40.815845]},"properties":{"cartodb_id":11764,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.962845,40.698036]},"properties":{"cartodb_id":11765,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75372,40.609535]},"properties":{"cartodb_id":11766,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00592,40.72225]},"properties":{"cartodb_id":11767,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88459,40.65906]},"properties":{"cartodb_id":11770,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.860725,40.892025]},"properties":{"cartodb_id":11771,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90348,40.844604]},"properties":{"cartodb_id":11772,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:52:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89345,40.848015]},"properties":{"cartodb_id":11773,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89139,40.8617]},"properties":{"cartodb_id":11774,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16984,40.561077]},"properties":{"cartodb_id":11775,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02583,40.604694]},"properties":{"cartodb_id":11776,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.895386,40.86074]},"properties":{"cartodb_id":11777,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00191,40.717472]},"properties":{"cartodb_id":11778,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96399,40.649082]},"properties":{"cartodb_id":11779,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.954865,40.80003]},"properties":{"cartodb_id":11780,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94329,40.6149]},"properties":{"cartodb_id":11781,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86823,40.675938]},"properties":{"cartodb_id":11782,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91386,40.604843]},"properties":{"cartodb_id":11783,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99448,40.75591]},"properties":{"cartodb_id":11784,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01358,40.627728]},"properties":{"cartodb_id":11785,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.20547,40.525543]},"properties":{"cartodb_id":11786,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.18777,40.602028]},"properties":{"cartodb_id":11788,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.085205,40.589985]},"properties":{"cartodb_id":11789,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.864456,40.710083]},"properties":{"cartodb_id":11790,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.894875,40.808903]},"properties":{"cartodb_id":11791,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90212,40.761536]},"properties":{"cartodb_id":11792,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:58:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.966545,40.681557]},"properties":{"cartodb_id":11793,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:58:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82597,40.75648]},"properties":{"cartodb_id":11794,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.776375,40.679935]},"properties":{"cartodb_id":11795,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72681,40.74084]},"properties":{"cartodb_id":11796,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99789,40.577545]},"properties":{"cartodb_id":11797,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97076,40.76161]},"properties":{"cartodb_id":11798,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89319,40.699627]},"properties":{"cartodb_id":11801,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87408,40.88004]},"properties":{"cartodb_id":11802,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.21781,40.537746]},"properties":{"cartodb_id":11803,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.961464,40.70166]},"properties":{"cartodb_id":11805,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.939575,40.690742]},"properties":{"cartodb_id":11806,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84458,40.8313]},"properties":{"cartodb_id":11807,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.746605,40.705853]},"properties":{"cartodb_id":11808,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99483,40.599766]},"properties":{"cartodb_id":11809,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93683,40.667316]},"properties":{"cartodb_id":11810,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97645,40.785732]},"properties":{"cartodb_id":11811,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99958,40.714287]},"properties":{"cartodb_id":11812,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82303,40.711945]},"properties":{"cartodb_id":11813,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7559,40.716297]},"properties":{"cartodb_id":11815,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92246,40.614143]},"properties":{"cartodb_id":11816,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91701,40.7065]},"properties":{"cartodb_id":11817,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98536,40.597256]},"properties":{"cartodb_id":11819,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82942,40.84595]},"properties":{"cartodb_id":11820,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:06:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85855,40.86955]},"properties":{"cartodb_id":11822,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76364,40.65971]},"properties":{"cartodb_id":11823,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85654,40.685963]},"properties":{"cartodb_id":11824,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98363,40.72688]},"properties":{"cartodb_id":11825,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73389,40.67543]},"properties":{"cartodb_id":11826,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94606,40.622494]},"properties":{"cartodb_id":11827,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89884,40.859303]},"properties":{"cartodb_id":11828,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.966705,40.80417]},"properties":{"cartodb_id":11829,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82426,40.823032]},"properties":{"cartodb_id":11830,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.978836,40.603474]},"properties":{"cartodb_id":11831,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96656,40.78911]},"properties":{"cartodb_id":11832,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86023,40.729355]},"properties":{"cartodb_id":11835,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09844,40.611313]},"properties":{"cartodb_id":11836,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9881,40.740917]},"properties":{"cartodb_id":11837,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.925415,40.65768]},"properties":{"cartodb_id":11838,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86121,40.826088]},"properties":{"cartodb_id":11839,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73768,40.675163]},"properties":{"cartodb_id":11840,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7281,40.711033]},"properties":{"cartodb_id":11841,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72489,40.741386]},"properties":{"cartodb_id":11842,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98427,40.71521]},"properties":{"cartodb_id":11843,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85822,40.7056]},"properties":{"cartodb_id":11844,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.810234,40.756058]},"properties":{"cartodb_id":11845,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95046,40.62149]},"properties":{"cartodb_id":11846,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14782,40.55623]},"properties":{"cartodb_id":11847,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98925,40.739716]},"properties":{"cartodb_id":11848,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9271,40.584366]},"properties":{"cartodb_id":11850,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93557,40.806915]},"properties":{"cartodb_id":11851,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90344,40.832214]},"properties":{"cartodb_id":11852,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94771,40.632885]},"properties":{"cartodb_id":11853,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01058,40.637962]},"properties":{"cartodb_id":11854,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02217,40.64405]},"properties":{"cartodb_id":11855,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007416,40.647903]},"properties":{"cartodb_id":11857,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.825165,40.836502]},"properties":{"cartodb_id":11858,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90784,40.678112]},"properties":{"cartodb_id":11859,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9761,40.77883]},"properties":{"cartodb_id":11861,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92155,40.716793]},"properties":{"cartodb_id":11862,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81808,40.72393]},"properties":{"cartodb_id":11863,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90253,40.863796]},"properties":{"cartodb_id":11864,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.867714,40.854504]},"properties":{"cartodb_id":11865,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99396,40.751522]},"properties":{"cartodb_id":11868,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:43:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.841736,40.769333]},"properties":{"cartodb_id":11869,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77316,40.767773]},"properties":{"cartodb_id":11870,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92504,40.660736]},"properties":{"cartodb_id":11871,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78738,40.7119]},"properties":{"cartodb_id":11872,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96711,40.709053]},"properties":{"cartodb_id":11873,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99112,40.750317]},"properties":{"cartodb_id":11874,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.841125,40.664192]},"properties":{"cartodb_id":11875,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95417,40.787224]},"properties":{"cartodb_id":11876,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99262,40.60309]},"properties":{"cartodb_id":11877,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.768845,40.71038]},"properties":{"cartodb_id":11878,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93432,40.806828]},"properties":{"cartodb_id":11879,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76676,40.66743]},"properties":{"cartodb_id":11880,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9458,40.658134]},"properties":{"cartodb_id":11881,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84172,40.691643]},"properties":{"cartodb_id":11882,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83048,40.869118]},"properties":{"cartodb_id":11883,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91239,40.77731]},"properties":{"cartodb_id":11884,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83015,40.759567]},"properties":{"cartodb_id":11885,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0973,40.610256]},"properties":{"cartodb_id":11888,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:58:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946205,40.772984]},"properties":{"cartodb_id":11889,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93239,40.692814]},"properties":{"cartodb_id":11890,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89968,40.84744]},"properties":{"cartodb_id":11891,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.920204,40.700928]},"properties":{"cartodb_id":11892,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85395,40.89888]},"properties":{"cartodb_id":11894,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97371,40.630592]},"properties":{"cartodb_id":11895,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93918,40.850105]},"properties":{"cartodb_id":11896,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.829956,40.677902]},"properties":{"cartodb_id":11897,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00975,40.737568]},"properties":{"cartodb_id":11898,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.880516,40.676765]},"properties":{"cartodb_id":11899,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93155,40.66434]},"properties":{"cartodb_id":11900,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85971,40.826275]},"properties":{"cartodb_id":11901,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.891815,40.81636]},"properties":{"cartodb_id":11902,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98869,40.696198]},"properties":{"cartodb_id":11903,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93604,40.854916]},"properties":{"cartodb_id":11904,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95456,40.699272]},"properties":{"cartodb_id":11905,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81965,40.677]},"properties":{"cartodb_id":11906,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84497,40.819427]},"properties":{"cartodb_id":11907,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90021,40.84647]},"properties":{"cartodb_id":11909,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.170006,40.551723]},"properties":{"cartodb_id":11910,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9985,40.745293]},"properties":{"cartodb_id":11911,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.883675,40.856564]},"properties":{"cartodb_id":11912,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91764,40.753857]},"properties":{"cartodb_id":11913,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82821,40.686665]},"properties":{"cartodb_id":11914,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89752,40.843994]},"properties":{"cartodb_id":11915,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.804344,40.681347]},"properties":{"cartodb_id":11916,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93899,40.723442]},"properties":{"cartodb_id":11917,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.984886,40.774155]},"properties":{"cartodb_id":11918,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.938805,40.804947]},"properties":{"cartodb_id":11919,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83198,40.762978]},"properties":{"cartodb_id":11920,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93368,40.851616]},"properties":{"cartodb_id":11922,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91276,40.646328]},"properties":{"cartodb_id":11923,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87773,40.673252]},"properties":{"cartodb_id":11925,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74445,40.75369]},"properties":{"cartodb_id":11926,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89959,40.67134]},"properties":{"cartodb_id":11927,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82207,40.753265]},"properties":{"cartodb_id":11928,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99771,40.66401]},"properties":{"cartodb_id":11929,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82488,40.7389]},"properties":{"cartodb_id":11930,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.962814,40.794235]},"properties":{"cartodb_id":11931,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9623,40.70992]},"properties":{"cartodb_id":11932,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79186,40.732716]},"properties":{"cartodb_id":11933,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99473,40.608006]},"properties":{"cartodb_id":11934,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85974,40.833065]},"properties":{"cartodb_id":11935,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91293,40.820087]},"properties":{"cartodb_id":11936,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93467,40.808174]},"properties":{"cartodb_id":11937,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93359,40.74473]},"properties":{"cartodb_id":11938,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81439,40.69097]},"properties":{"cartodb_id":11940,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.986626,40.725796]},"properties":{"cartodb_id":11941,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91619,40.842335]},"properties":{"cartodb_id":11942,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79986,40.674225]},"properties":{"cartodb_id":11943,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82443,40.760994]},"properties":{"cartodb_id":11944,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90474,40.864178]},"properties":{"cartodb_id":11945,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99843,40.671585]},"properties":{"cartodb_id":11947,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.966156,40.58667]},"properties":{"cartodb_id":11948,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91018,40.85198]},"properties":{"cartodb_id":11949,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85775,40.731285]},"properties":{"cartodb_id":11951,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84476,40.832035]},"properties":{"cartodb_id":11952,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.863785,40.687473]},"properties":{"cartodb_id":11953,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93446,40.797306]},"properties":{"cartodb_id":11954,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91248,40.744167]},"properties":{"cartodb_id":11955,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89227,40.746506]},"properties":{"cartodb_id":11957,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72697,40.69798]},"properties":{"cartodb_id":11959,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90967,40.717793]},"properties":{"cartodb_id":11961,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03081,40.627388]},"properties":{"cartodb_id":11962,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99868,40.59727]},"properties":{"cartodb_id":11963,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90566,40.877705]},"properties":{"cartodb_id":11964,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99927,40.655743]},"properties":{"cartodb_id":11965,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92427,40.83068]},"properties":{"cartodb_id":11966,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.832504,40.846848]},"properties":{"cartodb_id":11967,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93673,40.743195]},"properties":{"cartodb_id":11968,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.939835,40.750195]},"properties":{"cartodb_id":11969,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.962524,40.76311]},"properties":{"cartodb_id":11970,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10081,40.610107]},"properties":{"cartodb_id":11971,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.876884,40.75053]},"properties":{"cartodb_id":11972,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94384,40.75253]},"properties":{"cartodb_id":11973,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01476,40.63396]},"properties":{"cartodb_id":11974,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.846344,40.66956]},"properties":{"cartodb_id":11975,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94505,40.843246]},"properties":{"cartodb_id":11976,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79616,40.592846]},"properties":{"cartodb_id":11977,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8882,40.674355]},"properties":{"cartodb_id":11978,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99071,40.689144]},"properties":{"cartodb_id":11979,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90211,40.845642]},"properties":{"cartodb_id":11980,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92165,40.851616]},"properties":{"cartodb_id":11981,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:59:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99594,40.59758]},"properties":{"cartodb_id":11982,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88685,40.843296]},"properties":{"cartodb_id":11983,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76119,40.713436]},"properties":{"cartodb_id":11984,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98224,40.68672]},"properties":{"cartodb_id":11986,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92718,40.711975]},"properties":{"cartodb_id":11987,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7487,40.607872]},"properties":{"cartodb_id":11989,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9345,40.662693]},"properties":{"cartodb_id":11990,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00893,40.67843]},"properties":{"cartodb_id":11991,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15334,40.608852]},"properties":{"cartodb_id":11992,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02174,40.631687]},"properties":{"cartodb_id":11993,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97969,40.63664]},"properties":{"cartodb_id":11994,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83802,40.72656]},"properties":{"cartodb_id":11995,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.901955,40.86455]},"properties":{"cartodb_id":11996,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89178,40.86187]},"properties":{"cartodb_id":11999,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87744,40.738598]},"properties":{"cartodb_id":12000,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87655,40.73761]},"properties":{"cartodb_id":12001,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01293,40.67733]},"properties":{"cartodb_id":12002,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981026,40.76927]},"properties":{"cartodb_id":12003,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94337,40.690804]},"properties":{"cartodb_id":12004,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72247,40.75851]},"properties":{"cartodb_id":12005,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86579,40.88893]},"properties":{"cartodb_id":12006,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83936,40.725258]},"properties":{"cartodb_id":12007,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95383,40.590187]},"properties":{"cartodb_id":12008,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01397,40.638153]},"properties":{"cartodb_id":12009,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9657,40.768543]},"properties":{"cartodb_id":12010,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97881,40.7621]},"properties":{"cartodb_id":12011,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.968285,40.577477]},"properties":{"cartodb_id":12012,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99711,40.747204]},"properties":{"cartodb_id":12014,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0779,40.641586]},"properties":{"cartodb_id":12015,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95623,40.667477]},"properties":{"cartodb_id":12016,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99217,40.743793]},"properties":{"cartodb_id":12017,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99526,40.66706]},"properties":{"cartodb_id":12019,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96248,40.767185]},"properties":{"cartodb_id":12020,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981766,40.666656]},"properties":{"cartodb_id":12021,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8057,40.698692]},"properties":{"cartodb_id":12023,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99491,40.68443]},"properties":{"cartodb_id":12024,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96967,40.638058]},"properties":{"cartodb_id":12025,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87887,40.75624]},"properties":{"cartodb_id":12027,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89856,40.60545]},"properties":{"cartodb_id":12028,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.062874,40.602806]},"properties":{"cartodb_id":12029,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96618,40.624653]},"properties":{"cartodb_id":12030,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84868,40.781418]},"properties":{"cartodb_id":12031,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00316,40.72766]},"properties":{"cartodb_id":12032,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99548,40.759624]},"properties":{"cartodb_id":12033,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93583,40.8095]},"properties":{"cartodb_id":12035,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09576,40.610508]},"properties":{"cartodb_id":12036,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97717,40.683636]},"properties":{"cartodb_id":12037,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00646,40.70698]},"properties":{"cartodb_id":12038,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.987206,40.693783]},"properties":{"cartodb_id":12039,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83009,40.713913]},"properties":{"cartodb_id":12040,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90473,40.68209]},"properties":{"cartodb_id":12041,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9281,40.821945]},"properties":{"cartodb_id":12042,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94715,40.741364]},"properties":{"cartodb_id":12043,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14692,40.631157]},"properties":{"cartodb_id":12044,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80105,40.58947]},"properties":{"cartodb_id":12045,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98828,40.68186]},"properties":{"cartodb_id":12046,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16007,40.54559]},"properties":{"cartodb_id":12047,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:52:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98188,40.75477]},"properties":{"cartodb_id":12048,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95645,40.656292]},"properties":{"cartodb_id":12049,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92929,40.799698]},"properties":{"cartodb_id":12050,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90396,40.854973]},"properties":{"cartodb_id":12051,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97559,40.681473]},"properties":{"cartodb_id":12052,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7281,40.711033]},"properties":{"cartodb_id":12054,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9622,40.614353]},"properties":{"cartodb_id":12055,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97405,40.747295]},"properties":{"cartodb_id":12056,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.955284,40.613377]},"properties":{"cartodb_id":12057,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.962265,40.69832]},"properties":{"cartodb_id":12058,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99464,40.76588]},"properties":{"cartodb_id":12059,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95655,40.731407]},"properties":{"cartodb_id":12060,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.954254,40.766167]},"properties":{"cartodb_id":12062,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.802635,40.666405]},"properties":{"cartodb_id":12063,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97861,40.727108]},"properties":{"cartodb_id":12064,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94747,40.649036]},"properties":{"cartodb_id":12065,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92441,40.80962]},"properties":{"cartodb_id":12067,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83485,40.692135]},"properties":{"cartodb_id":12068,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89509,40.83299]},"properties":{"cartodb_id":12069,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.806595,40.70663]},"properties":{"cartodb_id":12073,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73921,40.66563]},"properties":{"cartodb_id":12074,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.832306,40.75194]},"properties":{"cartodb_id":12075,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87941,40.737156]},"properties":{"cartodb_id":12077,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.856735,40.70456]},"properties":{"cartodb_id":12078,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.905846,40.831055]},"properties":{"cartodb_id":12079,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10977,40.570465]},"properties":{"cartodb_id":12080,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09576,40.610508]},"properties":{"cartodb_id":12081,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93581,40.630028]},"properties":{"cartodb_id":12082,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91893,40.753635]},"properties":{"cartodb_id":12083,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.870056,40.733448]},"properties":{"cartodb_id":12084,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74173,40.75548]},"properties":{"cartodb_id":12085,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.899956,40.857418]},"properties":{"cartodb_id":12086,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.875374,40.879578]},"properties":{"cartodb_id":12087,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90574,40.72851]},"properties":{"cartodb_id":12088,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.821205,40.715443]},"properties":{"cartodb_id":12089,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00636,40.722584]},"properties":{"cartodb_id":12090,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.896706,40.67178]},"properties":{"cartodb_id":12091,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09576,40.610508]},"properties":{"cartodb_id":12092,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.929184,40.696964]},"properties":{"cartodb_id":12093,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9006,40.70777]},"properties":{"cartodb_id":12095,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.997795,40.724236]},"properties":{"cartodb_id":12098,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08711,40.607555]},"properties":{"cartodb_id":12099,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.971375,40.74456]},"properties":{"cartodb_id":12100,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83387,40.876022]},"properties":{"cartodb_id":12101,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92519,40.743916]},"properties":{"cartodb_id":12102,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95384,40.581745]},"properties":{"cartodb_id":12104,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16984,40.561077]},"properties":{"cartodb_id":12105,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81758,40.77526]},"properties":{"cartodb_id":12107,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0365,40.61799]},"properties":{"cartodb_id":12108,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14111,40.572422]},"properties":{"cartodb_id":12109,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11139,40.63042]},"properties":{"cartodb_id":12111,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91282,40.861862]},"properties":{"cartodb_id":12114,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.142555,40.630325]},"properties":{"cartodb_id":12116,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92823,40.738205]},"properties":{"cartodb_id":12117,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91468,40.85394]},"properties":{"cartodb_id":12118,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91252,40.665207]},"properties":{"cartodb_id":12119,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01169,40.678394]},"properties":{"cartodb_id":12120,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00569,40.737553]},"properties":{"cartodb_id":12125,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91207,40.560787]},"properties":{"cartodb_id":12126,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.754616,40.749943]},"properties":{"cartodb_id":12127,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83567,40.743504]},"properties":{"cartodb_id":12128,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.929474,40.8396]},"properties":{"cartodb_id":12129,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80971,40.786785]},"properties":{"cartodb_id":12130,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.956276,40.813374]},"properties":{"cartodb_id":12131,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99686,40.66159]},"properties":{"cartodb_id":12132,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90478,40.712864]},"properties":{"cartodb_id":12133,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.967995,40.80051]},"properties":{"cartodb_id":12134,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.931465,40.66523]},"properties":{"cartodb_id":12135,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.967995,40.80051]},"properties":{"cartodb_id":12136,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.916855,40.84506]},"properties":{"cartodb_id":12137,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88248,40.872128]},"properties":{"cartodb_id":12138,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95286,40.67446]},"properties":{"cartodb_id":12139,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86939,40.665188]},"properties":{"cartodb_id":12141,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.871605,40.878643]},"properties":{"cartodb_id":12142,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.803856,40.734894]},"properties":{"cartodb_id":12143,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83343,40.766575]},"properties":{"cartodb_id":12145,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.991974,40.574543]},"properties":{"cartodb_id":12146,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95736,40.583023]},"properties":{"cartodb_id":12147,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85092,40.817875]},"properties":{"cartodb_id":12148,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99499,40.700737]},"properties":{"cartodb_id":12149,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95294,40.67357]},"properties":{"cartodb_id":12150,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91555,40.65702]},"properties":{"cartodb_id":12151,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89379,40.773087]},"properties":{"cartodb_id":12152,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.926384,40.844917]},"properties":{"cartodb_id":12153,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93432,40.806828]},"properties":{"cartodb_id":12155,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87824,40.82866]},"properties":{"cartodb_id":12156,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80186,40.674934]},"properties":{"cartodb_id":12157,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94092,40.682835]},"properties":{"cartodb_id":12159,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946724,40.727093]},"properties":{"cartodb_id":12160,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90198,40.824574]},"properties":{"cartodb_id":12161,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99953,40.673637]},"properties":{"cartodb_id":12163,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95666,40.605927]},"properties":{"cartodb_id":12164,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91292,40.666744]},"properties":{"cartodb_id":12165,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92243,40.841835]},"properties":{"cartodb_id":12166,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:59:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.775604,40.779324]},"properties":{"cartodb_id":12168,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97213,40.743156]},"properties":{"cartodb_id":12169,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81251,40.81698]},"properties":{"cartodb_id":12170,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93056,40.65342]},"properties":{"cartodb_id":12171,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.779274,40.757725]},"properties":{"cartodb_id":12172,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85706,40.75687]},"properties":{"cartodb_id":12173,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01047,40.711533]},"properties":{"cartodb_id":12174,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87462,40.824158]},"properties":{"cartodb_id":12175,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97681,40.750427]},"properties":{"cartodb_id":12176,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92307,40.82609]},"properties":{"cartodb_id":12177,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90691,40.753284]},"properties":{"cartodb_id":12178,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97304,40.74445]},"properties":{"cartodb_id":12179,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.984924,40.753746]},"properties":{"cartodb_id":12180,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.062874,40.602806]},"properties":{"cartodb_id":12181,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0852,40.6052]},"properties":{"cartodb_id":12182,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81259,40.67901]},"properties":{"cartodb_id":12185,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.980415,40.742588]},"properties":{"cartodb_id":12187,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74935,40.715145]},"properties":{"cartodb_id":12188,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90184,40.704456]},"properties":{"cartodb_id":12189,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T04:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98091,40.696556]},"properties":{"cartodb_id":12190,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T04:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.926186,40.630627]},"properties":{"cartodb_id":12191,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T04:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88573,40.82255]},"properties":{"cartodb_id":12192,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T04:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91355,40.753468]},"properties":{"cartodb_id":12194,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92398,40.61913]},"properties":{"cartodb_id":12195,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79196,40.697544]},"properties":{"cartodb_id":12196,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T03:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91355,40.753468]},"properties":{"cartodb_id":12197,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T03:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91113,40.644863]},"properties":{"cartodb_id":12198,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T02:33:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96434,40.7606]},"properties":{"cartodb_id":12199,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T01:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98799,40.585976]},"properties":{"cartodb_id":12200,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T01:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93106,40.754974]},"properties":{"cartodb_id":12201,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97731,40.77946]},"properties":{"cartodb_id":12202,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95147,40.68986]},"properties":{"cartodb_id":12203,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87854,40.754414]},"properties":{"cartodb_id":12205,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98468,40.638733]},"properties":{"cartodb_id":12206,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9975,40.670338]},"properties":{"cartodb_id":12207,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87568,40.74297]},"properties":{"cartodb_id":12208,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.886856,40.87781]},"properties":{"cartodb_id":12209,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94349,40.68479]},"properties":{"cartodb_id":12210,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16397,40.623474]},"properties":{"cartodb_id":12211,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94328,40.793488]},"properties":{"cartodb_id":12212,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87822,40.736904]},"properties":{"cartodb_id":12213,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91395,40.825718]},"properties":{"cartodb_id":12214,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90359,40.843002]},"properties":{"cartodb_id":12215,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87463,40.67239]},"properties":{"cartodb_id":12216,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96011,40.584774]},"properties":{"cartodb_id":12217,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-06T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87864,40.87306]},"properties":{"cartodb_id":12219,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89088,40.84724]},"properties":{"cartodb_id":12220,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:31:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9482,40.69024]},"properties":{"cartodb_id":12221,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92991,40.799717]},"properties":{"cartodb_id":12222,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98753,40.741528]},"properties":{"cartodb_id":12223,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89063,40.691433]},"properties":{"cartodb_id":12224,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86887,40.677155]},"properties":{"cartodb_id":12227,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9092,40.84497]},"properties":{"cartodb_id":12230,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87462,40.829502]},"properties":{"cartodb_id":12231,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.879715,40.83721]},"properties":{"cartodb_id":12232,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85444,40.704063]},"properties":{"cartodb_id":12233,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85766,40.73367]},"properties":{"cartodb_id":12235,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.790535,40.670055]},"properties":{"cartodb_id":12236,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01589,40.646637]},"properties":{"cartodb_id":12237,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88045,40.7475]},"properties":{"cartodb_id":12238,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88254,40.83734]},"properties":{"cartodb_id":12241,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9219,40.733917]},"properties":{"cartodb_id":12242,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89541,40.750267]},"properties":{"cartodb_id":12243,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.953575,40.584618]},"properties":{"cartodb_id":12244,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92088,40.76753]},"properties":{"cartodb_id":12245,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.809044,40.71991]},"properties":{"cartodb_id":12247,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94579,40.79292]},"properties":{"cartodb_id":12248,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80546,40.666893]},"properties":{"cartodb_id":12250,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81743,40.704494]},"properties":{"cartodb_id":12251,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89807,40.76805]},"properties":{"cartodb_id":12252,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83481,40.66632]},"properties":{"cartodb_id":12253,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88858,40.758957]},"properties":{"cartodb_id":12254,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96624,40.760574]},"properties":{"cartodb_id":12255,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00818,40.738052]},"properties":{"cartodb_id":12257,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.999344,40.69168]},"properties":{"cartodb_id":12258,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94967,40.590244]},"properties":{"cartodb_id":12259,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.003716,40.641113]},"properties":{"cartodb_id":12261,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.837105,40.72408]},"properties":{"cartodb_id":12262,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87601,40.770332]},"properties":{"cartodb_id":12263,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81402,40.75806]},"properties":{"cartodb_id":12264,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98748,40.760403]},"properties":{"cartodb_id":12265,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97634,40.647728]},"properties":{"cartodb_id":12266,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00121,40.606384]},"properties":{"cartodb_id":12267,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98509,40.697212]},"properties":{"cartodb_id":12268,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73358,40.723198]},"properties":{"cartodb_id":12269,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8859,40.82244]},"properties":{"cartodb_id":12270,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.171844,40.561512]},"properties":{"cartodb_id":12271,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91348,40.665066]},"properties":{"cartodb_id":12272,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01254,40.632633]},"properties":{"cartodb_id":12273,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.000656,40.73723]},"properties":{"cartodb_id":12274,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93005,40.829945]},"properties":{"cartodb_id":12275,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74734,40.69149]},"properties":{"cartodb_id":12276,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97429,40.730515]},"properties":{"cartodb_id":12277,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91499,40.74273]},"properties":{"cartodb_id":12278,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99347,40.75219]},"properties":{"cartodb_id":12279,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10342,40.629642]},"properties":{"cartodb_id":12280,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94539,40.841843]},"properties":{"cartodb_id":12281,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98352,40.781124]},"properties":{"cartodb_id":12283,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.019264,40.630558]},"properties":{"cartodb_id":12284,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82473,40.681522]},"properties":{"cartodb_id":12285,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96986,40.757072]},"properties":{"cartodb_id":12286,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82617,40.715553]},"properties":{"cartodb_id":12287,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9745,40.74668]},"properties":{"cartodb_id":12288,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84503,40.689236]},"properties":{"cartodb_id":12290,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75173,40.726006]},"properties":{"cartodb_id":12292,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89793,40.748493]},"properties":{"cartodb_id":12293,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89686,40.675735]},"properties":{"cartodb_id":12295,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83029,40.685074]},"properties":{"cartodb_id":12296,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.999344,40.69168]},"properties":{"cartodb_id":12297,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82624,40.719833]},"properties":{"cartodb_id":12298,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.757996,40.72508]},"properties":{"cartodb_id":12299,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85956,40.713394]},"properties":{"cartodb_id":12300,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.937706,40.745235]},"properties":{"cartodb_id":12301,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13008,40.55778]},"properties":{"cartodb_id":12302,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.933525,40.79859]},"properties":{"cartodb_id":12304,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.815834,40.764584]},"properties":{"cartodb_id":12305,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99032,40.76161]},"properties":{"cartodb_id":12307,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93764,40.660927]},"properties":{"cartodb_id":12308,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09583,40.589226]},"properties":{"cartodb_id":12310,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91108,40.77309]},"properties":{"cartodb_id":12311,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9965,40.6687]},"properties":{"cartodb_id":12312,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82102,40.78168]},"properties":{"cartodb_id":12313,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84573,40.741234]},"properties":{"cartodb_id":12314,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81041,40.72372]},"properties":{"cartodb_id":12315,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88914,40.76588]},"properties":{"cartodb_id":12316,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.145775,40.624958]},"properties":{"cartodb_id":12317,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.154366,40.588554]},"properties":{"cartodb_id":12318,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96338,40.60988]},"properties":{"cartodb_id":12319,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9978,40.69119]},"properties":{"cartodb_id":12321,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.778625,40.78866]},"properties":{"cartodb_id":12322,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.906166,40.862778]},"properties":{"cartodb_id":12323,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91488,40.851044]},"properties":{"cartodb_id":12324,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96288,40.648403]},"properties":{"cartodb_id":12325,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15226,40.625515]},"properties":{"cartodb_id":12326,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.001434,40.719936]},"properties":{"cartodb_id":12327,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.970764,40.75582]},"properties":{"cartodb_id":12328,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.758156,40.665634]},"properties":{"cartodb_id":12329,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98602,40.75734]},"properties":{"cartodb_id":12330,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89523,40.66937]},"properties":{"cartodb_id":12331,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0991,40.580727]},"properties":{"cartodb_id":12332,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9037,40.877316]},"properties":{"cartodb_id":12333,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.885666,40.835583]},"properties":{"cartodb_id":12334,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85989,40.733]},"properties":{"cartodb_id":12335,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007996,40.647346]},"properties":{"cartodb_id":12336,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7264,40.72621]},"properties":{"cartodb_id":12337,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99085,40.75067]},"properties":{"cartodb_id":12340,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92848,40.667496]},"properties":{"cartodb_id":12341,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86279,40.849236]},"properties":{"cartodb_id":12342,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98964,40.592125]},"properties":{"cartodb_id":12344,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02748,40.622272]},"properties":{"cartodb_id":12345,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90906,40.696762]},"properties":{"cartodb_id":12347,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.810776,40.732323]},"properties":{"cartodb_id":12349,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.977806,40.640453]},"properties":{"cartodb_id":12351,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.030716,40.624325]},"properties":{"cartodb_id":12353,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87627,40.752316]},"properties":{"cartodb_id":12355,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.828255,40.886734]},"properties":{"cartodb_id":12356,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.161,40.610867]},"properties":{"cartodb_id":12359,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98703,40.71968]},"properties":{"cartodb_id":12360,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.902664,40.826775]},"properties":{"cartodb_id":12361,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1346,40.565273]},"properties":{"cartodb_id":12362,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00612,40.723747]},"properties":{"cartodb_id":12363,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85906,40.87473]},"properties":{"cartodb_id":12364,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94752,40.779434]},"properties":{"cartodb_id":12365,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9158,40.764267]},"properties":{"cartodb_id":12366,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78995,40.76437]},"properties":{"cartodb_id":12368,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.907555,40.867226]},"properties":{"cartodb_id":12369,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98676,40.676582]},"properties":{"cartodb_id":12370,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88536,40.65872]},"properties":{"cartodb_id":12371,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90437,40.719135]},"properties":{"cartodb_id":12372,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.023705,40.62095]},"properties":{"cartodb_id":12373,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83446,40.889362]},"properties":{"cartodb_id":12374,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7623,40.690918]},"properties":{"cartodb_id":12375,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.890564,40.67006]},"properties":{"cartodb_id":12377,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95836,40.760536]},"properties":{"cartodb_id":12378,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.019035,40.640263]},"properties":{"cartodb_id":12379,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.958405,40.680798]},"properties":{"cartodb_id":12380,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91777,40.862755]},"properties":{"cartodb_id":12383,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.977585,40.68801]},"properties":{"cartodb_id":12384,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87608,40.770332]},"properties":{"cartodb_id":12385,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89083,40.820305]},"properties":{"cartodb_id":12386,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87378,40.837452]},"properties":{"cartodb_id":12387,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83061,40.860374]},"properties":{"cartodb_id":12388,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93149,40.662052]},"properties":{"cartodb_id":12389,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.774506,40.671825]},"properties":{"cartodb_id":12390,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.870445,40.86373]},"properties":{"cartodb_id":12393,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75541,40.72387]},"properties":{"cartodb_id":12394,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97529,40.610126]},"properties":{"cartodb_id":12395,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84003,40.6762]},"properties":{"cartodb_id":12396,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00561,40.65318]},"properties":{"cartodb_id":12397,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81414,40.765182]},"properties":{"cartodb_id":12398,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87649,40.75364]},"properties":{"cartodb_id":12399,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95973,40.64333]},"properties":{"cartodb_id":12400,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.959114,40.61811]},"properties":{"cartodb_id":12401,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93139,40.666122]},"properties":{"cartodb_id":12402,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95567,40.681137]},"properties":{"cartodb_id":12403,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90693,40.68581]},"properties":{"cartodb_id":12404,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.820885,40.67054]},"properties":{"cartodb_id":12405,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7355,40.77067]},"properties":{"cartodb_id":12406,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.939575,40.690742]},"properties":{"cartodb_id":12407,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00141,40.722553]},"properties":{"cartodb_id":12408,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92007,40.7563]},"properties":{"cartodb_id":12409,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97765,40.747192]},"properties":{"cartodb_id":12410,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98937,40.745564]},"properties":{"cartodb_id":12412,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.982666,40.72726]},"properties":{"cartodb_id":12413,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.833534,40.683804]},"properties":{"cartodb_id":12414,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82852,40.689236]},"properties":{"cartodb_id":12415,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90947,40.843777]},"properties":{"cartodb_id":12416,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.919464,40.621834]},"properties":{"cartodb_id":12417,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95254,40.826424]},"properties":{"cartodb_id":12418,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.900696,40.873203]},"properties":{"cartodb_id":12419,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96199,40.579033]},"properties":{"cartodb_id":12422,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.991455,40.691597]},"properties":{"cartodb_id":12423,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09049,40.58834]},"properties":{"cartodb_id":12424,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15134,40.550686]},"properties":{"cartodb_id":12425,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76239,40.691666]},"properties":{"cartodb_id":12427,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97973,40.73952]},"properties":{"cartodb_id":12428,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9819,40.762966]},"properties":{"cartodb_id":12429,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83148,40.845833]},"properties":{"cartodb_id":12432,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95298,40.81507]},"properties":{"cartodb_id":12434,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.897095,40.851967]},"properties":{"cartodb_id":12437,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84314,40.708324]},"properties":{"cartodb_id":12438,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90021,40.700497]},"properties":{"cartodb_id":12439,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97564,40.615944]},"properties":{"cartodb_id":12440,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99497,40.634914]},"properties":{"cartodb_id":12441,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87951,40.825905]},"properties":{"cartodb_id":12443,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76773,40.59626]},"properties":{"cartodb_id":12444,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94668,40.626804]},"properties":{"cartodb_id":12446,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.857056,40.73989]},"properties":{"cartodb_id":12447,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92049,40.753284]},"properties":{"cartodb_id":12448,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99499,40.7603]},"properties":{"cartodb_id":12449,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76515,40.74678]},"properties":{"cartodb_id":12450,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86702,40.769623]},"properties":{"cartodb_id":12452,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.934586,40.739674]},"properties":{"cartodb_id":12453,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77689,40.759605]},"properties":{"cartodb_id":12455,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82894,40.76376]},"properties":{"cartodb_id":12456,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97747,40.742508]},"properties":{"cartodb_id":12457,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.976295,40.759785]},"properties":{"cartodb_id":12458,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.12475,40.613705]},"properties":{"cartodb_id":12459,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00104,40.67641]},"properties":{"cartodb_id":12460,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9924,40.61024]},"properties":{"cartodb_id":12461,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.934586,40.739674]},"properties":{"cartodb_id":12462,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85817,40.72962]},"properties":{"cartodb_id":12463,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.979065,40.76177]},"properties":{"cartodb_id":12464,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96101,40.65008]},"properties":{"cartodb_id":12465,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:31:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86539,40.886883]},"properties":{"cartodb_id":12466,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98112,40.774227]},"properties":{"cartodb_id":12467,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8463,40.811546]},"properties":{"cartodb_id":12468,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86536,40.651863]},"properties":{"cartodb_id":12469,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0043,40.707287]},"properties":{"cartodb_id":12470,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00636,40.722584]},"properties":{"cartodb_id":12471,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88167,40.869217]},"properties":{"cartodb_id":12472,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.739555,40.67581]},"properties":{"cartodb_id":12473,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87982,40.724735]},"properties":{"cartodb_id":12474,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:06:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92231,40.76732]},"properties":{"cartodb_id":12475,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.868614,40.852066]},"properties":{"cartodb_id":12476,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:01:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98802,40.74909]},"properties":{"cartodb_id":12477,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89765,40.703415]},"properties":{"cartodb_id":12479,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97957,40.785397]},"properties":{"cartodb_id":12480,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85006,40.661175]},"properties":{"cartodb_id":12482,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93207,40.8469]},"properties":{"cartodb_id":12483,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.948524,40.80152]},"properties":{"cartodb_id":12484,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91206,40.83501]},"properties":{"cartodb_id":12485,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.158554,40.583836]},"properties":{"cartodb_id":12486,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09936,40.61242]},"properties":{"cartodb_id":12487,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98534,40.77353]},"properties":{"cartodb_id":12488,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.945,40.808445]},"properties":{"cartodb_id":12489,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7347,40.65031]},"properties":{"cartodb_id":12490,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89689,40.90104]},"properties":{"cartodb_id":12491,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.862114,40.725082]},"properties":{"cartodb_id":12492,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97332,40.76099]},"properties":{"cartodb_id":12493,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.062874,40.602806]},"properties":{"cartodb_id":12494,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80475,40.736774]},"properties":{"cartodb_id":12496,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80854,40.784798]},"properties":{"cartodb_id":12497,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98044,40.6899]},"properties":{"cartodb_id":12498,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.880684,40.8375]},"properties":{"cartodb_id":12499,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.990395,40.751328]},"properties":{"cartodb_id":12500,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98602,40.75734]},"properties":{"cartodb_id":12502,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97653,40.6798]},"properties":{"cartodb_id":12503,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79204,40.69001]},"properties":{"cartodb_id":12505,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8453,40.842506]},"properties":{"cartodb_id":12507,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84045,40.884735]},"properties":{"cartodb_id":12509,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11835,40.609142]},"properties":{"cartodb_id":12510,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79922,40.767666]},"properties":{"cartodb_id":12511,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02877,40.631702]},"properties":{"cartodb_id":12513,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01057,40.713844]},"properties":{"cartodb_id":12514,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00418,40.71024]},"properties":{"cartodb_id":12515,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99029,40.71918]},"properties":{"cartodb_id":12516,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.881546,40.66036]},"properties":{"cartodb_id":12517,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9357,40.73783]},"properties":{"cartodb_id":12518,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97759,40.787045]},"properties":{"cartodb_id":12519,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81955,40.683002]},"properties":{"cartodb_id":12521,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98289,40.766712]},"properties":{"cartodb_id":12522,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.849106,40.661316]},"properties":{"cartodb_id":12523,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.817055,40.721935]},"properties":{"cartodb_id":12524,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84157,40.7011]},"properties":{"cartodb_id":12525,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72694,40.69382]},"properties":{"cartodb_id":12527,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95855,40.625496]},"properties":{"cartodb_id":12529,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.820854,40.75224]},"properties":{"cartodb_id":12530,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83232,40.880833]},"properties":{"cartodb_id":12531,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8513,40.714092]},"properties":{"cartodb_id":12533,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84434,40.85119]},"properties":{"cartodb_id":12534,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01969,40.624363]},"properties":{"cartodb_id":12535,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.839615,40.781693]},"properties":{"cartodb_id":12536,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.720535,40.731445]},"properties":{"cartodb_id":12537,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99459,40.660225]},"properties":{"cartodb_id":12538,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91836,40.7449]},"properties":{"cartodb_id":12539,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.907104,40.75544]},"properties":{"cartodb_id":12540,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9203,40.630993]},"properties":{"cartodb_id":12543,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93178,40.80098]},"properties":{"cartodb_id":12544,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93708,40.85457]},"properties":{"cartodb_id":12546,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.934235,40.767853]},"properties":{"cartodb_id":12547,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86853,40.669518]},"properties":{"cartodb_id":12548,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84213,40.86623]},"properties":{"cartodb_id":12549,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82164,40.61488]},"properties":{"cartodb_id":12550,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80769,40.753986]},"properties":{"cartodb_id":12551,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96094,40.5948]},"properties":{"cartodb_id":12552,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13157,40.635895]},"properties":{"cartodb_id":12553,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13142,40.61868]},"properties":{"cartodb_id":12554,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94579,40.79292]},"properties":{"cartodb_id":12555,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79895,40.73826]},"properties":{"cartodb_id":12556,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83283,40.75372]},"properties":{"cartodb_id":12558,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10592,40.574276]},"properties":{"cartodb_id":12559,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.866394,40.837585]},"properties":{"cartodb_id":12560,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.915634,40.668964]},"properties":{"cartodb_id":12561,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T06:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.963135,40.644512]},"properties":{"cartodb_id":12562,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T06:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92116,40.826397]},"properties":{"cartodb_id":12563,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88621,40.73845]},"properties":{"cartodb_id":12564,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83277,40.68368]},"properties":{"cartodb_id":12565,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99743,40.594616]},"properties":{"cartodb_id":12566,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.878876,40.761456]},"properties":{"cartodb_id":12567,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95652,40.691536]},"properties":{"cartodb_id":12568,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98281,40.76172]},"properties":{"cartodb_id":12569,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94048,40.82391]},"properties":{"cartodb_id":12570,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85334,40.681404]},"properties":{"cartodb_id":12571,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.852516,40.757763]},"properties":{"cartodb_id":12572,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87648,40.770275]},"properties":{"cartodb_id":12573,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.893776,40.742607]},"properties":{"cartodb_id":12575,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90797,40.83526]},"properties":{"cartodb_id":12576,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9453,40.8284]},"properties":{"cartodb_id":12577,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.06846,40.608475]},"properties":{"cartodb_id":12579,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87767,40.73675]},"properties":{"cartodb_id":12580,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85814,40.89204]},"properties":{"cartodb_id":12581,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95773,40.64311]},"properties":{"cartodb_id":12582,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98508,40.75939]},"properties":{"cartodb_id":12584,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91959,40.661995]},"properties":{"cartodb_id":12585,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T04:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97861,40.762394]},"properties":{"cartodb_id":12586,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98941,40.76286]},"properties":{"cartodb_id":12587,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80354,40.70028]},"properties":{"cartodb_id":12588,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97539,40.749485]},"properties":{"cartodb_id":12589,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78358,40.78888]},"properties":{"cartodb_id":12592,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95819,40.758965]},"properties":{"cartodb_id":12593,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T03:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81744,40.712486]},"properties":{"cartodb_id":12594,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T02:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.064186,40.592342]},"properties":{"cartodb_id":12595,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T02:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.924065,40.809605]},"properties":{"cartodb_id":12596,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T02:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9614,40.680473]},"properties":{"cartodb_id":12597,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95382,40.682846]},"properties":{"cartodb_id":12598,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93758,40.850693]},"properties":{"cartodb_id":12599,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.917046,40.867027]},"properties":{"cartodb_id":12600,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00046,40.730057]},"properties":{"cartodb_id":12601,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84151,40.697678]},"properties":{"cartodb_id":12602,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87515,40.831764]},"properties":{"cartodb_id":12603,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93496,40.737785]},"properties":{"cartodb_id":12605,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98568,40.717926]},"properties":{"cartodb_id":12606,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8047,40.817734]},"properties":{"cartodb_id":12607,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92013,40.70925]},"properties":{"cartodb_id":12608,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94586,40.83856]},"properties":{"cartodb_id":12609,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88179,40.692345]},"properties":{"cartodb_id":12611,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83369,40.756317]},"properties":{"cartodb_id":12612,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8036,40.809917]},"properties":{"cartodb_id":12613,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.904785,40.646114]},"properties":{"cartodb_id":12614,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86806,40.877796]},"properties":{"cartodb_id":12615,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9047,40.90178]},"properties":{"cartodb_id":12616,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.990585,40.746864]},"properties":{"cartodb_id":12617,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98043,40.7599]},"properties":{"cartodb_id":12618,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.896904,40.75248]},"properties":{"cartodb_id":12619,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91149,40.7614]},"properties":{"cartodb_id":12620,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94913,40.717022]},"properties":{"cartodb_id":12621,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8047,40.817734]},"properties":{"cartodb_id":12622,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00955,40.710327]},"properties":{"cartodb_id":12623,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98941,40.76286]},"properties":{"cartodb_id":12624,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.945366,40.799286]},"properties":{"cartodb_id":12625,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.798134,40.70905]},"properties":{"cartodb_id":12626,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.950584,40.812912]},"properties":{"cartodb_id":12627,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01468,40.70983]},"properties":{"cartodb_id":12628,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.924934,40.69112]},"properties":{"cartodb_id":12629,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99649,40.753128]},"properties":{"cartodb_id":12630,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-05T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95387,40.743416]},"properties":{"cartodb_id":12631,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97213,40.762627]},"properties":{"cartodb_id":12632,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93294,40.63021]},"properties":{"cartodb_id":12634,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94293,40.823257]},"properties":{"cartodb_id":12635,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.779335,40.75091]},"properties":{"cartodb_id":12636,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99063,40.750988]},"properties":{"cartodb_id":12637,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85971,40.826275]},"properties":{"cartodb_id":12638,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99201,40.7491]},"properties":{"cartodb_id":12639,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94279,40.827343]},"properties":{"cartodb_id":12640,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84523,40.721985]},"properties":{"cartodb_id":12641,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73602,40.66989]},"properties":{"cartodb_id":12642,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81517,40.68225]},"properties":{"cartodb_id":12643,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.956856,40.72097]},"properties":{"cartodb_id":12644,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98865,40.72293]},"properties":{"cartodb_id":12645,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8276,40.677498]},"properties":{"cartodb_id":12646,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.992905,40.71997]},"properties":{"cartodb_id":12647,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88011,40.881996]},"properties":{"cartodb_id":12649,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98906,40.73072]},"properties":{"cartodb_id":12650,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99499,40.700737]},"properties":{"cartodb_id":12652,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91918,40.63747]},"properties":{"cartodb_id":12653,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99076,40.734837]},"properties":{"cartodb_id":12654,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.938225,40.719265]},"properties":{"cartodb_id":12655,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89723,40.677208]},"properties":{"cartodb_id":12656,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9551,40.70138]},"properties":{"cartodb_id":12657,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98529,40.748726]},"properties":{"cartodb_id":12663,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81976,40.768784]},"properties":{"cartodb_id":12664,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.983376,40.766045]},"properties":{"cartodb_id":12665,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15877,40.613007]},"properties":{"cartodb_id":12666,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98657,40.70441]},"properties":{"cartodb_id":12667,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00795,40.740295]},"properties":{"cartodb_id":12668,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.868164,40.865417]},"properties":{"cartodb_id":12669,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90985,40.751637]},"properties":{"cartodb_id":12670,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89786,40.82451]},"properties":{"cartodb_id":12671,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98709,40.73631]},"properties":{"cartodb_id":12672,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.994385,40.719517]},"properties":{"cartodb_id":12673,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.844574,40.720505]},"properties":{"cartodb_id":12674,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90815,40.873676]},"properties":{"cartodb_id":12675,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:51:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00479,40.723625]},"properties":{"cartodb_id":12676,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77315,40.709923]},"properties":{"cartodb_id":12677,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94056,40.800068]},"properties":{"cartodb_id":12678,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946754,40.68024]},"properties":{"cartodb_id":12679,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.779945,40.75517]},"properties":{"cartodb_id":12681,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86615,40.87142]},"properties":{"cartodb_id":12682,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85866,40.81107]},"properties":{"cartodb_id":12683,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.872696,40.755028]},"properties":{"cartodb_id":12684,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88425,40.749393]},"properties":{"cartodb_id":12685,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98071,40.68532]},"properties":{"cartodb_id":12686,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82389,40.75204]},"properties":{"cartodb_id":12687,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82635,40.70083]},"properties":{"cartodb_id":12688,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89024,40.766705]},"properties":{"cartodb_id":12689,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.861465,40.667923]},"properties":{"cartodb_id":12690,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.919235,40.807556]},"properties":{"cartodb_id":12692,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91889,40.669918]},"properties":{"cartodb_id":12693,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92986,40.767326]},"properties":{"cartodb_id":12695,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98505,40.748646]},"properties":{"cartodb_id":12696,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98142,40.66707]},"properties":{"cartodb_id":12697,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93336,40.758274]},"properties":{"cartodb_id":12698,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99234,40.58872]},"properties":{"cartodb_id":12700,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75177,40.666393]},"properties":{"cartodb_id":12701,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00624,40.723118]},"properties":{"cartodb_id":12702,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.876495,40.67213]},"properties":{"cartodb_id":12704,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91282,40.861862]},"properties":{"cartodb_id":12705,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T19:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84495,40.68231]},"properties":{"cartodb_id":12707,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:58:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.914474,40.753677]},"properties":{"cartodb_id":12708,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92371,40.849236]},"properties":{"cartodb_id":12711,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97835,40.684395]},"properties":{"cartodb_id":12715,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91033,40.702557]},"properties":{"cartodb_id":12716,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.22968,40.52456]},"properties":{"cartodb_id":12717,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.933235,40.67597]},"properties":{"cartodb_id":12718,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96298,40.762486]},"properties":{"cartodb_id":12720,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86705,40.854477]},"properties":{"cartodb_id":12721,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76656,40.66786]},"properties":{"cartodb_id":12722,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.991554,40.746483]},"properties":{"cartodb_id":12723,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95484,40.595604]},"properties":{"cartodb_id":12725,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.12514,40.6271]},"properties":{"cartodb_id":12727,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97515,40.73541]},"properties":{"cartodb_id":12728,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96011,40.584774]},"properties":{"cartodb_id":12729,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.915886,40.70055]},"properties":{"cartodb_id":12730,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75979,40.748226]},"properties":{"cartodb_id":12731,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90257,40.74128]},"properties":{"cartodb_id":12732,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.859764,40.711845]},"properties":{"cartodb_id":12733,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:59:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79636,40.685608]},"properties":{"cartodb_id":12734,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.994675,40.752686]},"properties":{"cartodb_id":12735,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.989876,40.733524]},"properties":{"cartodb_id":12736,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74701,40.7321]},"properties":{"cartodb_id":12737,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.23924,40.522884]},"properties":{"cartodb_id":12738,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89739,40.75905]},"properties":{"cartodb_id":12739,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00838,40.636635]},"properties":{"cartodb_id":12740,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.968025,40.792183]},"properties":{"cartodb_id":12741,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946106,40.74106]},"properties":{"cartodb_id":12742,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87743,40.680016]},"properties":{"cartodb_id":12743,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.165695,40.58785]},"properties":{"cartodb_id":12744,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99266,40.737328]},"properties":{"cartodb_id":12745,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88323,40.717014]},"properties":{"cartodb_id":12746,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8718,40.753326]},"properties":{"cartodb_id":12747,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90161,40.81969]},"properties":{"cartodb_id":12748,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7799,40.736923]},"properties":{"cartodb_id":12749,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99459,40.734673]},"properties":{"cartodb_id":12750,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93287,40.850506]},"properties":{"cartodb_id":12751,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85015,40.749336]},"properties":{"cartodb_id":12752,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93022,40.833183]},"properties":{"cartodb_id":12753,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.015656,40.638233]},"properties":{"cartodb_id":12755,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9447,40.843113]},"properties":{"cartodb_id":12757,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.923874,40.688766]},"properties":{"cartodb_id":12758,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91025,40.76943]},"properties":{"cartodb_id":12759,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91402,40.84079]},"properties":{"cartodb_id":12760,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97175,40.646]},"properties":{"cartodb_id":12761,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.878,40.679863]},"properties":{"cartodb_id":12762,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00592,40.72225]},"properties":{"cartodb_id":12765,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94463,40.84103]},"properties":{"cartodb_id":12766,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03018,40.61834]},"properties":{"cartodb_id":12767,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.796326,40.70772]},"properties":{"cartodb_id":12768,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96045,40.610203]},"properties":{"cartodb_id":12769,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92966,40.765373]},"properties":{"cartodb_id":12770,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.907875,40.591393]},"properties":{"cartodb_id":12771,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.009384,40.656372]},"properties":{"cartodb_id":12772,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.907875,40.591393]},"properties":{"cartodb_id":12773,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85392,40.72703]},"properties":{"cartodb_id":12774,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83169,40.687954]},"properties":{"cartodb_id":12775,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78273,40.713886]},"properties":{"cartodb_id":12777,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88629,40.652752]},"properties":{"cartodb_id":12779,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.896324,40.867035]},"properties":{"cartodb_id":12780,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9229,40.6182]},"properties":{"cartodb_id":12781,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74036,40.63621]},"properties":{"cartodb_id":12782,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95368,40.7879]},"properties":{"cartodb_id":12785,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93577,40.79149]},"properties":{"cartodb_id":12786,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9243,40.836018]},"properties":{"cartodb_id":12787,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90579,40.835724]},"properties":{"cartodb_id":12788,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87035,40.733536]},"properties":{"cartodb_id":12789,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.17477,40.526733]},"properties":{"cartodb_id":12790,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.866165,40.746166]},"properties":{"cartodb_id":12792,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15334,40.608852]},"properties":{"cartodb_id":12793,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76348,40.746883]},"properties":{"cartodb_id":12794,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73568,40.66561]},"properties":{"cartodb_id":12795,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.804535,40.756397]},"properties":{"cartodb_id":12796,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76111,40.691994]},"properties":{"cartodb_id":12799,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9372,40.818333]},"properties":{"cartodb_id":12801,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93942,40.583866]},"properties":{"cartodb_id":12802,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98412,40.75484]},"properties":{"cartodb_id":12803,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87039,40.83609]},"properties":{"cartodb_id":12804,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9408,40.5947]},"properties":{"cartodb_id":12806,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.164734,40.635307]},"properties":{"cartodb_id":12807,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90059,40.58993]},"properties":{"cartodb_id":12809,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83641,40.849724]},"properties":{"cartodb_id":12810,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946236,40.718857]},"properties":{"cartodb_id":12811,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8735,40.75265]},"properties":{"cartodb_id":12812,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85304,40.873116]},"properties":{"cartodb_id":12813,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.917244,40.712975]},"properties":{"cartodb_id":12814,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89109,40.65626]},"properties":{"cartodb_id":12816,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83556,40.82821]},"properties":{"cartodb_id":12817,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87647,40.721592]},"properties":{"cartodb_id":12818,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99098,40.60118]},"properties":{"cartodb_id":12819,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91748,40.88421]},"properties":{"cartodb_id":12820,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99237,40.68969]},"properties":{"cartodb_id":12821,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87777,40.692936]},"properties":{"cartodb_id":12822,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97664,40.747784]},"properties":{"cartodb_id":12823,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:52:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.836365,40.865314]},"properties":{"cartodb_id":12824,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.952065,40.78722]},"properties":{"cartodb_id":12825,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99418,40.766502]},"properties":{"cartodb_id":12826,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8829,40.721317]},"properties":{"cartodb_id":12827,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9471,40.803448]},"properties":{"cartodb_id":12828,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90878,40.654457]},"properties":{"cartodb_id":12830,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94328,40.793488]},"properties":{"cartodb_id":12831,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91557,40.74458]},"properties":{"cartodb_id":12833,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981804,40.758022]},"properties":{"cartodb_id":12835,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88175,40.761703]},"properties":{"cartodb_id":12836,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82585,40.749348]},"properties":{"cartodb_id":12837,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.160324,40.545456]},"properties":{"cartodb_id":12840,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.117584,40.5777]},"properties":{"cartodb_id":12841,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.901474,40.820015]},"properties":{"cartodb_id":12842,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90033,40.635437]},"properties":{"cartodb_id":12843,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98781,40.75309]},"properties":{"cartodb_id":12844,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82399,40.688244]},"properties":{"cartodb_id":12845,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:04:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76044,40.602673]},"properties":{"cartodb_id":12846,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08831,40.60111]},"properties":{"cartodb_id":12847,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9313,40.667015]},"properties":{"cartodb_id":12848,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.997765,40.721573]},"properties":{"cartodb_id":12849,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.912575,40.753304]},"properties":{"cartodb_id":12850,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76935,40.760254]},"properties":{"cartodb_id":12852,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88122,40.744625]},"properties":{"cartodb_id":12853,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.003265,40.65543]},"properties":{"cartodb_id":12854,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82963,40.700283]},"properties":{"cartodb_id":12855,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8271,40.75714]},"properties":{"cartodb_id":12856,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95506,40.773335]},"properties":{"cartodb_id":12857,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:54:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94539,40.841843]},"properties":{"cartodb_id":12858,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76186,40.756516]},"properties":{"cartodb_id":12859,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:51:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84518,40.877594]},"properties":{"cartodb_id":12861,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83175,40.728016]},"properties":{"cartodb_id":12862,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8329,40.75185]},"properties":{"cartodb_id":12863,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00314,40.731464]},"properties":{"cartodb_id":12864,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94312,40.622307]},"properties":{"cartodb_id":12865,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97928,40.680767]},"properties":{"cartodb_id":12866,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.062874,40.602806]},"properties":{"cartodb_id":12868,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81481,40.690044]},"properties":{"cartodb_id":12869,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94502,40.81587]},"properties":{"cartodb_id":12870,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89601,40.855595]},"properties":{"cartodb_id":12871,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83168,40.86879]},"properties":{"cartodb_id":12872,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85431,40.89845]},"properties":{"cartodb_id":12873,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.172264,40.561707]},"properties":{"cartodb_id":12874,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73197,40.657497]},"properties":{"cartodb_id":12875,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94832,40.65637]},"properties":{"cartodb_id":12877,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.747284,40.715607]},"properties":{"cartodb_id":12878,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13073,40.612644]},"properties":{"cartodb_id":12880,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.997345,40.598553]},"properties":{"cartodb_id":12881,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.921524,40.79522]},"properties":{"cartodb_id":12882,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88687,40.677357]},"properties":{"cartodb_id":12884,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85321,40.665905]},"properties":{"cartodb_id":12885,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98214,40.691227]},"properties":{"cartodb_id":12886,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82396,40.766884]},"properties":{"cartodb_id":12887,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97203,40.60674]},"properties":{"cartodb_id":12889,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00041,40.67769]},"properties":{"cartodb_id":12890,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98856,40.769115]},"properties":{"cartodb_id":12891,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.949196,40.802696]},"properties":{"cartodb_id":12892,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88806,40.829006]},"properties":{"cartodb_id":12893,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.974754,40.745174]},"properties":{"cartodb_id":12894,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95528,40.670124]},"properties":{"cartodb_id":12895,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91976,40.880367]},"properties":{"cartodb_id":12896,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.932335,40.846153]},"properties":{"cartodb_id":12898,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99581,40.72451]},"properties":{"cartodb_id":12900,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96915,40.609818]},"properties":{"cartodb_id":12901,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82595,40.764347]},"properties":{"cartodb_id":12902,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99183,40.59231]},"properties":{"cartodb_id":12903,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.928055,40.85729]},"properties":{"cartodb_id":12905,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91894,40.640583]},"properties":{"cartodb_id":12906,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73733,40.722843]},"properties":{"cartodb_id":12907,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.749374,40.678883]},"properties":{"cartodb_id":12908,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87857,40.73999]},"properties":{"cartodb_id":12909,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.913765,40.643776]},"properties":{"cartodb_id":12911,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.777405,40.753315]},"properties":{"cartodb_id":12913,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83001,40.85093]},"properties":{"cartodb_id":12915,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98605,40.746387]},"properties":{"cartodb_id":12916,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98391,40.577713]},"properties":{"cartodb_id":12917,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77425,40.775574]},"properties":{"cartodb_id":12918,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:31:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83075,40.76079]},"properties":{"cartodb_id":12919,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09364,40.61897]},"properties":{"cartodb_id":12920,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75286,40.680653]},"properties":{"cartodb_id":12921,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.779335,40.75091]},"properties":{"cartodb_id":12922,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.885704,40.84827]},"properties":{"cartodb_id":12923,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7887,40.69647]},"properties":{"cartodb_id":12924,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.859375,40.891613]},"properties":{"cartodb_id":12925,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91282,40.861862]},"properties":{"cartodb_id":12926,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11396,40.58004]},"properties":{"cartodb_id":12927,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74765,40.75727]},"properties":{"cartodb_id":12928,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75789,40.672672]},"properties":{"cartodb_id":12930,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89532,40.748596]},"properties":{"cartodb_id":12931,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82219,40.687008]},"properties":{"cartodb_id":12932,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80509,40.73169]},"properties":{"cartodb_id":12934,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83389,40.869793]},"properties":{"cartodb_id":12935,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01531,40.64721]},"properties":{"cartodb_id":12936,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79012,40.73986]},"properties":{"cartodb_id":12937,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88039,40.869194]},"properties":{"cartodb_id":12938,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99749,40.62452]},"properties":{"cartodb_id":12939,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:51:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93603,40.81207]},"properties":{"cartodb_id":12941,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91976,40.880367]},"properties":{"cartodb_id":12942,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87503,40.741493]},"properties":{"cartodb_id":12943,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.987114,40.69613]},"properties":{"cartodb_id":12944,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.791405,40.719124]},"properties":{"cartodb_id":12945,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.916855,40.84506]},"properties":{"cartodb_id":12946,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.912285,40.691097]},"properties":{"cartodb_id":12947,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.805336,40.59052]},"properties":{"cartodb_id":12948,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.868996,40.7429]},"properties":{"cartodb_id":12949,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94772,40.63335]},"properties":{"cartodb_id":12950,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93062,40.81915]},"properties":{"cartodb_id":12951,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9848,40.7348]},"properties":{"cartodb_id":12952,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99029,40.71918]},"properties":{"cartodb_id":12953,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84274,40.716644]},"properties":{"cartodb_id":12954,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73315,40.69494]},"properties":{"cartodb_id":12956,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96002,40.64485]},"properties":{"cartodb_id":12957,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.836685,40.87544]},"properties":{"cartodb_id":12959,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01034,40.6313]},"properties":{"cartodb_id":12960,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99737,40.629986]},"properties":{"cartodb_id":12961,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91169,40.848637]},"properties":{"cartodb_id":12962,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00821,40.74214]},"properties":{"cartodb_id":12964,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00253,40.73975]},"properties":{"cartodb_id":12965,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82884,40.707188]},"properties":{"cartodb_id":12967,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77449,40.68673]},"properties":{"cartodb_id":12968,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85183,40.73228]},"properties":{"cartodb_id":12969,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.958664,40.657333]},"properties":{"cartodb_id":12970,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.798904,40.706264]},"properties":{"cartodb_id":12971,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.002754,40.652386]},"properties":{"cartodb_id":12972,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.957214,40.663517]},"properties":{"cartodb_id":12973,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.957214,40.663517]},"properties":{"cartodb_id":12974,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84899,40.738415]},"properties":{"cartodb_id":12975,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.913826,40.85061]},"properties":{"cartodb_id":12976,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01149,40.643986]},"properties":{"cartodb_id":12977,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03297,40.618816]},"properties":{"cartodb_id":12978,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91451,40.636627]},"properties":{"cartodb_id":12979,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.920525,40.72621]},"properties":{"cartodb_id":12980,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94123,40.757713]},"properties":{"cartodb_id":12981,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88341,40.746414]},"properties":{"cartodb_id":12982,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95256,40.786545]},"properties":{"cartodb_id":12983,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.902824,40.850735]},"properties":{"cartodb_id":12985,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90793,40.822067]},"properties":{"cartodb_id":12986,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99173,40.587326]},"properties":{"cartodb_id":12987,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91547,40.80684]},"properties":{"cartodb_id":12988,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.728775,40.716156]},"properties":{"cartodb_id":12990,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9172,40.85592]},"properties":{"cartodb_id":12993,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95729,40.714794]},"properties":{"cartodb_id":12994,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9027,40.693665]},"properties":{"cartodb_id":12996,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87548,40.688667]},"properties":{"cartodb_id":12997,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.737595,40.73733]},"properties":{"cartodb_id":12998,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93617,40.749714]},"properties":{"cartodb_id":12999,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.089424,40.620308]},"properties":{"cartodb_id":13000,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72893,40.729744]},"properties":{"cartodb_id":13001,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.767624,40.66566]},"properties":{"cartodb_id":13003,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90849,40.865345]},"properties":{"cartodb_id":13004,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91877,40.844975]},"properties":{"cartodb_id":13005,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.914406,40.824352]},"properties":{"cartodb_id":13006,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.989456,40.680714]},"properties":{"cartodb_id":13007,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90918,40.703686]},"properties":{"cartodb_id":13008,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T04:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91938,40.84962]},"properties":{"cartodb_id":13009,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T04:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90308,40.700436]},"properties":{"cartodb_id":13010,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T04:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99357,40.757145]},"properties":{"cartodb_id":13011,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94898,40.768875]},"properties":{"cartodb_id":13013,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.71051,40.727226]},"properties":{"cartodb_id":13014,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80205,40.674953]},"properties":{"cartodb_id":13015,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83625,40.72277]},"properties":{"cartodb_id":13016,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96265,40.816883]},"properties":{"cartodb_id":13017,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98885,40.720856]},"properties":{"cartodb_id":13018,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92153,40.77661]},"properties":{"cartodb_id":13019,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.799446,40.69305]},"properties":{"cartodb_id":13020,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.23587,40.509125]},"properties":{"cartodb_id":13021,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T03:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03256,40.611153]},"properties":{"cartodb_id":13022,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.913895,40.76524]},"properties":{"cartodb_id":13023,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.951866,40.76944]},"properties":{"cartodb_id":13024,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78528,40.73784]},"properties":{"cartodb_id":13025,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87609,40.842064]},"properties":{"cartodb_id":13026,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.789505,40.85781]},"properties":{"cartodb_id":13027,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.925156,40.732613]},"properties":{"cartodb_id":13028,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99262,40.755135]},"properties":{"cartodb_id":13029,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93313,40.69579]},"properties":{"cartodb_id":13030,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.991264,40.7552]},"properties":{"cartodb_id":13031,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87515,40.76297]},"properties":{"cartodb_id":13032,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.814316,40.742973]},"properties":{"cartodb_id":13034,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84133,40.855774]},"properties":{"cartodb_id":13035,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.955505,40.768486]},"properties":{"cartodb_id":13036,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94186,40.851818]},"properties":{"cartodb_id":13037,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.983444,40.657146]},"properties":{"cartodb_id":13039,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97539,40.749485]},"properties":{"cartodb_id":13040,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95319,40.817593]},"properties":{"cartodb_id":13042,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90132,40.74531]},"properties":{"cartodb_id":13043,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00247,40.730324]},"properties":{"cartodb_id":13044,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:54:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80375,40.76213]},"properties":{"cartodb_id":13045,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00592,40.72225]},"properties":{"cartodb_id":13046,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86352,40.86608]},"properties":{"cartodb_id":13047,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.990395,40.751328]},"properties":{"cartodb_id":13048,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96389,40.761234]},"properties":{"cartodb_id":13049,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.979965,40.748985]},"properties":{"cartodb_id":13050,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97514,40.758488]},"properties":{"cartodb_id":13051,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03297,40.618816]},"properties":{"cartodb_id":13053,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02162,40.63989]},"properties":{"cartodb_id":13054,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92242,40.74359]},"properties":{"cartodb_id":13055,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85444,40.704063]},"properties":{"cartodb_id":13056,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00644,40.655518]},"properties":{"cartodb_id":13057,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.978615,40.750843]},"properties":{"cartodb_id":13058,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9769,40.780857]},"properties":{"cartodb_id":13059,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.885124,40.858433]},"properties":{"cartodb_id":13060,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:01:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98499,40.578953]},"properties":{"cartodb_id":13061,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81248,40.68302]},"properties":{"cartodb_id":13063,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87462,40.829502]},"properties":{"cartodb_id":13064,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91237,40.761684]},"properties":{"cartodb_id":13065,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96466,40.58096]},"properties":{"cartodb_id":13066,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92729,40.83214]},"properties":{"cartodb_id":13067,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.904755,40.84588]},"properties":{"cartodb_id":13068,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-04T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99207,40.725643]},"properties":{"cartodb_id":13069,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93373,40.670734]},"properties":{"cartodb_id":13070,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85822,40.7056]},"properties":{"cartodb_id":13071,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82616,40.69267]},"properties":{"cartodb_id":13072,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99119,40.75533]},"properties":{"cartodb_id":13073,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79488,40.707203]},"properties":{"cartodb_id":13074,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94956,40.68039]},"properties":{"cartodb_id":13075,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.920265,40.679966]},"properties":{"cartodb_id":13076,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.902275,40.829582]},"properties":{"cartodb_id":13077,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95033,40.657837]},"properties":{"cartodb_id":13078,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89449,40.88742]},"properties":{"cartodb_id":13079,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.792175,40.69618]},"properties":{"cartodb_id":13080,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.984886,40.728195]},"properties":{"cartodb_id":13082,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98628,40.756622]},"properties":{"cartodb_id":13083,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88288,40.7042]},"properties":{"cartodb_id":13085,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00309,40.73908]},"properties":{"cartodb_id":13087,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98305,40.677414]},"properties":{"cartodb_id":13088,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88248,40.662086]},"properties":{"cartodb_id":13089,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16711,40.548447]},"properties":{"cartodb_id":13090,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7608,40.69917]},"properties":{"cartodb_id":13091,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.165955,40.596863]},"properties":{"cartodb_id":13092,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82635,40.70083]},"properties":{"cartodb_id":13093,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86068,40.82842]},"properties":{"cartodb_id":13094,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.866554,40.83295]},"properties":{"cartodb_id":13095,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97746,40.68405]},"properties":{"cartodb_id":13097,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.834656,40.667114]},"properties":{"cartodb_id":13098,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83525,40.687325]},"properties":{"cartodb_id":13099,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85745,40.87451]},"properties":{"cartodb_id":13100,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.825325,40.780296]},"properties":{"cartodb_id":13101,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.021805,40.62435]},"properties":{"cartodb_id":13102,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82809,40.66609]},"properties":{"cartodb_id":13103,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9468,40.71882]},"properties":{"cartodb_id":13105,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93867,40.68609]},"properties":{"cartodb_id":13106,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0006,40.672615]},"properties":{"cartodb_id":13107,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86266,40.894093]},"properties":{"cartodb_id":13108,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99192,40.67188]},"properties":{"cartodb_id":13109,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94041,40.808956]},"properties":{"cartodb_id":13110,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91311,40.764866]},"properties":{"cartodb_id":13112,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94034,40.67989]},"properties":{"cartodb_id":13113,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.922935,40.85894]},"properties":{"cartodb_id":13114,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90697,40.8504]},"properties":{"cartodb_id":13115,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88628,40.6775]},"properties":{"cartodb_id":13116,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.786385,40.589592]},"properties":{"cartodb_id":13117,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92527,40.834774]},"properties":{"cartodb_id":13118,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93489,40.795773]},"properties":{"cartodb_id":13119,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89951,40.81385]},"properties":{"cartodb_id":13120,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93723,40.622955]},"properties":{"cartodb_id":13121,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81461,40.699512]},"properties":{"cartodb_id":13122,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97721,40.758537]},"properties":{"cartodb_id":13123,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89985,40.886536]},"properties":{"cartodb_id":13124,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94436,40.69142]},"properties":{"cartodb_id":13125,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88883,40.699505]},"properties":{"cartodb_id":13126,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.816444,40.752357]},"properties":{"cartodb_id":13127,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.70355,40.74841]},"properties":{"cartodb_id":13128,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981804,40.758022]},"properties":{"cartodb_id":13129,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.2436,40.51606]},"properties":{"cartodb_id":13130,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93472,40.681297]},"properties":{"cartodb_id":13131,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.796715,40.758415]},"properties":{"cartodb_id":13133,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99094,40.751984]},"properties":{"cartodb_id":13134,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00731,40.68212]},"properties":{"cartodb_id":13137,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86827,40.73251]},"properties":{"cartodb_id":13138,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88312,40.84827]},"properties":{"cartodb_id":13139,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88795,40.831753]},"properties":{"cartodb_id":13142,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:01:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97587,40.751717]},"properties":{"cartodb_id":13144,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.884636,40.73815]},"properties":{"cartodb_id":13148,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.035164,40.620636]},"properties":{"cartodb_id":13149,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98599,40.583908]},"properties":{"cartodb_id":13150,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83885,40.761383]},"properties":{"cartodb_id":13151,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.804886,40.886482]},"properties":{"cartodb_id":13152,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76591,40.669144]},"properties":{"cartodb_id":13154,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.870155,40.87831]},"properties":{"cartodb_id":13157,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93272,40.618813]},"properties":{"cartodb_id":13158,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97923,40.69551]},"properties":{"cartodb_id":13160,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92797,40.842503]},"properties":{"cartodb_id":13162,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.848755,40.88144]},"properties":{"cartodb_id":13163,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.824875,40.73986]},"properties":{"cartodb_id":13164,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98407,40.583626]},"properties":{"cartodb_id":13165,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.878365,40.67579]},"properties":{"cartodb_id":13166,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.733116,40.66782]},"properties":{"cartodb_id":13167,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87329,40.83801]},"properties":{"cartodb_id":13169,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.003334,40.65183]},"properties":{"cartodb_id":13170,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00099,40.71793]},"properties":{"cartodb_id":13171,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88961,40.80801]},"properties":{"cartodb_id":13173,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76294,40.761246]},"properties":{"cartodb_id":13174,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84871,40.835102]},"properties":{"cartodb_id":13175,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00514,40.60143]},"properties":{"cartodb_id":13177,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8263,40.752712]},"properties":{"cartodb_id":13178,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00189,40.719395]},"properties":{"cartodb_id":13180,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9154,40.614456]},"properties":{"cartodb_id":13182,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91041,40.690624]},"properties":{"cartodb_id":13183,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92012,40.866932]},"properties":{"cartodb_id":13186,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.989395,40.75957]},"properties":{"cartodb_id":13187,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00696,40.598953]},"properties":{"cartodb_id":13188,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82742,40.6832]},"properties":{"cartodb_id":13189,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:04:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.972824,40.75587]},"properties":{"cartodb_id":13190,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92925,40.796738]},"properties":{"cartodb_id":13191,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97402,40.74309]},"properties":{"cartodb_id":13192,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75375,40.67945]},"properties":{"cartodb_id":13193,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83882,40.758507]},"properties":{"cartodb_id":13194,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95454,40.642887]},"properties":{"cartodb_id":13195,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76238,40.681656]},"properties":{"cartodb_id":13196,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00009,40.648045]},"properties":{"cartodb_id":13197,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99372,40.623154]},"properties":{"cartodb_id":13198,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87519,40.76824]},"properties":{"cartodb_id":13200,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9772,40.76432]},"properties":{"cartodb_id":13201,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.950455,40.826427]},"properties":{"cartodb_id":13202,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88551,40.836605]},"properties":{"cartodb_id":13204,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.928375,40.632847]},"properties":{"cartodb_id":13205,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.760185,40.720726]},"properties":{"cartodb_id":13206,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92632,40.845024]},"properties":{"cartodb_id":13207,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.822525,40.67467]},"properties":{"cartodb_id":13208,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.779205,40.69165]},"properties":{"cartodb_id":13209,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90553,40.876846]},"properties":{"cartodb_id":13211,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91741,40.852146]},"properties":{"cartodb_id":13212,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97106,40.675236]},"properties":{"cartodb_id":13213,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84603,40.741447]},"properties":{"cartodb_id":13214,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16345,40.543766]},"properties":{"cartodb_id":13215,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94604,40.812115]},"properties":{"cartodb_id":13216,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09651,40.588757]},"properties":{"cartodb_id":13217,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11757,40.574627]},"properties":{"cartodb_id":13218,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94802,40.636265]},"properties":{"cartodb_id":13219,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00479,40.723625]},"properties":{"cartodb_id":13220,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87492,40.77048]},"properties":{"cartodb_id":13222,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94802,40.636265]},"properties":{"cartodb_id":13223,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75806,40.763245]},"properties":{"cartodb_id":13224,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80428,40.67461]},"properties":{"cartodb_id":13225,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8876,40.665714]},"properties":{"cartodb_id":13226,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.975815,40.754677]},"properties":{"cartodb_id":13227,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99464,40.76588]},"properties":{"cartodb_id":13228,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84142,40.730553]},"properties":{"cartodb_id":13229,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.129166,40.61258]},"properties":{"cartodb_id":13230,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.954094,40.81636]},"properties":{"cartodb_id":13231,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97155,40.672935]},"properties":{"cartodb_id":13232,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.889015,40.682163]},"properties":{"cartodb_id":13233,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90725,40.870907]},"properties":{"cartodb_id":13234,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98282,40.589157]},"properties":{"cartodb_id":13235,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81713,40.717674]},"properties":{"cartodb_id":13236,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00578,40.725674]},"properties":{"cartodb_id":13237,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96479,40.61233]},"properties":{"cartodb_id":13238,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76858,40.73769]},"properties":{"cartodb_id":13240,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.878395,40.886555]},"properties":{"cartodb_id":13241,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88717,40.717026]},"properties":{"cartodb_id":13242,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89084,40.85853]},"properties":{"cartodb_id":13243,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93316,40.676743]},"properties":{"cartodb_id":13244,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.908966,40.830223]},"properties":{"cartodb_id":13245,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.832344,40.88455]},"properties":{"cartodb_id":13246,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88729,40.827065]},"properties":{"cartodb_id":13247,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95449,40.778137]},"properties":{"cartodb_id":13248,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90211,40.845642]},"properties":{"cartodb_id":13249,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91451,40.701416]},"properties":{"cartodb_id":13250,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76561,40.7324]},"properties":{"cartodb_id":13251,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99868,40.59727]},"properties":{"cartodb_id":13252,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90456,40.876545]},"properties":{"cartodb_id":13253,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9217,40.67823]},"properties":{"cartodb_id":13254,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9422,40.62241]},"properties":{"cartodb_id":13255,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9367,40.81404]},"properties":{"cartodb_id":13256,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90001,40.852516]},"properties":{"cartodb_id":13258,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:33:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88576,40.85421]},"properties":{"cartodb_id":13259,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99135,40.625435]},"properties":{"cartodb_id":13262,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11685,40.613525]},"properties":{"cartodb_id":13263,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93686,40.828087]},"properties":{"cartodb_id":13264,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80981,40.793495]},"properties":{"cartodb_id":13265,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89038,40.676594]},"properties":{"cartodb_id":13266,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.927284,40.843903]},"properties":{"cartodb_id":13267,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74765,40.75727]},"properties":{"cartodb_id":13268,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96598,40.587433]},"properties":{"cartodb_id":13269,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.959526,40.6103]},"properties":{"cartodb_id":13270,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08157,40.599064]},"properties":{"cartodb_id":13271,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9745,40.74668]},"properties":{"cartodb_id":13272,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89083,40.820305]},"properties":{"cartodb_id":13273,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98173,40.76711]},"properties":{"cartodb_id":13274,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93919,40.79507]},"properties":{"cartodb_id":13275,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99446,40.632782]},"properties":{"cartodb_id":13276,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.197075,40.51859]},"properties":{"cartodb_id":13277,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88181,40.815212]},"properties":{"cartodb_id":13278,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88463,40.82141]},"properties":{"cartodb_id":13279,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73639,40.71569]},"properties":{"cartodb_id":13280,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88272,40.855698]},"properties":{"cartodb_id":13281,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75764,40.66645]},"properties":{"cartodb_id":13282,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96617,40.58655]},"properties":{"cartodb_id":13283,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82518,40.666126]},"properties":{"cartodb_id":13284,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8152,40.72924]},"properties":{"cartodb_id":13286,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98991,40.57508]},"properties":{"cartodb_id":13289,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97766,40.75791]},"properties":{"cartodb_id":13290,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80775,40.70058]},"properties":{"cartodb_id":13291,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.895744,40.85814]},"properties":{"cartodb_id":13292,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98929,40.670605]},"properties":{"cartodb_id":13293,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87733,40.729866]},"properties":{"cartodb_id":13294,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.977196,40.74701]},"properties":{"cartodb_id":13296,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01258,40.64647]},"properties":{"cartodb_id":13297,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99424,40.766403]},"properties":{"cartodb_id":13298,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88749,40.631805]},"properties":{"cartodb_id":13299,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.900116,40.638363]},"properties":{"cartodb_id":13300,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89086,40.88335]},"properties":{"cartodb_id":13301,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00755,40.71543]},"properties":{"cartodb_id":13302,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90694,40.902237]},"properties":{"cartodb_id":13303,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9589,40.77496]},"properties":{"cartodb_id":13304,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92731,40.819595]},"properties":{"cartodb_id":13306,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80346,40.75055]},"properties":{"cartodb_id":13307,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.823494,40.76465]},"properties":{"cartodb_id":13308,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94029,40.851322]},"properties":{"cartodb_id":13309,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88284,40.855507]},"properties":{"cartodb_id":13310,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96342,40.757637]},"properties":{"cartodb_id":13311,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91075,40.66968]},"properties":{"cartodb_id":13313,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.994,40.629776]},"properties":{"cartodb_id":13316,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7623,40.69802]},"properties":{"cartodb_id":13317,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82219,40.687008]},"properties":{"cartodb_id":13318,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.807884,40.78689]},"properties":{"cartodb_id":13319,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.096176,40.583042]},"properties":{"cartodb_id":13320,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.741325,40.6764]},"properties":{"cartodb_id":13321,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.72713,40.681713]},"properties":{"cartodb_id":13322,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91546,40.850494]},"properties":{"cartodb_id":13323,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.022896,40.634335]},"properties":{"cartodb_id":13324,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.892136,40.766685]},"properties":{"cartodb_id":13325,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87372,40.878914]},"properties":{"cartodb_id":13327,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91451,40.88272]},"properties":{"cartodb_id":13328,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.799255,40.708706]},"properties":{"cartodb_id":13330,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.954445,40.73119]},"properties":{"cartodb_id":13331,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74332,40.702957]},"properties":{"cartodb_id":13332,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92745,40.635258]},"properties":{"cartodb_id":13334,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.71218,40.732357]},"properties":{"cartodb_id":13335,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.12068,40.603]},"properties":{"cartodb_id":13336,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09214,40.5774]},"properties":{"cartodb_id":13337,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97675,40.759163]},"properties":{"cartodb_id":13338,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.938225,40.719265]},"properties":{"cartodb_id":13339,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80734,40.689594]},"properties":{"cartodb_id":13341,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83901,40.790615]},"properties":{"cartodb_id":13342,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97476,40.765034]},"properties":{"cartodb_id":13343,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.895584,40.856243]},"properties":{"cartodb_id":13344,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8279,40.885952]},"properties":{"cartodb_id":13346,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89718,40.65103]},"properties":{"cartodb_id":13347,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.978195,40.75567]},"properties":{"cartodb_id":13348,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08081,40.617985]},"properties":{"cartodb_id":13349,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85276,40.69766]},"properties":{"cartodb_id":13350,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99535,40.724068]},"properties":{"cartodb_id":13351,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97444,40.756557]},"properties":{"cartodb_id":13352,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73861,40.75925]},"properties":{"cartodb_id":13353,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97137,40.75097]},"properties":{"cartodb_id":13354,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88179,40.692345]},"properties":{"cartodb_id":13355,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90788,40.673565]},"properties":{"cartodb_id":13356,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83901,40.790615]},"properties":{"cartodb_id":13357,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75211,40.664314]},"properties":{"cartodb_id":13358,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81519,40.587513]},"properties":{"cartodb_id":13359,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16416,40.58695]},"properties":{"cartodb_id":13360,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99682,40.66919]},"properties":{"cartodb_id":13361,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94293,40.789948]},"properties":{"cartodb_id":13362,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.958664,40.61572]},"properties":{"cartodb_id":13363,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93786,40.812466]},"properties":{"cartodb_id":13364,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.986565,40.761658]},"properties":{"cartodb_id":13365,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.768265,40.709526]},"properties":{"cartodb_id":13366,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94466,40.81401]},"properties":{"cartodb_id":13367,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.898796,40.774426]},"properties":{"cartodb_id":13368,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.158195,40.618145]},"properties":{"cartodb_id":13369,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00913,40.631542]},"properties":{"cartodb_id":13370,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82409,40.79123]},"properties":{"cartodb_id":13371,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87641,40.828976]},"properties":{"cartodb_id":13372,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97975,40.781193]},"properties":{"cartodb_id":13373,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98071,40.68532]},"properties":{"cartodb_id":13374,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00504,40.68191]},"properties":{"cartodb_id":13376,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.893105,40.636868]},"properties":{"cartodb_id":13378,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91974,40.64258]},"properties":{"cartodb_id":13379,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.704094,40.753117]},"properties":{"cartodb_id":13380,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.939995,40.803757]},"properties":{"cartodb_id":13381,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91024,40.847557]},"properties":{"cartodb_id":13382,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.959755,40.57937]},"properties":{"cartodb_id":13383,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9178,40.669266]},"properties":{"cartodb_id":13384,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.969864,40.75625]},"properties":{"cartodb_id":13385,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.957924,40.644142]},"properties":{"cartodb_id":13386,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.967735,40.76285]},"properties":{"cartodb_id":13389,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.948364,40.76962]},"properties":{"cartodb_id":13390,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98241,40.69584]},"properties":{"cartodb_id":13393,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83894,40.843212]},"properties":{"cartodb_id":13394,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97802,40.659256]},"properties":{"cartodb_id":13395,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00483,40.63358]},"properties":{"cartodb_id":13396,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.880135,40.655846]},"properties":{"cartodb_id":13397,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79325,40.70459]},"properties":{"cartodb_id":13398,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81891,40.695858]},"properties":{"cartodb_id":13399,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98071,40.68532]},"properties":{"cartodb_id":13400,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80424,40.707294]},"properties":{"cartodb_id":13401,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95615,40.617893]},"properties":{"cartodb_id":13402,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00247,40.678387]},"properties":{"cartodb_id":13403,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88036,40.84009]},"properties":{"cartodb_id":13404,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97783,40.773655]},"properties":{"cartodb_id":13405,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.733635,40.660664]},"properties":{"cartodb_id":13407,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97086,40.693172]},"properties":{"cartodb_id":13408,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87583,40.839565]},"properties":{"cartodb_id":13409,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00533,40.643005]},"properties":{"cartodb_id":13411,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:52:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9359,40.69734]},"properties":{"cartodb_id":13413,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93819,40.69864]},"properties":{"cartodb_id":13415,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16261,40.59316]},"properties":{"cartodb_id":13416,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98029,40.667107]},"properties":{"cartodb_id":13417,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89043,40.823143]},"properties":{"cartodb_id":13418,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99452,40.663834]},"properties":{"cartodb_id":13419,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95837,40.768803]},"properties":{"cartodb_id":13420,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89251,40.854973]},"properties":{"cartodb_id":13421,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.869896,40.855972]},"properties":{"cartodb_id":13422,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94402,40.718872]},"properties":{"cartodb_id":13423,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90217,40.906567]},"properties":{"cartodb_id":13424,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93927,40.744747]},"properties":{"cartodb_id":13425,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90993,40.637688]},"properties":{"cartodb_id":13426,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75849,40.761993]},"properties":{"cartodb_id":13427,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93048,40.766582]},"properties":{"cartodb_id":13428,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96539,40.63628]},"properties":{"cartodb_id":13429,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.727234,40.704544]},"properties":{"cartodb_id":13430,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00632,40.609463]},"properties":{"cartodb_id":13431,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88325,40.723133]},"properties":{"cartodb_id":13432,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.007645,40.708344]},"properties":{"cartodb_id":13433,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99952,40.64861]},"properties":{"cartodb_id":13434,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81698,40.717724]},"properties":{"cartodb_id":13435,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.824356,40.77652]},"properties":{"cartodb_id":13436,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08723,40.584106]},"properties":{"cartodb_id":13437,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79209,40.671814]},"properties":{"cartodb_id":13438,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80223,40.780457]},"properties":{"cartodb_id":13439,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79295,40.67206]},"properties":{"cartodb_id":13440,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91348,40.665066]},"properties":{"cartodb_id":13441,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98071,40.68532]},"properties":{"cartodb_id":13442,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94579,40.692764]},"properties":{"cartodb_id":13443,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75176,40.606396]},"properties":{"cartodb_id":13444,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.010635,40.651676]},"properties":{"cartodb_id":13445,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93249,40.795967]},"properties":{"cartodb_id":13446,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.802055,40.760834]},"properties":{"cartodb_id":13448,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98897,40.748188]},"properties":{"cartodb_id":13449,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76736,40.65616]},"properties":{"cartodb_id":13450,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88167,40.844593]},"properties":{"cartodb_id":13451,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:43:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94743,40.730064]},"properties":{"cartodb_id":13453,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95296,40.74126]},"properties":{"cartodb_id":13455,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96728,40.76348]},"properties":{"cartodb_id":13456,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99242,40.73059]},"properties":{"cartodb_id":13458,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92693,40.730137]},"properties":{"cartodb_id":13459,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88584,40.836735]},"properties":{"cartodb_id":13460,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97539,40.749485]},"properties":{"cartodb_id":13461,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76275,40.69741]},"properties":{"cartodb_id":13463,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98088,40.72133]},"properties":{"cartodb_id":13464,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89763,40.85214]},"properties":{"cartodb_id":13465,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:01:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82433,40.727512]},"properties":{"cartodb_id":13466,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95094,40.77071]},"properties":{"cartodb_id":13467,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91917,40.871082]},"properties":{"cartodb_id":13468,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83497,40.71717]},"properties":{"cartodb_id":13469,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84175,40.890354]},"properties":{"cartodb_id":13470,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99137,40.729866]},"properties":{"cartodb_id":13471,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11554,40.573547]},"properties":{"cartodb_id":13472,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75372,40.609535]},"properties":{"cartodb_id":13473,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.959114,40.61811]},"properties":{"cartodb_id":13474,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.941246,40.755234]},"properties":{"cartodb_id":13475,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88856,40.869392]},"properties":{"cartodb_id":13476,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.974945,40.7501]},"properties":{"cartodb_id":13477,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92782,40.728855]},"properties":{"cartodb_id":13478,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94533,40.7306]},"properties":{"cartodb_id":13479,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.016304,40.63418]},"properties":{"cartodb_id":13480,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.016205,40.70505]},"properties":{"cartodb_id":13481,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99149,40.749794]},"properties":{"cartodb_id":13482,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86155,40.866432]},"properties":{"cartodb_id":13483,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99354,40.749733]},"properties":{"cartodb_id":13484,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99242,40.73059]},"properties":{"cartodb_id":13485,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91838,40.6299]},"properties":{"cartodb_id":13486,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93728,40.829155]},"properties":{"cartodb_id":13487,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.946365,40.726444]},"properties":{"cartodb_id":13489,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95504,40.618557]},"properties":{"cartodb_id":13490,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88492,40.738197]},"properties":{"cartodb_id":13491,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14403,40.62499]},"properties":{"cartodb_id":13492,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82449,40.78356]},"properties":{"cartodb_id":13493,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.873604,40.839798]},"properties":{"cartodb_id":13494,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16808,40.62217]},"properties":{"cartodb_id":13496,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84804,40.819016]},"properties":{"cartodb_id":13498,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13867,40.58902]},"properties":{"cartodb_id":13499,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8144,40.702534]},"properties":{"cartodb_id":13500,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95649,40.743076]},"properties":{"cartodb_id":13501,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91608,40.7699]},"properties":{"cartodb_id":13502,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99309,40.695217]},"properties":{"cartodb_id":13505,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11872,40.632454]},"properties":{"cartodb_id":13506,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88745,40.81197]},"properties":{"cartodb_id":13507,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.897095,40.851967]},"properties":{"cartodb_id":13508,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.931526,40.740704]},"properties":{"cartodb_id":13511,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16019,40.549427]},"properties":{"cartodb_id":13512,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.972374,40.762287]},"properties":{"cartodb_id":13513,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86872,40.747982]},"properties":{"cartodb_id":13514,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.07565,40.626663]},"properties":{"cartodb_id":13515,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97831,40.695946]},"properties":{"cartodb_id":13516,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84436,40.71235]},"properties":{"cartodb_id":13517,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84591,40.688988]},"properties":{"cartodb_id":13518,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89006,40.865303]},"properties":{"cartodb_id":13519,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:28:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80434,40.71423]},"properties":{"cartodb_id":13521,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.751205,40.714676]},"properties":{"cartodb_id":13522,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87056,40.768726]},"properties":{"cartodb_id":13523,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8164,40.76316]},"properties":{"cartodb_id":13524,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10919,40.57104]},"properties":{"cartodb_id":13526,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00508,40.650146]},"properties":{"cartodb_id":13530,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.1301,40.565254]},"properties":{"cartodb_id":13531,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.794,40.67875]},"properties":{"cartodb_id":13532,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96104,40.699482]},"properties":{"cartodb_id":13533,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98042,40.582977]},"properties":{"cartodb_id":13534,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82114,40.767227]},"properties":{"cartodb_id":13535,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.781624,40.767735]},"properties":{"cartodb_id":13536,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90419,40.812126]},"properties":{"cartodb_id":13537,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89386,40.770985]},"properties":{"cartodb_id":13538,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84388,40.844234]},"properties":{"cartodb_id":13539,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9627,40.663483]},"properties":{"cartodb_id":13540,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91423,40.816204]},"properties":{"cartodb_id":13541,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:53:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93604,40.586117]},"properties":{"cartodb_id":13542,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75691,40.762093]},"properties":{"cartodb_id":13544,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90034,40.848755]},"properties":{"cartodb_id":13545,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86576,40.854458]},"properties":{"cartodb_id":13546,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80839,40.738586]},"properties":{"cartodb_id":13547,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83767,40.766434]},"properties":{"cartodb_id":13549,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.764,40.608143]},"properties":{"cartodb_id":13551,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81683,40.764233]},"properties":{"cartodb_id":13552,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02029,40.62806]},"properties":{"cartodb_id":13553,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.969635,40.76025]},"properties":{"cartodb_id":13554,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93998,40.69268]},"properties":{"cartodb_id":13555,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9358,40.743084]},"properties":{"cartodb_id":13556,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8101,40.783825]},"properties":{"cartodb_id":13557,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87811,40.83887]},"properties":{"cartodb_id":13558,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89655,40.907505]},"properties":{"cartodb_id":13559,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8542,40.73303]},"properties":{"cartodb_id":13560,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.937546,40.614162]},"properties":{"cartodb_id":13561,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981964,40.777855]},"properties":{"cartodb_id":13562,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88883,40.699505]},"properties":{"cartodb_id":13563,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91361,40.66563]},"properties":{"cartodb_id":13564,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80658,40.738815]},"properties":{"cartodb_id":13566,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.823875,40.67978]},"properties":{"cartodb_id":13570,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01527,40.646904]},"properties":{"cartodb_id":13571,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82814,40.763958]},"properties":{"cartodb_id":13572,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.852356,40.753407]},"properties":{"cartodb_id":13573,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.852356,40.753407]},"properties":{"cartodb_id":13574,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86179,40.764744]},"properties":{"cartodb_id":13575,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87063,40.665092]},"properties":{"cartodb_id":13576,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73645,40.665253]},"properties":{"cartodb_id":13577,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98597,40.587597]},"properties":{"cartodb_id":13578,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.893654,40.66322]},"properties":{"cartodb_id":13580,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00644,40.617813]},"properties":{"cartodb_id":13582,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85971,40.826275]},"properties":{"cartodb_id":13583,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94236,40.702095]},"properties":{"cartodb_id":13584,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.756,40.665104]},"properties":{"cartodb_id":13585,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.766106,40.744507]},"properties":{"cartodb_id":13586,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90811,40.692974]},"properties":{"cartodb_id":13587,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90751,40.741863]},"properties":{"cartodb_id":13589,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.940605,40.738155]},"properties":{"cartodb_id":13590,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79872,40.730587]},"properties":{"cartodb_id":13591,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90721,40.816822]},"properties":{"cartodb_id":13593,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99281,40.76838]},"properties":{"cartodb_id":13595,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89063,40.658577]},"properties":{"cartodb_id":13596,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0014,40.67578]},"properties":{"cartodb_id":13597,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77078,40.66696]},"properties":{"cartodb_id":13598,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77393,40.715805]},"properties":{"cartodb_id":13599,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87049,40.89664]},"properties":{"cartodb_id":13601,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.735344,40.665257]},"properties":{"cartodb_id":13602,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89491,40.820988]},"properties":{"cartodb_id":13603,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.898445,40.72428]},"properties":{"cartodb_id":13605,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01606,40.63443]},"properties":{"cartodb_id":13606,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95077,40.716236]},"properties":{"cartodb_id":13607,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0021,40.656548]},"properties":{"cartodb_id":13608,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81957,40.74023]},"properties":{"cartodb_id":13610,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00796,40.682556]},"properties":{"cartodb_id":13613,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14824,40.60862]},"properties":{"cartodb_id":13614,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91025,40.76943]},"properties":{"cartodb_id":13615,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.914406,40.660152]},"properties":{"cartodb_id":13616,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.210175,40.5265]},"properties":{"cartodb_id":13617,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88636,40.63082]},"properties":{"cartodb_id":13618,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01266,40.642864]},"properties":{"cartodb_id":13620,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.790405,40.666885]},"properties":{"cartodb_id":13621,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94281,40.73272]},"properties":{"cartodb_id":13624,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92793,40.673103]},"properties":{"cartodb_id":13625,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86536,40.651863]},"properties":{"cartodb_id":13626,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84804,40.819016]},"properties":{"cartodb_id":13627,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.928185,40.842422]},"properties":{"cartodb_id":13628,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00299,40.723305]},"properties":{"cartodb_id":13629,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81007,40.764378]},"properties":{"cartodb_id":13630,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99596,40.66626]},"properties":{"cartodb_id":13631,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81856,40.71263]},"properties":{"cartodb_id":13632,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.852715,40.84255]},"properties":{"cartodb_id":13634,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.794624,40.684105]},"properties":{"cartodb_id":13635,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86025,40.87596]},"properties":{"cartodb_id":13636,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97499,40.69802]},"properties":{"cartodb_id":13637,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.936134,40.75172]},"properties":{"cartodb_id":13638,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97646,40.75087]},"properties":{"cartodb_id":13639,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92167,40.75705]},"properties":{"cartodb_id":13640,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88277,40.85803]},"properties":{"cartodb_id":13641,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T05:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88339,40.84386]},"properties":{"cartodb_id":13644,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T04:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.139175,40.6394]},"properties":{"cartodb_id":13646,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T04:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0068,40.70973]},"properties":{"cartodb_id":13649,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T03:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85089,40.737553]},"properties":{"cartodb_id":13650,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T03:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16575,40.545395]},"properties":{"cartodb_id":13651,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T03:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8686,40.73261]},"properties":{"cartodb_id":13653,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.165794,40.590706]},"properties":{"cartodb_id":13654,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93977,40.841076]},"properties":{"cartodb_id":13655,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96038,40.819157]},"properties":{"cartodb_id":13656,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93496,40.737785]},"properties":{"cartodb_id":13657,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.925156,40.732613]},"properties":{"cartodb_id":13658,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00828,40.70772]},"properties":{"cartodb_id":13659,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93655,40.697712]},"properties":{"cartodb_id":13660,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87391,40.835117]},"properties":{"cartodb_id":13662,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99576,40.659107]},"properties":{"cartodb_id":13663,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99201,40.7491]},"properties":{"cartodb_id":13664,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.901024,40.88518]},"properties":{"cartodb_id":13665,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.951324,40.689133]},"properties":{"cartodb_id":13666,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97261,40.78591]},"properties":{"cartodb_id":13667,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.975815,40.754677]},"properties":{"cartodb_id":13671,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.806335,40.698204]},"properties":{"cartodb_id":13672,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.834694,40.746902]},"properties":{"cartodb_id":13673,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9204,40.739414]},"properties":{"cartodb_id":13674,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15491,40.625786]},"properties":{"cartodb_id":13675,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89058,40.81786]},"properties":{"cartodb_id":13676,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91546,40.871296]},"properties":{"cartodb_id":13677,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87868,40.736248]},"properties":{"cartodb_id":13678,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-03T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.937416,40.810173]},"properties":{"cartodb_id":13679,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93105,40.85051]},"properties":{"cartodb_id":13681,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90275,40.76432]},"properties":{"cartodb_id":13683,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9409,40.703915]},"properties":{"cartodb_id":13684,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88681,40.812077]},"properties":{"cartodb_id":13685,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97772,40.66757]},"properties":{"cartodb_id":13686,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96474,40.717518]},"properties":{"cartodb_id":13687,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89063,40.658577]},"properties":{"cartodb_id":13688,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99698,40.731407]},"properties":{"cartodb_id":13689,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95776,40.632904]},"properties":{"cartodb_id":13690,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.960915,40.663292]},"properties":{"cartodb_id":13691,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.948296,40.648064]},"properties":{"cartodb_id":13692,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81752,40.777416]},"properties":{"cartodb_id":13694,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75414,40.608105]},"properties":{"cartodb_id":13695,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97889,40.752625]},"properties":{"cartodb_id":13696,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.953026,40.67268]},"properties":{"cartodb_id":13697,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.987144,40.72247]},"properties":{"cartodb_id":13698,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96074,40.702557]},"properties":{"cartodb_id":13699,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15334,40.608852]},"properties":{"cartodb_id":13700,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.898,40.844105]},"properties":{"cartodb_id":13702,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.937645,40.812744]},"properties":{"cartodb_id":13703,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85134,40.729607]},"properties":{"cartodb_id":13704,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84146,40.70904]},"properties":{"cartodb_id":13705,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98322,40.695908]},"properties":{"cartodb_id":13707,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.989136,40.68459]},"properties":{"cartodb_id":13708,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.037735,40.612453]},"properties":{"cartodb_id":13709,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.985306,40.768494]},"properties":{"cartodb_id":13710,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96139,40.640522]},"properties":{"cartodb_id":13712,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9882,40.733707]},"properties":{"cartodb_id":13713,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86563,40.691563]},"properties":{"cartodb_id":13716,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87731,40.763344]},"properties":{"cartodb_id":13717,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T21:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15812,40.63212]},"properties":{"cartodb_id":13718,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98453,40.696033]},"properties":{"cartodb_id":13719,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:37:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93481,40.80328]},"properties":{"cartodb_id":13720,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93089,40.848118]},"properties":{"cartodb_id":13721,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.955444,40.67996]},"properties":{"cartodb_id":13722,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87459,40.734768]},"properties":{"cartodb_id":13723,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.858315,40.750843]},"properties":{"cartodb_id":13724,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86536,40.651863]},"properties":{"cartodb_id":13725,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88535,40.83879]},"properties":{"cartodb_id":13726,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.902,40.712757]},"properties":{"cartodb_id":13730,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97813,40.745724]},"properties":{"cartodb_id":13731,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13778,40.624214]},"properties":{"cartodb_id":13733,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.957184,40.769184]},"properties":{"cartodb_id":13734,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08715,40.632236]},"properties":{"cartodb_id":13736,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83096,40.86224]},"properties":{"cartodb_id":13738,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.003395,40.634537]},"properties":{"cartodb_id":13739,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88887,40.701275]},"properties":{"cartodb_id":13740,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93119,40.842346]},"properties":{"cartodb_id":13741,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.800285,40.673508]},"properties":{"cartodb_id":13742,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00614,40.719444]},"properties":{"cartodb_id":13743,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.968895,40.76416]},"properties":{"cartodb_id":13744,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00877,40.610954]},"properties":{"cartodb_id":13745,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99959,40.673107]},"properties":{"cartodb_id":13746,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98012,40.770527]},"properties":{"cartodb_id":13747,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94938,40.776875]},"properties":{"cartodb_id":13748,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00221,40.721622]},"properties":{"cartodb_id":13749,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86761,40.684956]},"properties":{"cartodb_id":13750,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.943474,40.617382]},"properties":{"cartodb_id":13751,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91771,40.77039]},"properties":{"cartodb_id":13752,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79705,40.783516]},"properties":{"cartodb_id":13753,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90211,40.86544]},"properties":{"cartodb_id":13754,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96563,40.627155]},"properties":{"cartodb_id":13755,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.10098,40.59183]},"properties":{"cartodb_id":13756,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98453,40.696033]},"properties":{"cartodb_id":13758,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:16:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.789314,40.769707]},"properties":{"cartodb_id":13759,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97033,40.6466]},"properties":{"cartodb_id":13760,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85201,40.75218]},"properties":{"cartodb_id":13761,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.19011,40.592026]},"properties":{"cartodb_id":13762,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08807,40.58524]},"properties":{"cartodb_id":13763,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.132454,40.61244]},"properties":{"cartodb_id":13764,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93094,40.831913]},"properties":{"cartodb_id":13765,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02931,40.617897]},"properties":{"cartodb_id":13766,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93113,40.668797]},"properties":{"cartodb_id":13767,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9228,40.773964]},"properties":{"cartodb_id":13769,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79175,40.725777]},"properties":{"cartodb_id":13770,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81478,40.734398]},"properties":{"cartodb_id":13771,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98524,40.73884]},"properties":{"cartodb_id":13772,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85705,40.825924]},"properties":{"cartodb_id":13773,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92111,40.61931]},"properties":{"cartodb_id":13776,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.763306,40.730118]},"properties":{"cartodb_id":13778,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00299,40.723305]},"properties":{"cartodb_id":13779,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90668,40.768684]},"properties":{"cartodb_id":13780,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.030945,40.60567]},"properties":{"cartodb_id":13781,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95094,40.77071]},"properties":{"cartodb_id":13782,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9067,40.71868]},"properties":{"cartodb_id":13783,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99019,40.61913]},"properties":{"cartodb_id":13784,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90159,40.8444]},"properties":{"cartodb_id":13785,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00701,40.714497]},"properties":{"cartodb_id":13786,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01537,40.61956]},"properties":{"cartodb_id":13787,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81629,40.588997]},"properties":{"cartodb_id":13788,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9181,40.855385]},"properties":{"cartodb_id":13789,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.975494,40.638268]},"properties":{"cartodb_id":13790,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90139,40.644295]},"properties":{"cartodb_id":13793,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90847,40.75529]},"properties":{"cartodb_id":13794,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95451,40.70002]},"properties":{"cartodb_id":13795,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83127,40.71444]},"properties":{"cartodb_id":13796,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84792,40.90393]},"properties":{"cartodb_id":13797,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89544,40.815845]},"properties":{"cartodb_id":13798,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92862,40.635185]},"properties":{"cartodb_id":13800,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01412,40.648308]},"properties":{"cartodb_id":13801,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96739,40.69165]},"properties":{"cartodb_id":13802,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:34:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92641,40.61448]},"properties":{"cartodb_id":13803,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86609,40.678844]},"properties":{"cartodb_id":13804,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.742516,40.63966]},"properties":{"cartodb_id":13805,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97515,40.68087]},"properties":{"cartodb_id":13806,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91779,40.69267]},"properties":{"cartodb_id":13807,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79514,40.688004]},"properties":{"cartodb_id":13809,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86146,40.83694]},"properties":{"cartodb_id":13811,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.7657,40.7608]},"properties":{"cartodb_id":13812,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.12555,40.594616]},"properties":{"cartodb_id":13813,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89408,40.85071]},"properties":{"cartodb_id":13814,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.770004,40.667236]},"properties":{"cartodb_id":13815,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81911,40.763695]},"properties":{"cartodb_id":13816,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81525,40.67626]},"properties":{"cartodb_id":13817,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84205,40.833122]},"properties":{"cartodb_id":13818,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.152626,40.535458]},"properties":{"cartodb_id":13819,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93699,40.828167]},"properties":{"cartodb_id":13820,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95658,40.731422]},"properties":{"cartodb_id":13821,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.936935,40.805042]},"properties":{"cartodb_id":13823,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74127,40.76851]},"properties":{"cartodb_id":13824,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.913864,40.843975]},"properties":{"cartodb_id":13825,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86722,40.691315]},"properties":{"cartodb_id":13826,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85797,40.832535]},"properties":{"cartodb_id":13827,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83349,40.75843]},"properties":{"cartodb_id":13828,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83122,40.86772]},"properties":{"cartodb_id":13829,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95556,40.69166]},"properties":{"cartodb_id":13831,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81465,40.586777]},"properties":{"cartodb_id":13832,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88531,40.842537]},"properties":{"cartodb_id":13833,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.888794,40.628567]},"properties":{"cartodb_id":13835,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94434,40.77972]},"properties":{"cartodb_id":13836,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.876816,40.709583]},"properties":{"cartodb_id":13837,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78722,40.738712]},"properties":{"cartodb_id":13838,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93841,40.684734]},"properties":{"cartodb_id":13839,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01427,40.63367]},"properties":{"cartodb_id":13840,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81041,40.72372]},"properties":{"cartodb_id":13842,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88756,40.76635]},"properties":{"cartodb_id":13844,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.70558,40.737923]},"properties":{"cartodb_id":13845,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98995,40.739243]},"properties":{"cartodb_id":13847,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94997,40.669815]},"properties":{"cartodb_id":13848,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97739,40.746758]},"properties":{"cartodb_id":13849,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91474,40.6481]},"properties":{"cartodb_id":13850,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.901634,40.743706]},"properties":{"cartodb_id":13851,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8515,40.893402]},"properties":{"cartodb_id":13852,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96659,40.76155]},"properties":{"cartodb_id":13853,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.897156,40.833126]},"properties":{"cartodb_id":13854,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:17:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89357,40.861923]},"properties":{"cartodb_id":13855,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.990524,40.66416]},"properties":{"cartodb_id":13857,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.858246,40.760704]},"properties":{"cartodb_id":13858,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86827,40.73251]},"properties":{"cartodb_id":13859,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87666,40.880676]},"properties":{"cartodb_id":13860,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.898186,40.85908]},"properties":{"cartodb_id":13861,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77372,40.748535]},"properties":{"cartodb_id":13862,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98133,40.729084]},"properties":{"cartodb_id":13863,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97898,40.633476]},"properties":{"cartodb_id":13864,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98429,40.76479]},"properties":{"cartodb_id":13866,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89311,40.661835]},"properties":{"cartodb_id":13867,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16527,40.534748]},"properties":{"cartodb_id":13868,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01756,40.63013]},"properties":{"cartodb_id":13869,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83015,40.759567]},"properties":{"cartodb_id":13871,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97347,40.763657]},"properties":{"cartodb_id":13872,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.951965,40.715176]},"properties":{"cartodb_id":13873,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.867325,40.898273]},"properties":{"cartodb_id":13874,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92693,40.730137]},"properties":{"cartodb_id":13875,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.895584,40.856243]},"properties":{"cartodb_id":13877,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89398,40.676018]},"properties":{"cartodb_id":13878,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83347,40.57863]},"properties":{"cartodb_id":13880,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.80952,40.7613]},"properties":{"cartodb_id":13881,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01103,40.725937]},"properties":{"cartodb_id":13882,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99408,40.6435]},"properties":{"cartodb_id":13883,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84128,40.88219]},"properties":{"cartodb_id":13884,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87281,40.67264]},"properties":{"cartodb_id":13885,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.174866,40.557335]},"properties":{"cartodb_id":13886,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9099,40.757946]},"properties":{"cartodb_id":13887,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.114876,40.602135]},"properties":{"cartodb_id":13888,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.011765,40.636826]},"properties":{"cartodb_id":13889,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87329,40.83801]},"properties":{"cartodb_id":13890,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02203,40.630985]},"properties":{"cartodb_id":13891,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90484,40.888588]},"properties":{"cartodb_id":13892,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93937,40.615795]},"properties":{"cartodb_id":13893,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.896935,40.86625]},"properties":{"cartodb_id":13894,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95975,40.611523]},"properties":{"cartodb_id":13895,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89083,40.820305]},"properties":{"cartodb_id":13898,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98748,40.760403]},"properties":{"cartodb_id":13900,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.929695,40.67744]},"properties":{"cartodb_id":13901,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87767,40.73675]},"properties":{"cartodb_id":13902,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99443,40.716965]},"properties":{"cartodb_id":13903,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84808,40.721363]},"properties":{"cartodb_id":13904,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T15:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.962906,40.591602]},"properties":{"cartodb_id":13905,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89962,40.740875]},"properties":{"cartodb_id":13906,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96269,40.701317]},"properties":{"cartodb_id":13907,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.930214,40.69755]},"properties":{"cartodb_id":13908,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95952,40.71617]},"properties":{"cartodb_id":13909,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.950714,40.73198]},"properties":{"cartodb_id":13911,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.089714,40.57754]},"properties":{"cartodb_id":13912,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.939224,40.848682]},"properties":{"cartodb_id":13913,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.877525,40.753994]},"properties":{"cartodb_id":13914,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98453,40.696033]},"properties":{"cartodb_id":13915,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.948875,40.75085]},"properties":{"cartodb_id":13916,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.16314,40.60219]},"properties":{"cartodb_id":13917,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02686,40.62646]},"properties":{"cartodb_id":13919,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93949,40.807346]},"properties":{"cartodb_id":13920,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84022,40.700935]},"properties":{"cartodb_id":13922,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98494,40.736378]},"properties":{"cartodb_id":13923,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93095,40.823635]},"properties":{"cartodb_id":13924,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83627,40.580082]},"properties":{"cartodb_id":13925,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91478,40.70519]},"properties":{"cartodb_id":13927,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94473,40.783245]},"properties":{"cartodb_id":13928,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92844,40.61497]},"properties":{"cartodb_id":13929,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.945724,40.692368]},"properties":{"cartodb_id":13931,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97861,40.762394]},"properties":{"cartodb_id":13932,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97445,40.679943]},"properties":{"cartodb_id":13933,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.754,40.59514]},"properties":{"cartodb_id":13935,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83186,40.759842]},"properties":{"cartodb_id":13936,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84892,40.731613]},"properties":{"cartodb_id":13937,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87081,40.680965]},"properties":{"cartodb_id":13938,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8693,40.724434]},"properties":{"cartodb_id":13939,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90348,40.844604]},"properties":{"cartodb_id":13940,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99309,40.7537]},"properties":{"cartodb_id":13941,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T14:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98748,40.760403]},"properties":{"cartodb_id":13944,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91091,40.670372]},"properties":{"cartodb_id":13945,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.888115,40.903065]},"properties":{"cartodb_id":13947,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90358,40.668125]},"properties":{"cartodb_id":13948,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89006,40.675354]},"properties":{"cartodb_id":13949,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99782,40.62746]},"properties":{"cartodb_id":13950,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90825,40.65613]},"properties":{"cartodb_id":13951,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98897,40.748188]},"properties":{"cartodb_id":13952,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92927,40.836094]},"properties":{"cartodb_id":13953,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74928,40.679012]},"properties":{"cartodb_id":13955,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.876884,40.83997]},"properties":{"cartodb_id":13957,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99996,40.718018]},"properties":{"cartodb_id":13958,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.984055,40.76142]},"properties":{"cartodb_id":13959,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97086,40.793377]},"properties":{"cartodb_id":13961,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88645,40.90026]},"properties":{"cartodb_id":13962,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90712,40.8617]},"properties":{"cartodb_id":13963,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:04:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86857,40.83569]},"properties":{"cartodb_id":13964,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86743,40.688313]},"properties":{"cartodb_id":13965,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.03832,40.631794]},"properties":{"cartodb_id":13966,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91759,40.654312]},"properties":{"cartodb_id":13967,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T13:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83919,40.824696]},"properties":{"cartodb_id":13968,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97535,40.741272]},"properties":{"cartodb_id":13969,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01027,40.633163]},"properties":{"cartodb_id":13971,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.909805,40.826042]},"properties":{"cartodb_id":13972,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85992,40.890945]},"properties":{"cartodb_id":13973,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96743,40.581203]},"properties":{"cartodb_id":13974,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98986,40.73367]},"properties":{"cartodb_id":13975,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86971,40.65136]},"properties":{"cartodb_id":13976,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02723,40.620323]},"properties":{"cartodb_id":13977,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90079,40.856045]},"properties":{"cartodb_id":13978,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93117,40.804066]},"properties":{"cartodb_id":13979,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.02455,40.624847]},"properties":{"cartodb_id":13981,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91309,40.84506]},"properties":{"cartodb_id":13982,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85971,40.826275]},"properties":{"cartodb_id":13983,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.905205,40.879112]},"properties":{"cartodb_id":13984,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97952,40.761147]},"properties":{"cartodb_id":13986,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93457,40.708904]},"properties":{"cartodb_id":13987,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84902,40.823257]},"properties":{"cartodb_id":13988,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.974686,40.759113]},"properties":{"cartodb_id":13989,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.976746,40.747627]},"properties":{"cartodb_id":13990,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92913,40.630447]},"properties":{"cartodb_id":13991,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.894875,40.808903]},"properties":{"cartodb_id":13992,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98155,40.72876]},"properties":{"cartodb_id":13993,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95452,40.599037]},"properties":{"cartodb_id":13994,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93074,40.853756]},"properties":{"cartodb_id":13995,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81876,40.787678]},"properties":{"cartodb_id":13997,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90849,40.865345]},"properties":{"cartodb_id":13998,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T12:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98118,40.676678]},"properties":{"cartodb_id":14000,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78664,40.707638]},"properties":{"cartodb_id":14001,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.952736,40.632145]},"properties":{"cartodb_id":14002,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.820885,40.67054]},"properties":{"cartodb_id":14003,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76736,40.65616]},"properties":{"cartodb_id":14004,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94827,40.638603]},"properties":{"cartodb_id":14005,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.989296,40.753735]},"properties":{"cartodb_id":14006,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97275,40.79335]},"properties":{"cartodb_id":14007,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88636,40.63082]},"properties":{"cartodb_id":14008,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88903,40.76663]},"properties":{"cartodb_id":14009,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.871635,40.753002]},"properties":{"cartodb_id":14010,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91052,40.824623]},"properties":{"cartodb_id":14012,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95719,40.618324]},"properties":{"cartodb_id":14014,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98358,40.688786]},"properties":{"cartodb_id":14015,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:14:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98442,40.741035]},"properties":{"cartodb_id":14016,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99214,40.743835]},"properties":{"cartodb_id":14017,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.948044,40.68951]},"properties":{"cartodb_id":14018,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.972855,40.761616]},"properties":{"cartodb_id":14019,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.944725,40.579258]},"properties":{"cartodb_id":14020,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91901,40.758972]},"properties":{"cartodb_id":14021,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92656,40.761913]},"properties":{"cartodb_id":14022,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96488,40.751675]},"properties":{"cartodb_id":14023,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T11:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82429,40.71263]},"properties":{"cartodb_id":14026,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74546,40.716]},"properties":{"cartodb_id":14027,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9161,40.614]},"properties":{"cartodb_id":14028,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96428,40.650604]},"properties":{"cartodb_id":14029,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78889,40.751846]},"properties":{"cartodb_id":14030,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.819786,40.752934]},"properties":{"cartodb_id":14031,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.954315,40.69479]},"properties":{"cartodb_id":14032,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94938,40.776875]},"properties":{"cartodb_id":14033,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94945,40.824318]},"properties":{"cartodb_id":14035,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:29:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99601,40.763996]},"properties":{"cartodb_id":14036,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94027,40.69415]},"properties":{"cartodb_id":14037,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:22:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95072,40.62147]},"properties":{"cartodb_id":14038,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:18:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.822975,40.764706]},"properties":{"cartodb_id":14039,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96544,40.771782]},"properties":{"cartodb_id":14040,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.19095,40.55231]},"properties":{"cartodb_id":14041,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94339,40.700554]},"properties":{"cartodb_id":14042,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81942,40.750885]},"properties":{"cartodb_id":14043,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.769455,40.763844]},"properties":{"cartodb_id":14044,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96205,40.69389]},"properties":{"cartodb_id":14045,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T10:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75482,40.66534]},"properties":{"cartodb_id":14047,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95696,40.66118]},"properties":{"cartodb_id":14048,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95306,40.74163]},"properties":{"cartodb_id":14050,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.953026,40.67268]},"properties":{"cartodb_id":14051,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.167625,40.588924]},"properties":{"cartodb_id":14052,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.742516,40.695877]},"properties":{"cartodb_id":14053,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98333,40.69365]},"properties":{"cartodb_id":14054,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.15846,40.62631]},"properties":{"cartodb_id":14055,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.963066,40.810944]},"properties":{"cartodb_id":14056,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95459,40.82077]},"properties":{"cartodb_id":14057,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98605,40.74061]},"properties":{"cartodb_id":14060,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.71508,40.745388]},"properties":{"cartodb_id":14061,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94428,40.775604]},"properties":{"cartodb_id":14062,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84008,40.68239]},"properties":{"cartodb_id":14063,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94313,40.80846]},"properties":{"cartodb_id":14064,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.880226,40.879818]},"properties":{"cartodb_id":14065,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82968,40.840607]},"properties":{"cartodb_id":14066,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.927536,40.677338]},"properties":{"cartodb_id":14067,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84625,40.86571]},"properties":{"cartodb_id":14068,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98272,40.688457]},"properties":{"cartodb_id":14069,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.971664,40.672977]},"properties":{"cartodb_id":14070,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.959785,40.5963]},"properties":{"cartodb_id":14071,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75943,40.75258]},"properties":{"cartodb_id":14072,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94766,40.650898]},"properties":{"cartodb_id":14073,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.19134,40.59691]},"properties":{"cartodb_id":14074,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00479,40.723625]},"properties":{"cartodb_id":14075,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.17763,40.5638]},"properties":{"cartodb_id":14077,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98962,40.687992]},"properties":{"cartodb_id":14079,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95448,40.789074]},"properties":{"cartodb_id":14080,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:06:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0167,40.63552]},"properties":{"cartodb_id":14081,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85146,40.831135]},"properties":{"cartodb_id":14082,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89809,40.754234]},"properties":{"cartodb_id":14083,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8984,40.715954]},"properties":{"cartodb_id":14084,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74572,40.75158]},"properties":{"cartodb_id":14085,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76455,40.67151]},"properties":{"cartodb_id":14086,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85313,40.903053]},"properties":{"cartodb_id":14087,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99774,40.61165]},"properties":{"cartodb_id":14088,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01678,40.638897]},"properties":{"cartodb_id":14089,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91097,40.843136]},"properties":{"cartodb_id":14090,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99622,40.709095]},"properties":{"cartodb_id":14091,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T09:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.947235,40.79094]},"properties":{"cartodb_id":14093,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96622,40.65319]},"properties":{"cartodb_id":14095,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:52:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87131,40.762096]},"properties":{"cartodb_id":14097,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74467,40.66552]},"properties":{"cartodb_id":14098,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.870766,40.764214]},"properties":{"cartodb_id":14100,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8036,40.672314]},"properties":{"cartodb_id":14101,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99172,40.664776]},"properties":{"cartodb_id":14102,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89063,40.691433]},"properties":{"cartodb_id":14103,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.957535,40.696674]},"properties":{"cartodb_id":14104,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99713,40.62332]},"properties":{"cartodb_id":14105,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.803986,40.7015]},"properties":{"cartodb_id":14107,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.977196,40.74701]},"properties":{"cartodb_id":14108,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88593,40.880352]},"properties":{"cartodb_id":14109,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88023,40.74593]},"properties":{"cartodb_id":14111,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93314,40.684467]},"properties":{"cartodb_id":14112,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.07097,40.597343]},"properties":{"cartodb_id":14113,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81709,40.88058]},"properties":{"cartodb_id":14115,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89739,40.723778]},"properties":{"cartodb_id":14116,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.877106,40.703995]},"properties":{"cartodb_id":14118,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74935,40.715145]},"properties":{"cartodb_id":14119,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88754,40.736763]},"properties":{"cartodb_id":14120,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.17328,40.560093]},"properties":{"cartodb_id":14121,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86016,40.704742]},"properties":{"cartodb_id":14122,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01084,40.716923]},"properties":{"cartodb_id":14123,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78873,40.70003]},"properties":{"cartodb_id":14124,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9627,40.663483]},"properties":{"cartodb_id":14125,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:24:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94931,40.812725]},"properties":{"cartodb_id":14126,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98262,40.67805]},"properties":{"cartodb_id":14127,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85169,40.75203]},"properties":{"cartodb_id":14128,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9583,40.815685]},"properties":{"cartodb_id":14130,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.883835,40.87678]},"properties":{"cartodb_id":14131,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:13:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92402,40.798256]},"properties":{"cartodb_id":14132,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93713,40.590706]},"properties":{"cartodb_id":14133,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.982544,40.692055]},"properties":{"cartodb_id":14135,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93003,40.80119]},"properties":{"cartodb_id":14136,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.072464,40.61408]},"properties":{"cartodb_id":14139,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:01:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13582,40.62506]},"properties":{"cartodb_id":14140,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.934494,40.653564]},"properties":{"cartodb_id":14141,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87463,40.67239]},"properties":{"cartodb_id":14144,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981445,40.61384]},"properties":{"cartodb_id":14145,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T08:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01843,40.640842]},"properties":{"cartodb_id":14147,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.892166,40.833645]},"properties":{"cartodb_id":14148,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:51:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91749,40.878067]},"properties":{"cartodb_id":14149,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91799,40.777977]},"properties":{"cartodb_id":14150,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.82431,40.824932]},"properties":{"cartodb_id":14151,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97351,40.752064]},"properties":{"cartodb_id":14152,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94372,40.749676]},"properties":{"cartodb_id":14153,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.906586,40.72108]},"properties":{"cartodb_id":14154,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86746,40.861946]},"properties":{"cartodb_id":14155,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87661,40.6427]},"properties":{"cartodb_id":14156,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83898,40.722313]},"properties":{"cartodb_id":14157,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:39:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93592,40.79531]},"properties":{"cartodb_id":14159,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95282,40.677845]},"properties":{"cartodb_id":14160,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.834656,40.667114]},"properties":{"cartodb_id":14161,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88774,40.877033]},"properties":{"cartodb_id":14162,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981445,40.61384]},"properties":{"cartodb_id":14163,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.897484,40.67816]},"properties":{"cartodb_id":14164,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75632,40.726448]},"properties":{"cartodb_id":14166,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86712,40.76051]},"properties":{"cartodb_id":14167,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83678,40.87175]},"properties":{"cartodb_id":14168,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94575,40.72738]},"properties":{"cartodb_id":14169,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94682,40.679485]},"properties":{"cartodb_id":14170,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00921,40.60211]},"properties":{"cartodb_id":14171,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76318,40.726135]},"properties":{"cartodb_id":14172,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T07:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78752,40.703712]},"properties":{"cartodb_id":14173,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97453,40.788357]},"properties":{"cartodb_id":14174,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:41:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.936806,40.73804]},"properties":{"cartodb_id":14175,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78201,40.765354]},"properties":{"cartodb_id":14176,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92726,40.6889]},"properties":{"cartodb_id":14177,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:26:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93223,40.804676]},"properties":{"cartodb_id":14178,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93117,40.804066]},"properties":{"cartodb_id":14180,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01146,40.70569]},"properties":{"cartodb_id":14181,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92693,40.730137]},"properties":{"cartodb_id":14182,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00708,40.65477]},"properties":{"cartodb_id":14183,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T06:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.898346,40.747562]},"properties":{"cartodb_id":14184,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T05:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14463,40.628437]},"properties":{"cartodb_id":14186,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.840294,40.785374]},"properties":{"cartodb_id":14188,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T05:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99259,40.70257]},"properties":{"cartodb_id":14190,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T05:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81738,40.686005]},"properties":{"cartodb_id":14191,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T04:49:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97133,40.757942]},"properties":{"cartodb_id":14192,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T04:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87894,40.827503]},"properties":{"cartodb_id":14193,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T04:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83816,40.876953]},"properties":{"cartodb_id":14194,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T03:51:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93501,40.682762]},"properties":{"cartodb_id":14195,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T03:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.789536,40.666008]},"properties":{"cartodb_id":14196,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T03:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99992,40.726933]},"properties":{"cartodb_id":14197,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T02:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99465,40.669846]},"properties":{"cartodb_id":14198,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T02:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98091,40.737885]},"properties":{"cartodb_id":14199,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T02:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.07536,40.642033]},"properties":{"cartodb_id":14200,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T02:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.864586,40.73093]},"properties":{"cartodb_id":14201,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T01:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9583,40.815685]},"properties":{"cartodb_id":14202,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T01:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981155,40.68023]},"properties":{"cartodb_id":14204,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T01:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98158,40.74967]},"properties":{"cartodb_id":14205,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84495,40.68231]},"properties":{"cartodb_id":14206,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8413,40.71873]},"properties":{"cartodb_id":14207,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86288,40.856014]},"properties":{"cartodb_id":14208,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99854,40.713444]},"properties":{"cartodb_id":14209,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92226,40.73963]},"properties":{"cartodb_id":14210,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.988075,40.756496]},"properties":{"cartodb_id":14211,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99011,40.754074]},"properties":{"cartodb_id":14212,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94761,40.82523]},"properties":{"cartodb_id":14213,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-02T00:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94635,40.598404]},"properties":{"cartodb_id":14214,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:56:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9207,40.82721]},"properties":{"cartodb_id":14216,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93964,40.794468]},"properties":{"cartodb_id":14218,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00698,40.729492]},"properties":{"cartodb_id":14219,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91736,40.70499]},"properties":{"cartodb_id":14220,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98999,40.69716]},"properties":{"cartodb_id":14221,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.847275,40.887302]},"properties":{"cartodb_id":14222,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:07:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85819,40.785553]},"properties":{"cartodb_id":14223,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T23:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8205,40.668552]},"properties":{"cartodb_id":14225,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.880486,40.879883]},"properties":{"cartodb_id":14226,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.983376,40.766045]},"properties":{"cartodb_id":14228,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.762764,40.722572]},"properties":{"cartodb_id":14229,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.838905,40.761143]},"properties":{"cartodb_id":14230,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73535,40.724304]},"properties":{"cartodb_id":14231,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95449,40.778137]},"properties":{"cartodb_id":14232,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:08:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91782,40.696205]},"properties":{"cartodb_id":14233,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.767944,40.660233]},"properties":{"cartodb_id":14234,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T22:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.806305,40.69345]},"properties":{"cartodb_id":14238,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96986,40.789673]},"properties":{"cartodb_id":14239,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.848854,40.68816]},"properties":{"cartodb_id":14240,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11377,40.566494]},"properties":{"cartodb_id":14242,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08808,40.631077]},"properties":{"cartodb_id":14243,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:42:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90756,40.84782]},"properties":{"cartodb_id":14244,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88366,40.856613]},"properties":{"cartodb_id":14245,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.966835,40.749607]},"properties":{"cartodb_id":14246,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96383,40.771103]},"properties":{"cartodb_id":14247,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:32:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.815834,40.750477]},"properties":{"cartodb_id":14248,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89038,40.676594]},"properties":{"cartodb_id":14249,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95319,40.771656]},"properties":{"cartodb_id":14250,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.891525,40.72816]},"properties":{"cartodb_id":14251,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T21:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89311,40.661835]},"properties":{"cartodb_id":14252,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99926,40.759514]},"properties":{"cartodb_id":14253,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98706,40.744587]},"properties":{"cartodb_id":14254,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.76171,40.74738]},"properties":{"cartodb_id":14255,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.722916,40.724792]},"properties":{"cartodb_id":14258,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9907,40.742878]},"properties":{"cartodb_id":14259,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86009,40.88851]},"properties":{"cartodb_id":14260,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97654,40.759438]},"properties":{"cartodb_id":14261,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:27:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97213,40.745686]},"properties":{"cartodb_id":14262,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.911804,40.762386]},"properties":{"cartodb_id":14263,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.940865,40.820683]},"properties":{"cartodb_id":14264,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0837,40.624027]},"properties":{"cartodb_id":14266,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77022,40.744892]},"properties":{"cartodb_id":14267,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88033,40.75904]},"properties":{"cartodb_id":14268,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.817245,40.70453]},"properties":{"cartodb_id":14269,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8978,40.843956]},"properties":{"cartodb_id":14270,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96104,40.718967]},"properties":{"cartodb_id":14271,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.937706,40.745235]},"properties":{"cartodb_id":14272,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T20:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9172,40.85592]},"properties":{"cartodb_id":14274,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74483,40.69317]},"properties":{"cartodb_id":14275,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89686,40.675735]},"properties":{"cartodb_id":14277,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92028,40.772953]},"properties":{"cartodb_id":14279,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.970634,40.592663]},"properties":{"cartodb_id":14280,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87767,40.73675]},"properties":{"cartodb_id":14281,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.972115,40.631367]},"properties":{"cartodb_id":14282,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93998,40.625546]},"properties":{"cartodb_id":14283,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98021,40.77548]},"properties":{"cartodb_id":14284,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.949036,40.768642]},"properties":{"cartodb_id":14285,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.961075,40.760857]},"properties":{"cartodb_id":14286,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00053,40.596184]},"properties":{"cartodb_id":14287,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91893,40.63525]},"properties":{"cartodb_id":14288,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:12:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.864494,40.757706]},"properties":{"cartodb_id":14290,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97875,40.683758]},"properties":{"cartodb_id":14291,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98117,40.784355]},"properties":{"cartodb_id":14292,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91107,40.670956]},"properties":{"cartodb_id":14293,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T19:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.986404,40.74592]},"properties":{"cartodb_id":14295,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:57:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93162,40.663555]},"properties":{"cartodb_id":14296,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.75457,40.72707]},"properties":{"cartodb_id":14297,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.104965,40.5771]},"properties":{"cartodb_id":14298,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83192,40.75895]},"properties":{"cartodb_id":14299,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98831,40.66677]},"properties":{"cartodb_id":14300,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:48:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.917465,40.81676]},"properties":{"cartodb_id":14302,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84406,40.664997]},"properties":{"cartodb_id":14303,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93308,40.677624]},"properties":{"cartodb_id":14304,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.868416,40.76886]},"properties":{"cartodb_id":14305,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.902725,40.85185]},"properties":{"cartodb_id":14306,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:44:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13326,40.61021]},"properties":{"cartodb_id":14307,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96986,40.789673]},"properties":{"cartodb_id":14308,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95645,40.82402]},"properties":{"cartodb_id":14309,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89889,40.884575]},"properties":{"cartodb_id":14310,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.908676,40.879356]},"properties":{"cartodb_id":14312,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90624,40.719704]},"properties":{"cartodb_id":14313,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85634,40.670555]},"properties":{"cartodb_id":14314,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95192,40.70636]},"properties":{"cartodb_id":14316,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99384,40.766987]},"properties":{"cartodb_id":14317,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:23:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97596,40.77622]},"properties":{"cartodb_id":14319,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93603,40.81207]},"properties":{"cartodb_id":14320,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.93317,40.795055]},"properties":{"cartodb_id":14321,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:19:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.062874,40.602806]},"properties":{"cartodb_id":14323,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.883934,40.632526]},"properties":{"cartodb_id":14325,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92099,40.700317]},"properties":{"cartodb_id":14328,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95436,40.742043]},"properties":{"cartodb_id":14329,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T18:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96069,40.81751]},"properties":{"cartodb_id":14330,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.73534,40.67244]},"properties":{"cartodb_id":14331,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87261,40.867043]},"properties":{"cartodb_id":14332,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:45:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9986,40.7171]},"properties":{"cartodb_id":14333,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86861,40.657738]},"properties":{"cartodb_id":14334,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:36:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00644,40.709557]},"properties":{"cartodb_id":14335,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.900795,40.859974]},"properties":{"cartodb_id":14336,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:33:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.792786,40.71081]},"properties":{"cartodb_id":14337,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9435,40.77904]},"properties":{"cartodb_id":14338,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91586,40.770256]},"properties":{"cartodb_id":14339,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.940956,40.723385]},"properties":{"cartodb_id":14340,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.833115,40.754658]},"properties":{"cartodb_id":14342,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:25:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.883156,40.839317]},"properties":{"cartodb_id":14343,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:21:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96342,40.757637]},"properties":{"cartodb_id":14346,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89162,40.86764]},"properties":{"cartodb_id":14347,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91703,40.67069]},"properties":{"cartodb_id":14348,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.022446,40.633053]},"properties":{"cartodb_id":14349,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90653,40.826145]},"properties":{"cartodb_id":14350,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.92458,40.806797]},"properties":{"cartodb_id":14351,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:09:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.961075,40.760857]},"properties":{"cartodb_id":14352,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.81173,40.693787]},"properties":{"cartodb_id":14353,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.970856,40.791748]},"properties":{"cartodb_id":14354,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97716,40.738796]},"properties":{"cartodb_id":14355,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86336,40.73425]},"properties":{"cartodb_id":14356,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97209,40.650597]},"properties":{"cartodb_id":14357,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00975,40.704773]},"properties":{"cartodb_id":14359,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88478,40.731968]},"properties":{"cartodb_id":14363,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T17:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.99264,40.758427]},"properties":{"cartodb_id":14365,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91955,40.63147]},"properties":{"cartodb_id":14366,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.13652,40.566166]},"properties":{"cartodb_id":14367,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.87102,40.88001]},"properties":{"cartodb_id":14368,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:46:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98453,40.696033]},"properties":{"cartodb_id":14371,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96383,40.771103]},"properties":{"cartodb_id":14372,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:38:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9769,40.739162]},"properties":{"cartodb_id":14373,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94085,40.605286]},"properties":{"cartodb_id":14374,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01577,40.65021]},"properties":{"cartodb_id":14375,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94547,40.664227]},"properties":{"cartodb_id":14376,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.79132,40.752766]},"properties":{"cartodb_id":14377,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.926384,40.844917]},"properties":{"cartodb_id":14378,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89083,40.820305]},"properties":{"cartodb_id":14379,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.14439,40.592854]},"properties":{"cartodb_id":14380,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.981606,40.753788]},"properties":{"cartodb_id":14381,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.86138,40.756226]},"properties":{"cartodb_id":14382,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.78574,40.719738]},"properties":{"cartodb_id":14384,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.847916,40.886295]},"properties":{"cartodb_id":14385,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:20:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.878296,40.76351]},"properties":{"cartodb_id":14387,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88933,40.821415]},"properties":{"cartodb_id":14388,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.88224,40.737694]},"properties":{"cartodb_id":14389,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:15:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.94455,40.629868]},"properties":{"cartodb_id":14391,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:11:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.74221,40.73626]},"properties":{"cartodb_id":14392,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00339,40.6586]},"properties":{"cartodb_id":14393,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01449,40.60891]},"properties":{"cartodb_id":14394,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:10:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.96203,40.594254]},"properties":{"cartodb_id":14395,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:05:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.993,40.736877]},"properties":{"cartodb_id":14396,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:04:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.00562,40.726612]},"properties":{"cartodb_id":14397,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:03:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85059,40.849323]},"properties":{"cartodb_id":14398,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:02:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85104,40.903763]},"properties":{"cartodb_id":14399,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.949585,40.697304]},"properties":{"cartodb_id":14400,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.9655,40.71048]},"properties":{"cartodb_id":14401,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.85427,40.832233]},"properties":{"cartodb_id":14402,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.092125,40.586494]},"properties":{"cartodb_id":14403,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T16:00:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.83455,40.681175]},"properties":{"cartodb_id":14404,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:55:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.95864,40.736214]},"properties":{"cartodb_id":14405,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:50:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.91399,40.84543]},"properties":{"cartodb_id":14406,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:47:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.90079,40.856045]},"properties":{"cartodb_id":14408,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:40:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.11755,40.56274]},"properties":{"cartodb_id":14409,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:35:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.01047,40.711533]},"properties":{"cartodb_id":14410,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.84526,40.88794]},"properties":{"cartodb_id":14411,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.890495,40.7524]},"properties":{"cartodb_id":14412,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.89139,40.8617]},"properties":{"cartodb_id":14413,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.98568,40.738216]},"properties":{"cartodb_id":14414,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.97257,40.601795]},"properties":{"cartodb_id":14415,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.19965,40.54898]},"properties":{"cartodb_id":14416,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.77857,40.679752]},"properties":{"cartodb_id":14417,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motorist_injured":0,"number_of_cyclist_killed":0,"number_of_cyclist_injured":0,"date_val":"2017-03-01T15:30:00Z","total_injuries":0,"total_fatalities":0,"crash_type":"no_injury_fatality"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.09159,40.626545]},"properties":{"cartodb_id":14418,"number_of_pedestrian_killed":0,"number_of_pedestrian_injured":0,"number_of_motorist_killed":0,"number_of_motori
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment